@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Light Theme */
    --bg-color: #f8f5f2;
    --text-color: #2c2c2c;
    --primary-color: #d4a373;
    /* Gold/Bronze */
    --secondary-color: #2c2c2c;
    --accent-color: #e07a5f;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-color: #e5e5e5;
}

[data-theme="dark"] {
    /* Dark Theme */
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --primary-color: #d4a373;
    --secondary-color: #ffffff;
    --accent-color: #e07a5f;
    --nav-bg: rgba(18, 18, 18, 0.95);
    --card-bg: #1e1e1e;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: break-word;
    /* Ensure headings wrap on mobile */
    word-wrap: break-word;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        /* Slightly smaller for very small screens */
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

.responsive-landscape-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .responsive-landscape-img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .responsive-landscape-img {
        height: 300px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    /* Balanced spacing for premium feel */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 38px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    /* Pillow shape */
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Slightly reduced gap within logo */
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: 40px;
    /* Reduced gap from logo */
}

.nav-item {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--primary-color);
}

.nav-item a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    min-width: 180px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu li a:hover {
    background-color: rgba(212, 163, 115, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
    /* Slight movement */
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    /* Pushes buttons to the right */
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(15deg);
}

/* Animations */
/* Mobile Navbar Fix for Overflow */
@media (max-width: 550px) {
    .container {
        padding: 0 15px;
        /* Reduced padding to give more space for content */
    }

    .navbar {
        height: 70px;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Container padding adjustment remains here */

    .theme-toggle {
        font-size: 1.1rem;
    }

    .hamburger {
        font-size: 1.4rem;
        margin-left: 5px;
    }

    .nav-links {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-text.visible::after {
    transform: translateX(100%);
}

.pop-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pop-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

/* Unified Premium Hero System */
.premium-hero,
#hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Changed from flex-start to center for exact centering */
    text-align: center !important;
    color: #ffffff;
    overflow: hidden;
    padding: 180px 20px 100px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.premium-hero::before,
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding-top: 20px;
    /* Added slight inner padding */
}

.hero-content h1 {
    font-size: 4.5rem;
    margin: 0 0 24px 0 !important;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center !important;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin: 0 auto 45px auto !important;
    max-width: 700px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center !important;
}

@media (max-width: 768px) {
    .premium-hero {
        min-height: 75vh;
        padding: 200px 20px 100px 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}



/* Home 2 Tablet & Mobile Fixes */
.reservation-grid,
.contact-grid {
    gap: 30px;
}

/* Specific Home 2 Mobile Query to fix Image Visibility and Stacking */
@media (max-width: 768px) {

    /* Home 2 Hero Specifics */
    .home2-hero-container {
        display: flex !important;
        flex-direction: column-reverse !important;
        /* Forces Image (2nd child) to be on TOP */
        gap: 20px !important;
    }

    .home2-hero-image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .home2-hero-image>div {
        height: 300px !important;
        /* Ensure image has explicit height on mobile */
        max-width: 100% !important;
    }

    .home2-hero-text h1 {
        font-size: 1.8rem !important;
        /* Balanced size for mobile - not too small, not too big */
        line-height: 1.2;
    }

    .home2-hero-text p {
        font-size: 1rem !important;
        max-width: 100% !important;
    }

    /* General responsive padding adjustments */
    section {
        padding: 40px 0 !important;
        /* Compact spacing for mobile */
        min-height: auto !important;
        /* Allow sections to shrink */
    }
}

/* Tablet Optimizations for Home 2 */
@media (max-width: 1024px) {
    .home2-hero {
        padding-top: 120px !important;
        /* Account for navbar */
        min-height: auto !important;
        padding-bottom: 40px !important;
    }

    .home2-hero-container {
        gap: 30px;
    }

    /* Ensure no massive gaps throughout the page on tablet */
    section {
        padding: 50px 0;
    }
}


@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 80px;
        /* Aligned with header height */
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 80px);
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        z-index: 2000;
        overflow-y: auto;
        gap: 5px;
        transform: translateY(-150%);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
        /* Compact fit */
    }

    .nav-item a {
        display: block;
        padding: 8px 0;
        /* Reduced padding */
        font-size: 1.1rem;
        /* Optimized font size */
        font-weight: 500;
        color: var(--text-color);
        line-height: 1.2;
        transition: color 0.3s ease;
    }

    .nav-item a:hover,
    .nav-item a.active {
        color: var(--primary-color);
        background: transparent;
    }

    /* Submenu (Home dropdown) */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
        display: none;
        /* Hide submenu to save space, or style very compactly - user said "Do not remove any menu items" */
        /* Let's keep it visible but very compact if needed, or maybe just inline it */
        display: block;
    }

    .dropdown-menu li a {
        padding: 4px 0;
        font-size: 0.85rem;
        opacity: 0.8;
    }

    /* Hamburger & Header Mobile Elements */
    .hamburger {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 10px;
        order: 3;
        color: var(--text-color);
    }

    .nav-buttons {
        display: flex;
        align-items: center;
        margin-left: auto;
        /* Push group to right */
        order: 2;
        margin-right: 5px;
    }

    .nav-buttons .btn,
    .nav-buttons .btn-outline {
        display: none;
        /* Hide login/signup buttons on mobile, rely on links */
    }

    /* Ensure theme toggle (inside nav-buttons) is visible */
    .theme-toggle {
        display: block;
        font-size: 1.4rem;
        padding: 5px;
    }
}

