/* --- Global Styles & Variables (Required for both Navbar and Footer) --- */
:root {
    --primary-color: #E67E22;
    --dark-color: #000000;
    --light-color: #FDFEFE;
    --text-color: #34495E;
    --rustic-bg: white;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 70px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--rustic-bg);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1.5rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-color);
}


/* --- Navbar Specific Styles --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
    /* Set a default background color for other pages */
    background-color: #1d1d1d; 
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

/* This class is for the transparent-to-solid effect on the homepage.
   You can keep it for consistency or remove if not needed on other pages. */
.navbar.scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 2px 10px #ffffff1a;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.nav-logo img {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active-link {
    color: var(--primary-color);
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-color);
    transition: all 0.3s ease-in-out;
}

/* --- Responsive Styles for Navbar --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px; /* Adjust based on navbar height */
        flex-direction: column;
        background-color: #1d1d1d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #4d5b69;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* --- Footer Styles --- */
.site-footer {
    background-color: #1d1d1d;
    color: #edf3f7;
    padding-top: 3rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    width: 100px;
    background: var(--light-color);
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 1rem;
}

.site-footer h4 {
    font-family: var(--font-heading);
    color: orange;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: #fcfeff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p i {
    margin-right: 10px;
}

.footer-social a {
    color: #ecf1f5;
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #34495E;
}
/* --- Global Dependencies (Required for this section) --- */
:root {
    --primary-color: #E67E22;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Montserrat', sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #D35400;
    transform: translateY(-3px);
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-color);
}


/* --- Contact Section Specific Styles --- */
.bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image with blur effect */
.bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("src/img/restaurant-bg.jpg") no-repeat center center/cover;
  filter: blur(3px);
  transform: scale(1.1); /* Prevents blurred edges from showing */
  z-index: -1;
}

/* Ensure content on top of the blurred background is clear */
.bg > * {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background-color: #f5d292;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}
.contact-form h2{
    font-weight: bold;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: black;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Styles for form submission status messages */
#form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.success {
    color: green;
}

.error {
    color: red;
}
.opening-hours, .reservation-cta, .order-online, .faq, .social-contact, .newsletter {
    background: #fff;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

}

.opening-hours h3,
.reservation-cta h3,
.order-online h3,
.faq h3,
.social-contact h3,
.newsletter h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Sets the overall container for the hero banner. */
.hero-wrap.hero-wrap-2 {
    position: relative; /*cite: 1*/
    width: 100%; /*cite: 1*/
    height: 550px; /* Adjust this value for a taller or shorter banner */ /*cite: 1*/
    display: flex; /*cite: 1*/
    align-items: flex-end; /* Aligns content to the bottom */ /*cite: 1*/
    justify-content: center; /*cite: 1*/
    background-size: cover; /*cite: 1*/
    background-position: center center; /*cite: 1*/
    overflow: hidden; /* Ensures no content spills out */ /*cite: 1*/
}

/* Creates the semi-transparent dark layer over the background image. */
.hero-wrap .overlay {
    position: absolute; /*cite: 1*/
    top: 0; /*cite: 1*/
    left: 0; /*cite: 1*/
    right: 0; /*cite: 1*/
    bottom: 0; /*cite: 1*/
    background: rgba(0, 0, 0, 0.55); /* Black overlay with 55% opacity */ /*cite: 1*/
    z-index: 1; /* Sits below the text but above the background image */ /*cite: 1*/
}

/* Ensures the text content sits on top of the overlay. */
.hero-wrap .container {
    position: relative; /*cite: 1*/
    z-index: 2; /*cite: 1*/
    padding-bottom: 30px; /* Adds some space from the bottom edge */ /*cite: 1*/
}

/* Styles the main "Ambience" title. */
.bread {
    font-size: 48px; /*cite: 1*/
    font-weight: 700; /*cite: 1*/
    color: #fff; /*cite: 1*/
    margin: 0; /*cite: 1*/
    letter-spacing: .3px; /*cite: 1*/
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* Adds a subtle shadow for better readability */ /*cite: 1*/
}

/* --- Responsive Adjustments --- */

/* For tablet screens (up to 992px wide) */
@media (max-width: 992px) {
    .hero-wrap.hero-wrap-2 {
        height: 280px; /* Shorter banner height */ /*cite: 1*/
    }

    .bread {
        font-size: 36px; /* Smaller title font size */ /*cite: 1*/
    }
}

/* For mobile screens (up to 767px wide) */
@media (max-width: 767px) {
    .hero-wrap.hero-wrap-2 {
        height: 220px; /* Even shorter banner height */ /*cite: 1*/
        align-items: center; /* Vertically centers the text */ /*cite: 1*/
        padding: 10px 0; /*cite: 1*/
    }

    .bread {
        font-size: 28px; /* Further reduced font size for small screens */ /*cite: 1*/
    }
}