/* ===========================
   GOOGLE FONTS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:#1b1b1b;
    background:#fff;
    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

.container{

    width:90%;
    max-width:1350px;
    margin:auto;

}


/* ===========================
        HEADER
=========================== */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    padding:18px 0;

    transition:.4s;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{

    height:65px;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:#fff;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:#D9B96E;

}

.header-btn a{

    background:#D9B96E;
    color:#fff;

    padding:13px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.header-btn a:hover{

    background:#fff;
    color:#1B2A49;

}


/* ===========================
          HERO
=========================== */

.hero{

    position:relative;
    width:100%;
    height:100vh;

    overflow:hidden;

}

.hero-image{

    position:absolute;
    width:100%;
    height:100%;

    object-fit:cover;

    animation:zoomHero 18s linear infinite alternate;

}

@keyframes zoomHero{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:linear-gradient(to right,
    rgba(10,20,40,.80),
    rgba(10,20,40,.40),
    rgba(10,20,40,.20));

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:700px;

    color:#fff;

    height:100%;

    display:flex;

    justify-content:center;

    flex-direction:column;

}

.tag{

    width:max-content;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.3);

    padding:10px 24px;

    border-radius:50px;

    margin-bottom:25px;

    letter-spacing:2px;

    font-size:14px;

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:72px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero h2{

    font-size:32px;

    font-weight:400;

    margin-bottom:20px;

}

.hero p{

    font-size:20px;

    margin-bottom:45px;

    color:#eee;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#D9B96E;

    color:#fff;

    padding:18px 42px;

    border-radius:45px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:#fff;

    color:#000;

}

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:18px 42px;

    border-radius:45px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#000;

}


/* ===========================
     HIGHLIGHTS
=========================== */

.highlights{

    padding:90px 0;

    background:#fff;

}

.highlights .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.highlight{

    text-align:center;

    padding:45px 20px;

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

    transition:.35s;

}

.highlight:hover{

    transform:translateY(-10px);

}

.highlight i{

    font-size:40px;

    color:#D9B96E;

    margin-bottom:25px;

}

.highlight h3{

    font-size:30px;

    margin-bottom:10px;

    color:#1B2A49;

}

.highlight p{

    color:#777;

}


/* ===========================
   STICKY HEADER
=========================== */

header.sticky{

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

header.sticky nav a{

    color:#222;

}

header.sticky .header-btn a{

    background:#1B2A49;

}