/* Optimization for Desktop menu on medium screens to prevent overlap */
@media (max-width: 1200px) and (min-width: 1025px) {
    .nav-links {
        gap: 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-buttons {
        gap: 10px;
    }
}

/* Mobile Auth Links */
.mobile-auth-link {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-auth-link {
        display: block;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }

    /* Separator before auth links */
    .nav-item.mobile-auth-link:nth-last-child(2) {
        border-top: 1px solid rgba(100, 100, 100, 0.1);
        margin-top: 10px;
        padding-top: 10px;
    }

    .mobile-auth-link a {
        display: block;
        padding: 5px 16px;
        border-radius: 50px;
        text-align: center;
        font-weight: 500;
        text-transform: none;
        letter-spacing: normal;
        font-size: 1.1rem;
        line-height: 1.2;
        transition: all 0.3s ease;
    }

    /* Login Link - Outline style */
    .nav-item.mobile-auth-link:nth-last-child(2) a {
        background: transparent;
        border: 1.5px solid var(--primary-color);
        color: var(--primary-color) !important;
    }

    /* Sign Up Link - Solid style */
    .nav-item.mobile-auth-link:last-child {
        margin-top: 8px;
    }

    .nav-item.mobile-auth-link:last-child a {
        background: var(--primary-color);
        border: 1.5px solid var(--primary-color);
        color: #ffffff !important;
    }

    .mobile-auth-link a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(212, 163, 115, 0.15);
    }
}

/* Section Basics - Optimized Spacing */
section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

/* Ensure sections with background images have proper spacing and behavior */
section[style*="background"] {
    padding: 60px 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Global Heading Spacing & Consistency */
h1,
h2,
h3 {
    margin-bottom: 20px;
    /* Standardized from 24px/various */
}

p {
    margin-bottom: 20px;
    /* Consistent paragraph spacing */
}

/* Stats Header Styling */
.stats-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.stats-header h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.stats-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Tablet Optimizations */
@media (max-width: 1024px) {
    section {
        padding: 50px 0;
    }

    section[style*="background"] {
        padding: 60px 0 !important;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    section {
        padding: 50px 0 !important;
        /* Force compact but adequate spacing */
    }

    section[style*="background"] {
        padding: 60px 0 !important;
    }

    .stats-header h2 {
        font-size: 2rem;
    }
}

/* About Page Layout */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    /* Reduced from 100px */
}

.about-content-grid.reverse {
    direction: rtl;
    /* Swap columns on desktop visually */
}

.about-content-grid.reverse>* {
    direction: ltr;
    /* Reset text direction for children */
}

/* Experience Grid (Unified) */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-content-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Responsive Image */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .about-content-grid {
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
        gap: 40px;
        direction: ltr !important;
        text-align: center;
        /* Center text on mobile */
    }

    .about-content-grid ul {
        display: inline-block;
        text-align: left;
        /* Keep list items left-aligned for readability */
        margin-top: 20px;
    }

    .about-img {
        height: auto !important;
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        margin: 0 auto;
        /* Center image */
        display: block;
    }
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 60px 0 20px;
    /* Reduced top padding */
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    /* Reduced from 50px */
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 900;
    font-size: 1.2rem;
    border: none;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--accent-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.1);
    transform: translateX(5px);
}

.form-control:hover {
    border-color: var(--primary-color);
}

