/* ==========================================================
   Atlas Journeys
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --bg:#f7f4ef;
    --white:#ffffff;

    --text:#1d1d1d;
    --muted:#6e6e6e;

    --gold:#c89a56;

    --border:#ebe5dc;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:Inter,sans-serif;

    line-height:1.7;

}

/* ==========================
HEADER
========================== */

header{

    position:absolute;

    top:0;

    left:0;

    right:0;

    z-index:20;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:32px 70px;

}

.logo{

    color:white;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    letter-spacing:.08em;

}

nav{

    display:flex;

    gap:34px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:500;

}

.button{

    text-decoration:none;

    background:white;

    color:#111;

    padding:15px 28px;

    border-radius:999px;

    font-weight:600;

}

/* ==========================
HERO
========================== */

.hero{

    position:relative;

    height:92vh;

    min-height:760px;

    overflow:hidden;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.18),
            rgba(0,0,0,.55)
        );

}

.hero-content{

    position:absolute;

    left:70px;

    bottom:90px;

    color:white;

    max-width:700px;

    z-index:5;

}

.hero-content span{

    display:inline-block;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:20px;

    font-size:.82rem;

}

.hero-content h1{

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:5.5rem;

    line-height:.9;

    margin-bottom:24px;

}

.hero-content p{

    max-width:560px;

    font-size:1.1rem;

    margin-bottom:38px;

}

.hero-content a{

    display:inline-block;

    background:white;

    color:#111;

    text-decoration:none;

    padding:18px 36px;

    border-radius:999px;

    font-weight:600;

}

/* ==========================
INTRO
========================== */

.intro{

    max-width:1380px;

    margin:auto;

    padding:100px 70px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

}

.intro h2{

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:3.6rem;

    line-height:1;

    margin-bottom:28px;

}

.intro p{

    color:var(--muted);

    max-width:520px;

}

.numbers{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.numbers div{

    background:white;

    border-radius:24px;

    padding:40px;

    border:1px solid var(--border);

}

.numbers h3{

    font-size:3rem;

    color:var(--gold);

}

.numbers p{

    margin-top:10px;

}

/* ==========================
PACKAGES
========================== */

.packages{

    max-width:1380px;

    margin:auto;

    padding:0 70px 100px;

}

.packages h2{

    text-align:center;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:3.6rem;

    margin-bottom:55px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.cards article{

    background:white;

    border-radius:26px;

    overflow:hidden;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.cards article:hover{

    transform:translateY(-10px);

}

.cards img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.cards div{

    padding:32px;

}

.cards h3{

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:2rem;

    margin-bottom:10px;

}

.cards p{

    color:var(--muted);

    margin-bottom:22px;

}

.cards a{

    color:var(--gold);

    text-decoration:none;

    font-weight:600;

}

/* ==========================
TESTIMONIAL
========================== */

.testimonial{

    background:#1f1f1f;

    color:white;

    text-align:center;

    padding:110px 40px;

}

.testimonial h2{

    max-width:850px;

    margin:auto;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:3rem;

    line-height:1.2;

}

.testimonial p{

    max-width:650px;

    margin:30px auto;

    color:#cccccc;

}

.testimonial strong{

    color:var(--gold);

}

/* ==========================
FOOTER
========================== */

footer{

    background:white;

    text-align:center;

    padding:40px;

    color:#777;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:1000px){

header{

    padding:25px 30px;

}

nav{

    display:none;

}

.button{

    display:none;

}

.hero{

    min-height:650px;

}

.hero-content{

    left:30px;

    right:30px;

    bottom:60px;

}

.hero-content h1{

    font-size:3.6rem;

}

.intro{

    grid-template-columns:1fr;

    padding:70px 30px;

}

.numbers{

    grid-template-columns:1fr;

}

.packages{

    padding:0 30px 70px;

}

.cards{

    grid-template-columns:1fr;

}

}