/* =========================
   MARECHIARO STYLE SHEET
========================= */

:root{
    --primary-blue:#0d4fa6;
    --secondary-blue:#3d7fe0;
    --light-blue:#eaf3ff;
    --cream:#f8f3e7;
    --white:#ffffff;
    --dark:#222222;
    --grey:#666666;
    --gold:#d4af37;
}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--cream);
    color:var(--dark);
    line-height:1.6;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:var(--white);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.logo img{
    height:110px;
    width:auto;
    display:block;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:var(--dark);
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--primary-blue);
}

.book-btn{
    background:var(--primary-blue);
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.book-btn:hover{
    transform:translateY(-2px);
}

/* =========================
   HERO SECTION
========================= */

.hero{
    height:90vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),
    url("../images/exterior7.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:white;
}

.hero-content{
    max-width:900px;
    padding:20px;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:6rem;
    margin-bottom:15px;
}

.hero-subtitle{
    font-size:1.3rem;
    margin-bottom:15px;
}

.hero-slogan{
    font-size:1.2rem;
    margin-bottom:35px;
    font-style:italic;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:15px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary{
    background:var(--primary-blue);
    color:white;
}

.btn-secondary{
    background:white;
    color:var(--primary-blue);
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}

/* =========================
   SECTIONS
========================= */

section{
    padding:90px 10%;
}

section h2{
    font-family:'Playfair Display',serif;
    font-size:2.8rem;
    text-align:center;
    margin-bottom:35px;
}

/* =========================
   ABOUT PREVIEW
========================= */

.about-preview{
    text-align:center;
}

.about-preview p{
    max-width:800px;
    margin:0 auto 25px auto;
}

.read-more-btn{
    display:inline-block;
    padding:12px 28px;
    background:var(--primary-blue);
    color:white;
    text-decoration:none;
    border-radius:30px;
}

/* =========================
   SLIDER
========================= */

.slider{
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.slide{
    display:none;
}

.slide.active{
    display:block;
}

.slide img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

/* =========================
   OPENING HOURS
========================= */

.opening-hours{
    background:white;
}

.hours-container{
    max-width:650px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;

    font-size:1.1rem;
}

.day{
    font-weight:600;
}

/* =========================
   FEATURED DISHES
========================= */

.featured-dishes{
    background:var(--light-blue);
}

.dish-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.dish-card{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.dish-card i{
    font-size:50px;
    color:var(--primary-blue);
    margin-bottom:20px;
}

.dish-card h3{
    margin-bottom:10px;
    font-size:1.5rem;
}

/* =========================
   REVIEW SECTION
========================= */

.review-section{
    background:var(--primary-blue);
    color:white;
    text-align:center;
}

.review-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 30px;
    background:white;
    color:var(--primary-blue);
    text-decoration:none;
    border-radius:35px;
    font-weight:600;
}

/* =========================
   RESERVATION
========================= */

.reservation-section{
    text-align:center;
}

.reserve-btn{
    display:inline-block;
    margin-top:25px;
    background:var(--primary-blue);
    color:white;
    padding:18px 40px;
    border-radius:35px;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   LOCATION
========================= */

.location-section{
    background:white;
    text-align:center;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:60px 10%;
}

.footer-logo{
    height:90px;
    margin-bottom:15px;
}

.social-icons{
    margin:25px 0;
}

.social-icons a{
    color:white;
    font-size:24px;
    margin:0 12px;
    transition:0.3s;
}

.social-icons a:hover{
    color:var(--gold);
}

.copyright{
    color:#bbbbbb;
    font-size:0.9rem;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:4rem;
    }

    .dish-cards{
        grid-template-columns:1fr;
    }

    .hours-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .slide img{
        height:400px;
    }
}

@media(max-width:600px){

    .hero h1{
        font-size:3rem;
    }

    .hero-subtitle{
        font-size:1rem;
    }

    section h2{
        font-size:2rem;
    }

    .logo img{
        height:70px;
    }

    .slide img{
        height:300px;
    }
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.gallery-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.reviews-section{
    padding:80px 5%;
    text-align:center;
}

.reviews-intro{
    margin-bottom:40px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:40px;
    max-width:1400px;
    margin:auto;
}

.review-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.review-card:hover{
    transform:scale(1.02);
}

.review-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.review-button-container{
    margin-top:50px;
}

@media(max-width:900px){

    .reviews-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .reviews-grid{
        grid-template-columns:1fr;
    }

}
/* =========================
   RESERVATIONS PAGE
========================= */

.booking-card{
    max-width:700px;
    margin:auto;
    background:white;
    padding:60px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.booking-icon{
    font-size:70px;
    color:var(--primary-blue);
    margin-bottom:20px;
}

.booking-card p{
    margin:20px 0;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.contact-card{
    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.contact-card i{
    font-size:50px;
    color:var(--primary-blue);
    margin-bottom:20px;
}

.map-container{
    max-width:1200px;
    margin:auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.contact-form-container{
    max-width:800px;
    margin:auto;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:1rem;
    font-family:'Montserrat',sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--primary-blue);
}

.menu-gallery{
    text-align:center;
}

.menu-intro{
    margin-bottom:40px;
    font-size:1.1rem;
}

.menu-pages{
    display:flex;
    flex-direction:column;
    gap:40px;
    max-width:1100px;
    margin:auto;
}

.menu-pages img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.menu-note{
    max-width:800px;
    margin:40px auto 0 auto;
    padding:25px;
    background:white;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}