/* --- CSS Reset & Global Styles --- */
:root {
    --primary-color: #ffffff;
    --secondary-color: #c8a97e;
    --bg-dark: #121212;
    --header-footer-bg: #473529;
    --text-color: #ffffff;
    --text-light-gray: #e0e0e0;
    --text-gray: #a0a0a0;
    --font-serif: 'Lora', serif;
    --font-sans: 'Montserrat', sans-serif;
    --bg-moments: #18191b;
    --bg-story: #232426;
    --bg-testimonials: #18191b;
    --bg-chefs: #18191b;
    --bg-single-review: #232426;
    --bg-opening-hours: #18191b;
    --bg-footer: #2e241c;
    --bg-cta: #121212;
    --bg-full-menu: #18191b;
    --bg-booking-page: #18191b;
    --bg-gallery: #18191b;
    --bg-contact-page: #18191b;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* --- Shared Section Title Styles --- */
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-intro .sub-heading,
.section-heading .sub-heading {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-intro h2,
.section-heading h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    margin-bottom: 20px;
}

.section-intro p {
    color: var(--text-light-gray);
    line-height: 1.7;
}

/* --- Full-Screen Hero Wrapper --- */
/*.hero-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 20% opacity black overlay */
    /*z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

        /* --- Full-Screen Hero Wrapper --- */
.hero-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 20% opacity black overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 30px 50px;
}

