/*
Theme Name: BestBody
Author: Anna
Version: 1.0
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#fff;
    color:#111;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
}

.container{
    width:min(1280px, calc(100% - 64px));
    margin:auto;
}

.hero{
    padding:120px 0;
}

.hero .container{
    display:grid;
    grid-template-columns:1fr 520px;
    align-items:center;
    gap:80px;
}

.hero__eyebrow{
    display:inline-block;
    margin-bottom:24px;
    letter-spacing:3px;
    font-size:13px;
    color:#777;
}

.hero h1{
    font-size:72px;
    line-height:1;
    margin-bottom:32px;
}

.hero p{
    font-size:20px;
    color:#666;
    line-height:1.7;
    max-width:560px;
}

.hero__buttons{
    display:flex;
    gap:20px;
    margin-top:48px;
}

.btn{
    padding:18px 34px;
    border-radius:999px;
    transition:.25s;
}

.btn--primary{
    background:#FFD400;
    color:#111;
}

.btn--primary:hover{
    transform:translateY(-2px);
}

.btn--secondary{
    border:1px solid #ddd;
    color:#111;
}

.hero__image img{
    border-radius:32px;
}

.header {
    background: #0f0f0f;
    padding: 26px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 190px;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .25s;
}

.menu a:hover {
    color: #ffd400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 600;
    transition: .25s;
}

.btn--primary {
    background: #ffd400;
    color: #111;
}

.btn--primary:hover {
    background: #fff;
}

.footer {
    padding: 80px 0;
    border-top: 1px solid #eee;
    text-align: center;
    margin-top: 120px;
}