/* Newsletter Specific */
.newsletter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Increased for better vertical separation */
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

@media (max-width: 576px) {
    .newsletter-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-wrapper .form-control {
        width: 100% !important;
        margin: 0;
    }

    .newsletter-wrapper .btn {
        width: 100%;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.modal.active .modal-content {
    transform: translateY(0);
}

/* Pop-up Animation */
@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pop-up {
    animation: popUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Social Buttons */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--card-bg);
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.social-grid {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    margin-bottom: 25px;
}

@media (max-width: 480px) {
    .social-grid {
        flex-direction: column;
        gap: 10px;
    }
}

.social-btn img,
.social-btn svg {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    opacity: 0.6;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    padding: 0 10px;
    font-size: 0.9rem;
}

.back-home {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    transition: letter-spacing 0.3s ease;
}

/* Standard Grid for Pages */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: start;
}

.contact-details-box {
    padding: 20px;
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
        grid-template-columns: 1.2fr 0.8fr;
    }
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Reservation Grid */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
}

.reservation-image-col {
    background-image: url('https://images.pexels.com/photos/941861/pexels-photo-941861.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.reservation-image-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.reservation-image-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.reservation-image-content h3 {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.reservation-image-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .reservation-image-col {
        min-height: 300px;
        order: -1;
    }
}

/* Map Container */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    box-shadow: var(--shadow);
    z-index: 1;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    z-index: 2;
    display: block;
}

/* Ensure no pseudo-elements block it */
.map-container::before,
.map-container::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
}

/* Stats Section Header */
.stats-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.stats-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 2.2rem;
    }
}

/* Header Spacer */
.header-spacer {
    height: 80px;
}

@media (max-width: 768px) {
    .header-spacer {
        height: 80px;
    }
}

/* Contact Page Specifics */
/* Contact Page Specifics */
.contact-hero {
    background-image: url('../images/contact-hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 120px 20px 80px 20px;
}

@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        min-height: 350px;
        /* Reduced min-height for mobile */
        padding: 100px 20px 60px 20px;
        /* Extra top padding for fixed header */
    }

    .contact-hero h1 {
        font-size: 2.5rem !important;
        /* Smaller heading on mobile */
    }

    .contact-hero p {
        font-size: 1rem !important;
    }
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Hero content styles moved to unified premium-hero system */

.contact-section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.premium-form-container {
    max-width: 700px;
    margin: 0 auto 20px auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.premium-form-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-details-stacked {
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 800px;
    padding: 40px;
    background: var(--bg-color);
    /* Slight contrast or transparent */
}

.contact-details-stacked h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Full Width Map -> Balanced Container Map */
.full-width-map-container {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto 60px auto;
    /* Centered with bottom spacing */
    position: relative;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .full-width-map-container {
        height: 350px;
        /* Reduced tablet height */
        width: 90%;
        /* Add some side spacing on tablet */
    }
}

@media (max-width: 576px) {
    .full-width-map-container {
        height: 300px;
        /* Reduced mobile height */
        width: 90%;
        /* Add ample side margin */
    }
}

/* Experience Cards */
.experience-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.experience-img-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.experience-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-img-container img {
    transform: scale(1.1);
}

.experience-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.experience-content p {
    opacity: 0.8;
    line-height: 1.6;
    color: var(--text-color);
}

/* Home 2 Experience Grid Responsive */
@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .experience-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Chef's Philosophy Image */
.chef-philosophy-img {
    width: 60%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: block;
}

@media (max-width: 1024px) {
    .chef-philosophy-img {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .chef-philosophy-img {
        width: 95%;
    }
}

.contact-info-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.contact-info-item:hover {
    background: rgba(212, 163, 115, 0.05);
    transform: translateX(10px);
    opacity: 1;
}

.contact-info-item span {
    transition: transform 0.3s ease;
}

.contact-info-item:hover span {
    transform: scale(1.2);
}

/* Tablet/Mobile Adjustments for Menu Page */
@media (max-width: 900px) {
    .menu-section {
        margin-bottom: 50px !important;
        /* Reduced from 80px */
    }

    .menu-title {
        margin-bottom: 25px !important;
        /* Reduced from 40px */
        font-size: 2rem !important;
    }

    .tasting-hero {
        margin-bottom: 40px !important;
    }
}

/* Signature Experience Grid */
.signature-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .signature-experience-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile Navbar Height Adjustment */
@media (max-width: 550px) {
    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
    }
}