.main-header.scrolled {
    padding: 15px 50px;
    background-color: var(--header-footer-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.desktop-nav .logo {
    margin: 0 40px;
}

.logo {
    text-align: center;
    transition: all 0.4s ease;
    color: var(--primary-color);
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    transition: font-size 0.4s ease;
}

.main-header.scrolled .logo h1 {
    font-size: 28px;
}

.logo span {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Mobile Navigation */
.mobile-logo {
    display: none;
}
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-nav-overlay.is-open {
    transform: translateX(0);
}

.mobile-nav-overlay .nav-links {
    flex-direction: column;
    text-align: center;
    font-size: 24px;
    gap: 30px;
}

.close-menu-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 32px;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-content {
    max-width: 800px;
}

.sub-heading {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.main-heading {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    font-family: var(--font-serif);
}

/* --- UNIFIED BUTTON STYLE --- */
.btn {
    font-family: var(--font-sans);
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    border-color: var(--secondary-color);
}

.btn i {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.btn:hover i {
    color: var(--bg-dark);
}

/* --- Slider Arrows --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.4s ease;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}
.hero-wrapper.arrows-visible .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}
.arrow-left {
    left: 30px;
}
.arrow-right {
    right: 30px;
}

/* --- Moments Section --- */
.moments-section {
    background-color: var(--bg-moments);
    text-align: center;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.moment-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    padding: 40px;
    background-size: 100% 100%; /* Fill the card fully */
    background-position: center; /* Centered horizontally and vertically */
    background-repeat: no-repeat; /* Prevent tiling */
    color: var(--primary-color);
    z-index: 1;
    min-height: 330px; /* Consistent minimum height */
    width: 100%; /* Full width of grid column */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.moment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    transition: background-color 0.4s ease;
    z-index: -1;
}

.moment-card:hover::before {
    background-color: rgba(0,0,0,0.4);
}

.moment-card .icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.moment-card:hover .icon {
    transform: scale(1.1);
}

.moment-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.moment-card p {
    color: var(--text-light-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* --- Our Story Section --- */
.our-story-section {
    background-color: var(--bg-story);
}

.story-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.story-text p:first-of-type {
    margin-bottom: 25px;
}

.story-text p {
    color: var(--text-light-gray);
    line-height: 1.8;
}

.story-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.story-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--bg-testimonials);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: #18191b;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header i {
    font-size: 24px;
    color: #4285F4;
}

.review-header span {
    font-size: 18px;
    font-weight: 600;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-footer {
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer-name {
    font-weight: 600;
}

.reviewer-date {
    font-size: 14px;
    color: var(--text-gray);
}

.review-stars {
    color: #fbbc05;
}

/* --- Menu Section Common Styles --- */
.menu-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menu-section-drinks {
    background-color: var(--bg-dark);
}

.menu-section-foods {
    background-color: var(--bg-story);
}

.menu-image-col {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
}

.menu-items-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-items-wrapper {
    width: 100%;
    max-width: 550px;
    padding: 100px 0;
}

.menu-list {
    list-style: none;
    margin-top: 40px;
}

.menu-list li {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #444;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
}

.menu-item-description {
    color: var(--text-gray);
    font-size: 15px;
}

.menu-price-titles {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding-right: 5px;
    margin-bottom: 15px;
    text-align: right;
}

.price-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light-gray);
    line-height: 1.4;
}

.price-title .size {
    font-weight: 300;
    color: var(--secondary-color);
}

.menu-item-prices {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
    min-width: 90px;
    text-align: right;
}

.menu-item-price-single {
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
}

.menu-items-wrapper .btn {
    margin-top: 30px;
}

/* --- Chefs Section --- */
.chefs-section {
    background-color: var(--bg-chefs);
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.chef-card {
    text-align: center;
}

.chef-card-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.chef-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.chef-card:hover img {
    transform: scale(1.1);
}

.chef-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.chef-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.chef-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.chef-socials a {
    color: var(--text-gray);
    font-size: 16px;
}

.chef-socials a:hover {
    color: var(--secondary-color);
}

/* --- Single Review Section --- */
.single-review-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-single-review);
    align-items: center;
}

.single-review-image {
    background-image: url('https://images.pexels.com/photos/1036622/pexels-photo-1036622.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 450px;
}

.single-review-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
}

.single-review-wrapper {
    max-width: 550px;
}

.single-review-wrapper .testimonial-text {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-light-gray);
    margin: 20px 0;
}

.single-review-wrapper .testimonial-author {
    font-weight: 600;
}

/* --- CTA Bar --- */
.cta-bar {
    background-color: var(--bg-cta);
    padding: 40px 0;
    border-top: 1px solid #2a2a2a;
}

.cta-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
}

.cta-text i {
    color: var(--secondary-color);
    margin-right: 15px;
}

/* --- Opening Hours Section --- */
.opening-hours-section {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/262047/pexels-photo-262047.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.opening-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hours-col p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.hours-col h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
}

/* --- Main Footer --- */
.main-footer {
    background-color: var(--header-footer-bg);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col.logo-col {
    text-align: center;
}

.footer-col.logo-col .logo h1 {
    font-size: 48px;
}

.footer-col.social-col {
    text-align: right;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
    margin-top: 20px;
}

.footer-socials a {
    font-size: 20px;
    color: var(--text-gray);
}

.footer-socials a:hover {
    color: var(--secondary-color);
}

/* --- Copyright Bar --- */
.copyright-bar {
    background-color: var(--header-footer-bg);
    padding-bottom: 40px;
    text-align: center;
}

.copyright-bar .container hr {
    border: none;
    height: 1px;
    background-color: #5a4a3e;
    margin-bottom: 30px;
}

.copyright-bar p {
    color: var(--text-gray);
    font-size: 14px;
}

.copyright-bar a {
    color: var(--primary-color);
    font-weight: 600;
}

.copyright-bar a:hover {
    color: var(--secondary-color);
}

/* --- Page Hero (for inner pages like Menu) --- */
.page-hero {
    padding-top: 150px;
    padding-bottom: 150px;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero .sub-heading {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs span {
    margin: 0 10px;
}

/* --- Full Menu Page --- */
.menu-page-section {
    padding: 0;
    background-color: var(--bg-full-menu);
}

.menu-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.menu-category-content {
    padding: 100px 40px;
    display: flex;
}

.menu-category.image-right .menu-category-content {
    justify-content: flex-end;
}

.menu-category.image-left .menu-category-content {
    justify-content: flex-start;
    order: 2;
}

.menu-category-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.menu-col {
    width: 100%;
    max-width: 600px;
}

.menu-col .menu-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.menu-col .menu-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.menu-col li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #444;
}

.menu-col li:last-child {
    border-bottom: none;
}

.menu-col .menu-item-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
}

.menu-col .menu-item-price-single {
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
}

.menu-col .menu-item-description {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 80%;
}

/* --- Booking Page Section --- */
.booking-page-section {
    background-color: var(--bg-booking-page);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.booking-info h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--text-gray);
    line-height: 1.8;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 15px;
    color: var(--text-light-gray);
    font-family: var(--font-sans);
    font-size: 16px;
    width: 100%;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.7rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.details-fields {
    margin-top: 20px;
}

.details-fields h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px; /* Gap only between columns */
}

.details-grid .your-message {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
}

.details-grid textarea {
    height: 100%;
}

.captcha-placeholder {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    margin-top: 30px;
    margin-bottom: 30px;
}

.captcha-placeholder .checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #666;
    border-radius: 3px;
}

.submit-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    border-color: var(--secondary-color);
}

