@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Nunito:wght@600;700;800&display=swap");

:root {
            --color-dark: #1c1c1e;
            --color-teal: #0d9488;
            --color-white: #ffffff;
            --color-light-bg: #f9f8f7;
            --color-text: #1c1c1e;
            --color-text-light: #666;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--color-text);
            background-color: var(--color-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        h1 {
            font-size: 3.5rem;
            line-height: 1.1;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--color-text-light);
            line-height: 1.8;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--color-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-dark);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(13, 148, 136, 0.2);
        }

        header nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .nav-brand h1 {
            font-size: 1.25rem;
            color: var(--color-white);
            margin: 0;
        }

        .nav-brand span {
            font-size: 0.75rem;
            color: var(--color-teal);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-white);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--color-teal);
        }

        .nav-links a.active {
            color: var(--color-teal);
            border-bottom: 2px solid var(--color-teal);
            padding-bottom: 0.25rem;
        }

        main {
            margin-top: 80px;
        }

        /* Hero Section */
        #hero_dining {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            overflow: hidden;
        }

        #hero_dining::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('img/asset-384254ae8348.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        #hero_dining::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(28, 28, 30, 0.4) 0%, rgba(13, 148, 136, 0.1) 100%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4rem;
            max-width: 50%;
            background: linear-gradient(to right, rgba(28, 28, 30, 0.8), transparent);
            padding-left: 4rem;
            padding-bottom: 6rem;
        }

        .hero-content h1 {
            color: var(--color-white);
            margin-bottom: 1rem;
        }

        .hero-content p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .hero-cta {
            display: inline-block;
            background-color: var(--color-teal);
            color: var(--color-white);
            padding: 1rem 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .hero-cta:hover {
            background-color: #0a7a74;
            transform: translateY(-2px);
        }

        /* Experience Story Section */
        #experience_story {
            padding: 6rem 2rem;
            background-color: var(--color-white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        #experience_story .section-text {
            padding: 0 2rem;
        }

        #experience_story h2 {
            color: var(--color-dark);
        }

        #experience_story .subheading {
            font-size: 1.2rem;
            color: var(--color-teal);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        #experience_story img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        /* Venue Layout Section */
        #venue_layout {
            padding: 6rem 2rem;
            background-color: var(--color-light-bg);
            max-width: 1400px;
            margin: 0 auto;
        }

        #venue_layout h2 {
            color: var(--color-dark);
            margin-bottom: 1rem;
        }

        #venue_layout .subheading {
            font-size: 1.2rem;
            color: var(--color-teal);
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .venue-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .venue-card {
            background-color: var(--color-white);
            padding: 2.5rem;
            border-left: 4px solid var(--color-teal);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .venue-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
        }

        .venue-card h3 {
            color: var(--color-dark);
            margin-bottom: 1rem;
        }

        .venue-card p {
            color: var(--color-text-light);
            font-size: 0.95rem;
        }

        /* Guest Culture Section */
        #guest_culture {
            padding: 6rem 2rem;
            background-color: var(--color-white);
            max-width: 1400px;
            margin: 0 auto;
        }

        #guest_culture h2 {
            color: var(--color-dark);
            margin-bottom: 1rem;
        }

        #guest_culture .subheading {
            font-size: 1.2rem;
            color: var(--color-teal);
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .guest-quote {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 3rem;
            align-items: center;
            margin-top: 3rem;
        }

        .guest-quote-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--color-dark);
            border-left: 4px solid var(--color-teal);
            padding-left: 2rem;
        }

        .guest-quote-text strong {
            color: var(--color-teal);
        }

        .guest-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Press Coverage Section */
        #press_coverage {
            padding: 6rem 2rem;
            background-color: var(--color-light-bg);
            max-width: 1400px;
            margin: 0 auto;
        }

        #press_coverage h2 {
            color: var(--color-dark);
            margin-bottom: 1rem;
        }

        #press_coverage .subheading {
            font-size: 1.2rem;
            color: var(--color-teal);
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .press-item {
            background-color: var(--color-white);
            padding: 2rem;
            text-align: center;
            border-radius: 4px;
            transition: transform 0.3s ease;
        }

        .press-item:hover {
            transform: translateY(-4px);
        }

        .press-item h3 {
            font-size: 1.1rem;
            color: var(--color-dark);
            margin-bottom: 1rem;
        }

        .press-item p {
            font-size: 0.9rem;
            color: var(--color-text-light);
        }

        .press-accent {
            font-size: 2.5rem;
            color: var(--color-teal);
            margin-bottom: 1rem;
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
        }

        /* CTA Explore Section */
        #cta_explore {
            position: relative;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 4rem;
        }

        #cta_explore::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('img/asset-bd1ed0ae9eb9.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        #cta_explore::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(28, 28, 30, 0.6), rgba(13, 148, 136, 0.2));
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--color-white);
            max-width: 600px;
            padding: 2rem;
        }

        .cta-content h2 {
            color: var(--color-white);
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--color-teal);
            color: var(--color-white);
            background-color: var(--color-teal);
            cursor: pointer;
        }

        .cta-btn:hover {
            background-color: transparent;
            color: var(--color-teal);
        }

        .cta-btn.outline {
            background-color: transparent;
            color: var(--color-white);
            border-color: var(--color-white);
        }

        .cta-btn.outline:hover {
            background-color: var(--color-white);
            color: var(--color-teal);
            border-color: var(--color-white);
        }

        /* Footer */
        footer {
            background-color: var(--color-dark);
            color: var(--color-white);
            padding: 4rem 2rem 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            color: var(--color-teal);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--color-teal);
        }

        .footer-contact p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(13, 148, 136, 0.3);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            #experience_story {
                grid-template-columns: 1fr;
            }

            .venue-grid {
                grid-template-columns: 1fr;
            }

            .guest-quote {
                grid-template-columns: 1fr;
            }

            .press-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-content {
                max-width: 100%;
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            #experience_story,
            #venue_layout,
            #guest_culture,
            #press_coverage {
                padding: 3rem 1rem;
            }

            .venue-card,
            .press-item {
                padding: 1.5rem;
            }

            .press-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
