/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
}


/* =========================================================
   NAVIGATION BAR
========================================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 80px;
    background:#3d2418;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo-container{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{
    width:120px;
    height:auto;
}

.logo-container h2{
    color:#d9a35f;
    font-size:40px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.nav-links a:hover{
    color:#d9a35f;
}


/* =========================================================
   HOME PAGE - HERO SECTION
========================================================= */

.hero{
    position:relative;
    width:100%;
    height:80vh;
    overflow:hidden;
}


/* =========================================================
   HERO VIDEO
========================================================= */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    z-index:1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content{
    position:absolute;
    top:45%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:100%;
    color:#fff;
    z-index:2;
    padding:0 20px;
}

.hero-content h1{
    font-size:58px;
    font-weight:bold;
    letter-spacing:2px;
    text-shadow:3px 3px 12px rgba(0,0,0,.8);
    margin-bottom:15px;
}

.hero-content p{
    font-size:28px;
    color:#f5e6d3;
    font-style:italic;
    text-shadow:2px 2px 10px rgba(0,0,0,.8);
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-section{
    background:#7b573d;
    color:white;
    padding:80px 0;
}

.about-container{
    width:80%;
    max-width:1000px;
    margin:auto;
}

.about-container h1{
    text-align:center;
    color:#d9a35f;
    font-size:55px;
    margin-bottom:40px;
}

.about-container h2{
    color:#d9a35f;
    margin:40px 0 15px;
    font-size:32px;
}

.about-container p{
    font-size:22px;
    line-height:1.9;
    text-align:justify;
    margin-bottom:25px;
}

.about-container ul{
    margin-left:30px;
}

.about-container li{
    font-size:22px;
    margin-bottom:15px;
}

.quote{
    margin-top:60px;
    padding:30px;
    background:#5f4331;
    border-left:5px solid #d9a35f;
    border-radius:10px;
}

.quote h3{
    color:#d9a35f;
    text-align:center;
    font-style:italic;
    font-size:30px;
}


/* =========================================================
   MENU PAGE
========================================================= */

.menu-section{
    background:#7b573d;
    text-align:center;
    padding:60px 20px;
}

.menu-section h1{
    color:#d9a35f;
    font-size:55px;
    margin-bottom:15px;
}

.menu-section p{
    color:white;
    font-size:24px;
    margin-bottom:40px;
}

.menu-img{
    width:90%;
    max-width:1400px;
    display:block;
    margin:auto;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.5);
    transition:.3s;
}

.menu-img:hover{
    transform:scale(1.02);
}


/* =========================================================
   PLACEHOLDER SECTIONS
========================================================= */

/* ================= OUR STORES ================= */

/* ================= OUR STORES ================= */

.stores-section{
    background:#7b573d;
    color:#fff;
    padding:90px 0;
}

.stores-container{
    width:80%;
    max-width:1000px;
    margin:auto;
}

.stores-container h2{
    text-align:center;
    color:#d9a35f;
    font-size:42px;
    margin-bottom:35px;
}

.store-img{
    width:100%;
    border-radius:15px;
    margin-bottom:40px;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.stores-container p{
    font-size:22px;
    line-height:2;
    text-align:justify;
    margin-bottom:30px;
}

.business-tagline{
    text-align:center;
    color:#d9a35f;
    font-size:38px;
    font-weight:bold;
    margin-top:70px;
    margin-bottom:25px;
}

.business-contact{
    text-align:center !important;
    font-size:24px;
}

.business-contact a{
    color:#d9a35f;
    font-weight:bold;
    text-decoration:none;
}

.business-contact a:hover{
    text-decoration:underline;
}

/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-section{
    background:#7b573d;
    padding:80px 20px;
    color:white;
}

.gallery-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.gallery-container h1{
    color:#d9a35f;
    font-size:55px;
    margin-bottom:25px;
}

.gallery-container p{
    max-width:900px;
    margin:0 auto 50px;
    font-size:22px;
    line-height:1.8;
    color:white;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.gallery-item{
    background:#5f4331;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.35);
    transition:0.3s;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.5);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.gallery-item h3{
    color:#d9a35f;
    font-size:24px;
    padding:20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .gallery-container h1{
        font-size:42px;
    }

    .gallery-container p{
        font-size:18px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:260px;
    }

    .gallery-item h3{
        font-size:22px;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-section{
    background:#7b573d;
    color:#fff;
    padding:80px 20px;
}

.contact-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.contact-container h1{
    color:#d9a35f;
    font-size:55px;
    margin-bottom:25px;
}

.contact-text{
    max-width:900px;
    margin:auto;
    font-size:24px;
    line-height:1.8;
    margin-bottom:60px;
}

.contact-grid{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.contact-box{
    background:#8a6244;
    padding:40px;
    width:380px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.3s;
}

.contact-box:hover{
    transform:translateY(-8px);
}

.contact-icon{
    font-size:60px;
    margin-bottom:20px;
}

.contact-box h2{
    color:#d9a35f;
    margin-bottom:20px;
    font-size:32px;
}

.contact-box p{
    font-size:24px;
    line-height:1.8;
}

/* =========================================================
   FEEDBACK PAGE
========================================================= */

.feedback-section{

background:#7b573d;
padding:80px 20px;
color:white;

}

.feedback-container{

max-width:900px;
margin:auto;

}

.feedback-container h1{

text-align:center;
font-size:55px;
color:#d9a35f;
margin-bottom:20px;

}

.feedback-text{

text-align:center;
font-size:22px;
line-height:1.8;
margin-bottom:50px;

}

#feedbackForm{

display:flex;
flex-direction:column;
gap:25px;

}

#feedbackForm input,
#feedbackForm textarea{

padding:18px;
font-size:20px;
border:none;
border-radius:10px;

}

#feedbackForm textarea{

resize:none;

}

#feedbackForm button{

background:#d9a35f;
color:#3d2418;
border:none;
padding:18px;
font-size:22px;
font-weight:bold;
border-radius:10px;
cursor:pointer;
transition:.3s;

}

#feedbackForm button:hover{

background:#f1bf78;

}

#status{

margin-top:25px;
text-align:center;
font-size:20px;
font-weight:bold;

}

/* =========================================================
   FOOTER
========================================================= */

footer{
    background:#3d2418;
    color:white;
    text-align:center;
    padding:25px;
    font-size:18px;
}


/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media(max-width:992px){

    .navbar{
        flex-direction:column;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
        margin-top:20px;
    }

    .logo-container h2{
        font-size:32px;
    }

    .hero{
        height:60vh;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:20px;
    }

    .about-container{
        width:90%;
    }

    .about-container h1{
        font-size:40px;
    }

    .about-container h2{
        font-size:28px;
    }

    .about-container p,
    .about-container li{
        font-size:18px;
    }

    .menu-section h1{
        font-size:40px;
    }

    .menu-section p{
        font-size:20px;
    }
}