/* Confirmation modal */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: #333; /* Ensure text is visible */
}

.modal-buttons {
    margin-top: 20px;
}

.close-modal-btn,
.return-home-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.close-modal-btn {
    background-color: #d32f2f;
    color: #fff;
}

.return-home-btn {
    background-color: #00695c;
    color: #fff;
    text-decoration: none;
}

.close-modal-btn:hover,
.return-home-btn:hover {
    opacity: 0.9;
}

/* --- About Page: How it Begins Section --- */
.how-it-begins-section {
    background-color: var(--bg-story);
}

.how-it-begins-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-it-begins-text h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    margin-bottom: 20px;
}

.how-it-begins-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.how-it-begins-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.image-and-stats-col img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.stat-item {
    text-align: center;
    margin: 20px 0;
}

.stat-item .number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--secondary-color);
}

.stat-item .label {
    font-size: 14px;
    color: var(--text-gray);
}

/* --- Gallery Section --- */
.gallery-section {
    background-color: var(--bg-gallery);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: 1px solid #444;
    color: var(--text-light-gray);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bg-dark);
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.4s ease;
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.gallery-item:hover .view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 85vw;
    max-height: 85vh;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 48px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background-color: rgba(0,0,0,0.8);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* --- Contact Page --- */
.contact-section {
    padding: 60px 0;
    background-color: var(--bg-contact-page);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    padding: 20px;
    border-radius: 10px;
}

.contact-info h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.contact-form {
    padding: 20px;
    border-radius: 10px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px; /* Gap only between columns */
    margin-bottom: 20px;
}

.contact-form .form-grid .your-message {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
}

.form-group input,
.form-group textarea {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 15px;
    color: var(--text-light-gray);
    font-family: var(--font-sans);
    font-size: 16px;
    width: 100%;
}

.form-group textarea {
    height: 100%;
    resize: vertical;
    min-height: 150px; /* Added to ensure a larger default height */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* --- Responsive Design --- */
@media (max-width: 1400px) {
    .container {
        max-width: 1100px;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-container {
        justify-content: space-between;
    }
    .main-header .mobile-logo {
        margin-bottom: none;
        display: block;
    }
    .main-header,
    .main-header.scrolled {
        padding: 10px 20px;
    }
    .main-heading {
        font-size: 56px;
    }
    .moments-grid,
    .testimonials-grid,
    .chefs-grid,
    .story-content,
    .menu-section,
    .single-review-section,
    .menu-category,
    .booking-layout,
    .how-it-begins-layout,
    .gallery-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .moments-grid,
    .testimonials-grid,
    .chefs-grid {
        gap: 30px;
    }
    .story-images,
    .menu-image-col,
    .single-review-image,
    .menu-category-image {
        margin-top: 40px;
        display: none;
    }
    .menu-items-col,
    .single-review-content,
    .menu-category-content {
        padding: 80px 40px;
    }
    .menu-items-wrapper {
        max-width: 100%;
    }
    .foods-menu-col {
        order: -1;
    }
    .container {
        max-width: 100%;
    }
    .page-hero h1 {
        font-size: 48px;
    }
    .gallery-grid {
        column-count: 2;
    }
    .contact-layout {
        gap: 50px;
    }
    .contact-form .form-grid {
        grid-template-columns: 1fr; /* Collapse to single column */
    }
    .contact-form .form-grid .your-message {
        grid-column: 1 / 2; /* Span the single column */
        grid-row: 1 / 4; /* Retain multi-row span */
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 42px;
    }
    .hero-description {
        font-size: 16px;
    }
    .slider-arrow {
        display: none;
    }
    .section-intro h2,
    .section-heading h2 {
        font-size: 36px;
    }
    .chefs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-bar .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .opening-hours-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-col.social-col {
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .page-hero h1 {
        font-size: 36px;
    }
    .booking-form .form-row,
    .details-grid,
    .how-it-begins-images {
        grid-template-columns: 1fr;
    }
    .details-grid .your-message {
        grid-column: auto;
        grid-row: auto;
    }
    .how-it-begins-images {
        margin-top: 40px;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .story-images {
        grid-template-columns: 1fr;
    }
    .chefs-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 1;
    }
}