/* ===========================================
   GLOBAL
=========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f8f3ec;
    line-height: 1.6;
}

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

header {
    position: sticky;
    top: 0;

    background: white;

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    z-index: 1000;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:#4b2e1e;

    font-size:2rem;

    font-weight:bold;

}

.logo img{

    height:70px;

    width:auto;

    display:block;

}

.logo span{

    font-size:2rem;

    font-weight:bold;

}

nav {

    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

}

.nav-links {

    display: flex;

    gap: 25px;

    list-style: none;

}

.nav-links a {

    display: inline-block;

    text-decoration: none;

    background: #4b2e1e;

    color: white;

    font-weight: 600;

    padding: 10px 20px;

    border-radius: 8px;

    transition: 0.3s;

}

.nav-links a:hover {

    background: #6b4428;

}

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

#hero{

    height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    padding:20px;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("images/hero/hero.png");

    background-size:cover;

    background-position:center 45%;

    background-repeat:no-repeat;

}

.hero-content{

    max-width:900px;

    margin:auto;

    padding:20px;

}

.hero-content h1{

    font-size:4.5rem;

    margin-bottom:20px;

}

.hero-content p{

    font-size:1.4rem;

    margin-bottom:35px;

}

.hero-button{

    display:inline-block;

    background:#c58b45;

    color:white;

    text-decoration:none;

    padding:15px 35px;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;

}

.hero-button:visited{

    color:white;

}

.hero-button:hover{

    background:#a46d32;

    color:white;

}

.hero-button:active{

    color:white;

}

/* ===========================================
   SECTIONS
=========================================== */

section:not(#hero) {

    max-width:1200px;

    margin:auto;

    padding:100px 20px;

}

section h2 {

    text-align: center;

    margin-bottom: 40px;

    font-size: 2.6rem;

    color: #4b2e1e;

}

/* ===========================================
   ABOUT
=========================================== */

#about p{

    max-width:900px;

    margin:auto;

    font-size:1.15rem;

    line-height:2;

    text-align:center;

    color:#555;

}

/* ===========================================
   GALLERY
=========================================== */

.gallery-container {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    padding-bottom: 10px;

}

.gallery-container img {

    width: 350px;

    height: 250px;

    object-fit: cover;

    border-radius: 12px;

    flex-shrink: 0;

}

/* ===========================================
   MENU
=========================================== */

.menu-container{

    display:flex;

    gap:25px;

    overflow-x:auto;

    padding-bottom:20px;

}

.menu-container img{

    width:400px;

    border-radius:12px;

    flex-shrink:0;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

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

.contact-container{

    display:flex;

    gap:50px;

    align-items:flex-start;

    flex-wrap:wrap;

}

.left-column{

    flex:2;

    min-width:500px;

}

.contact-details{

    flex:1;

    min-width:260px;

}

.contact-details p{

    margin-bottom:30px;

}

.contact-details a{

    color:#4b2e1e;

    text-decoration:none;

}

.map iframe{

    width:100%;

    height:400px;

    border:none;

    border-radius:12px;

}

.bottom-info{

    display:flex;

    gap:40px;

    margin-top:30px;

    flex-wrap:wrap;

}

.address,

.hours{

    flex:1;

    min-width:220px;

}


/* ===========================================
   FOOTER
=========================================== */

footer{

    background:#2b1b12;

    color:white;

    padding:40px 20px;

}

.footer-content{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-logo{

    height:55px;

}

/* ===========================================
   MIDNIGHT DELIVERY
=========================================== */

#delivery{

    padding:100px 20px;

}

.delivery-container{

    max-width:1200px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:60px;

    flex-wrap:wrap;

}

.delivery-image{

    flex:1;

}

.delivery-image img{

    width:100%;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.delivery-text{

    flex:1;

}

.delivery-text h2{

    text-align:left;

}

.delivery-heading{

    font-size:1.5rem;

    font-weight:bold;

    margin:25px 0;

}

.delivery-text p{

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:20px;

}

.delivery-button{

    display:inline-block;

    background:#4b2e1e;

    color:white;

    padding:14px 28px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.delivery-button:hover{

    background:#6b4428;

}

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

@media (max-width:768px){
    
nav{

    flex-direction:column;

    gap:20px;

}

.nav-links{

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.nav-links a{

    padding:8px 14px;

    font-size:0.95rem;

}

.logo{

    flex-direction:column;

    text-align:center;

    gap:10px;

}

.hero-content h1{

    font-size:2.6rem;

}

.hero-content p{

    font-size:1.1rem;

}

#hero{

    height:75vh;

    background-position:center;

}

}