/* =========================
   RESET
========================= */

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

body{
    background:#F7F2EC;
    color:#222;
    font-family:Georgia, serif;
}

/* =========================
   HEADER
========================= */

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

    padding:30px 80px;
    background:#f9f8f6;
}

.logo{
    font-size:24px;
    font-weight:500;
    letter-spacing:2px;
    line-height:1.2;
}

nav{
    display:flex;
    align-items:center;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-size:16px;
}

.cta-btn{
    background:#222;
    color:white;
    text-decoration:none;

    padding:14px 24px;
    border-radius:4px;

    transition:0.3s;
}

.cta-btn:hover{
    background:#444;
}

/* =========================
   HERO
========================= */

.hero{
    height:100vh;

    background-image:url('../images/hero/hero-main.jpg');
    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding-left:10%;
}

.hero-content{
    background:rgba(255,255,255,0.55);

    padding:50px;
    max-width:550px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;

    background:#222;
    color:white;

    text-decoration:none;

    padding:14px 28px;
}

.hero-btn:hover{
    background:#444;
}

/* =========================
   COLLECTION
========================= */

.collection{
    max-width:1400px;
    margin:auto;

    padding:100px 60px;
}

.collection h1{
    text-align:center;
    font-size:48px;

    margin-bottom:60px;
}

.gallery{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.gallery img{
    width:100%;
    height:500px;

    object-fit:cover;

    border-radius:12px;

    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.02);
}

/* =========================
   STUDIO
========================= */

.studio-page{
    max-width:1400px;
    margin:auto;

    padding:100px 60px;
}

.studio-page h1{
    text-align:center;
    font-size:48px;

    margin-bottom:20px;
}

.studio-page p{
    text-align:center;
    color:#666;

    margin-bottom:60px;
}

.studio-gallery{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.studio-gallery img{
    width:100%;
    height:450px;

    object-fit:cover;

    border-radius:12px;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    max-width:1200px;

    margin:auto;
    padding:100px 60px;

    text-align:center;
}

.contact-section h1{
    font-size:48px;
    margin-bottom:20px;
}

.contact-section .intro{
    color:#666;
    margin-bottom:60px;
}

.contact-info{
    margin-bottom:60px;

    line-height:2;
}

.contact-info h2{
    margin-bottom:15px;
}

.address{
    margin-bottom:30px;
}

.business-hours{
    margin-top:25px;
}

.business-hours h3{
    margin-bottom:10px;
}

.map-container{
    margin-top:50px;
}

.map-container iframe{
    width:100%;
    height:500px;

    border:none;
    border-radius:12px;
}

.contact-button{
    margin-top:60px;
}

.contact-button h3{
    font-size:30px;
    margin-bottom:20px;
}

.whatsapp-btn{
    display:inline-block;

    background:#222;
    color:white;

    text-decoration:none;

    padding:16px 36px;
    border-radius:6px;

    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#444;
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px){

    header{
        padding:25px 40px;
    }

    nav{
        gap:25px;
    }

    .hero{

        min-height:85vh;

        padding-left:5%;
        padding-right:5%;

        background-position:center center;
        background-size:cover;
    }

    .hero-content{

        max-width:500px;

        background:rgba(255,255,255,0.40);

        padding:40px;
    }

    .hero h1{
        font-size:3.2rem;
    }

    .hero p{
        font-size:1.1rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    header{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .logo{
        font-size:18px;
        text-align:center;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    nav a{
        font-size:14px;
    }

    .cta-btn{
        display:none;
    }

    .hero{

        min-height:100vh;

        padding:20px;

        align-items:center;
        justify-content:center;

        background-position:center center;
        background-size:cover;
    }

    .hero-content{

        width:100%;
        max-width:none;

        padding:25px;

        background:rgba(255,255,255,0.28);

    }

    .hero h1{
        font-size:2.5rem;
        line-height:1.05;
        margin-bottom:15px;
    }

    .hero p{
        font-size:1rem;
        margin-bottom:20px;
    }

    .hero-btn{
        padding:12px 24px;
    }

    .collection,
    .studio-page,
    .contact-section{
        padding:60px 20px;
    }

    .gallery img,
    .studio-gallery img{
        height:auto;
    }

    .map-container iframe{
        height:300px;
    }
}