/**
 * Theme Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   CSS Root Variables - Brand Colors
   ============================================ */

:root {
    /* Brand Colour */
    --color-brand: #3A3932;
    
    /* Secondary Colours */
    --color-secondary-1: #5A7F71;  /* Teal/Green-Grey - Pantone 5555C */
    --color-secondary-2: #647A93;  /* Blue-Grey */
    --color-secondary-3: #5F504D;    /* Brown/Taupe - Pantone 411C */
    --color-secondary-4: #A39383;  /* Light Brown/Beige */
    
    /* Neutral Colours */
    --color-white: #fcfcfc;
    --color-black: #111;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'StempelSchneidler', 'Georgia', 'Times New Roman', serif;
}

   /* StempelSchneidler Font Family */
   @font-face {
    font-family: 'StempelSchneidler';
    src: url('../fonts/StempelSchneidlerStd-Roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

   @font-face {
    font-family: 'StempelSchneidler';
    src: url('../fonts/StempelSchneidlerStd-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

   @font-face {
    font-family: 'StempelSchneidler';
    src: url('../fonts/StempelSchneidlerStd-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

   @font-face {
    font-family: 'StempelSchneidler';
    src: url('../fonts/StempelSchneidlerStd-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

   @font-face {
    font-family: 'StempelSchneidler';
    src: url('../fonts/StempelSchneidlerStd-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

   @font-face {
    font-family: 'StempelSchneidler';
    src: url('../fonts/StempelSchneidlerStd-LtIt.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

   @font-face {
    font-family: 'StempelSchneidler';
    src: url('../fonts/StempelSchneidlerStd-MedIt.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* ============================================
   Base Styles
   ============================================ */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'StempelSchneidler', 'Georgia', 'Times New Roman', serif;
    font-weight: normal;
}

#page {
    min-height: 100vh;
    position: relative;
}

.site-main {
    min-height: 100vh;
}

/* ============================================
   Header Styles
   ============================================ */

   .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 30px;
    background: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    position: relative;
}

/* Header Logo (Center) - Only on non-front pages */
.header-logo {
    position: fixed;
    left: 50vw;
    transform: translateX(-50%);
    z-index: 1001;
    top: 10px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.header-logo.hidden {
    opacity: 0;
    visibility: hidden;
}

.header-logo a {
    display: block;
    text-decoration: none;
}

.header-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

/* Header logo - white when navigation is active */
.site-header:has(.main-navigation.active) .header-logo img {
    filter: brightness(0) invert(1);
}

/* Hide header logo on mobile */
@media (max-width: 768px) {
    .header-logo {
        display: none;
    }
}

/* Hamburger Menu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger menu spans - black when scrolled past hero */
.site-header.scrolled-past-hero .menu-icon span {
    background-color: #000000;
}

/* Hamburger menu spans - black when NOT on front page */
.site-header.not-front-page .menu-icon span {
    background-color: #000000;
}

/* Hamburger menu spans - white when navigation is active */
.site-header:has(.main-navigation.active) .menu-icon span {
    background-color: #ffffff;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Reserve Button */
.reserve-button {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    z-index: 1001;
    position: relative;
}

.reserve-button:hover {
    opacity: 0.7;
}

/* Reserve button - black when scrolled past hero */
.site-header.scrolled-past-hero .reserve-button {
    color: #000000;
}

/* Reserve button - black when NOT on front page */
.site-header.not-front-page .reserve-button {
    color: #000000;
}

/* Reserve button - white when navigation is active */
.site-header:has(.main-navigation.active) .reserve-button {
    color: #ffffff;
}

/* Navigation Menu */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-secondary-3);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-navigation.active {
    display: flex;
    opacity: 1;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}


.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover {
    opacity: 0.7;
}

/* ============================================
   Hero Section Styles
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    opacity: 0.9;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    opacity: 0.85;
}

.hero-circle {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    margin-bottom: 15px;
}


.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    margin: 10px 0 0 0;
    font-family: var(--font-primary);
}


/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-background {
        top: -5%;
        left: -5%;
        width: 110%;
        height: 110%;
        background-size: cover;
        background-position: center;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .reserve-button {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .main-navigation a {
        font-size: 42px;
    }
}

@media (max-width: 480px) {

    .hero-section {
        min-height: 100vh;
    }

    .hero-background {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-logo img {
        max-width: 150px;
    }
}

/* ============================================
   Reusable Decorative Image Component
   ============================================ */

.decorative-image {
    position: relative;
    z-index: 1;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
    will-change: transform;
    display: block;
    visibility: visible;
    opacity: 1;
}

.decorative-image img {
    max-width: 200px;
    width: auto;
    height: auto;
    display: block;
    visibility: visible;
    opacity: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* ============================================
   Global Hero Section Styles (Reusable)
   ============================================ */

/* Global Hero Section Base */
.hero-section-base {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 30px 0 30px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

/* Global Hero Container */
.hero-container-base {
    max-width: 1200px;
    width: 100%;
    position: relative;
}

/* Global Hero Content Wrapper */
.hero-content-base {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

/* Global Hero Decorative Image Wrapper */
.hero-decorative-image-wrapper {
    position: absolute;
    top: -30%;
    right: 0;
    z-index: 1;
}

.hero-decorative-image-wrapper .decorative-image {
    margin: 0;
}

.hero-decorative-image-wrapper .decorative-image img {
    max-width: 300px;
}

/* Global Hero Main Content */
.hero-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Global Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--color-brand);
    letter-spacing: -3px;
}

/* Global Hero Divider */
.hero-divider {
    width: 100px;
    height: 1px;
    background-color: var(--color-secondary-2);
    margin: 0 0 40px 0;
}

/* Global Hero Paragraph */
.hero-paragraph {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 0 0 10px 0;
    font-weight: 400;
}

.hero-paragraph:last-child {
    margin-bottom: 0;
}

/* Global Hero Paragraph Variants */
.hero-paragraph-large {
    font-size: 20px;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-paragraph-small {
    font-size: 16px;
    max-width: 700px;
}

/* Global Hero Responsive Styles */
@media (max-width: 968px) {
    .hero-content-base {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 0;
    }

    .hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-decorative-image-wrapper .decorative-image img {
        max-width: 200px;
        margin-left: 50px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero-section-base {
        padding: 80px 20px;
        min-height: auto;
    }

    .hero-content-base {
        margin-top: 0;
    }

    .hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-paragraph {
        font-size: 16px;
    }

    .hero-paragraph-large {
        font-size: 18px;
    }

    .hero-paragraph-small {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section-base {
        padding: 60px 15px;
    }

    .hero-content-base {
        margin-top: 0;
    }

    .hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-paragraph {
        font-size: 15px;
    }

    .hero-paragraph-large {
        font-size: 16px;
    }

    .hero-paragraph-small {
        font-size: 14px;
    }

    .hero-decorative-image-wrapper .decorative-image img {
        max-width: 150px;
    }
}

/* ============================================
   Menus Hero Section Styles
   ============================================ */

/* Menus Hero Section - extends global hero styles */
.menus-hero-content {
    margin-top: 100px;
}

/* Navigation */
.menus-hero-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.menus-hero-nav-item {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-brand);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-weight: 400;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.menus-hero-nav-item .hero-divider {
    width: 100px;
    height: 1px;
    background-color: var(--color-secondary-2);
    margin: 0 0 8px 0;
}

.menus-hero-nav-item:hover {
    opacity: 0.7;
}

.menus-hero-nav-item.active {
    opacity: 1;
}

.menus-hero-nav-item .chevron-icon {
    width: 12px;
    height: 8px;
    color: var(--color-brand);
    transition: transform 0.3s ease;
}

.menus-hero-nav-item.active .chevron-icon {
    transform: rotate(180deg);
}

/* Menu Content Sections */
.menus-content-section {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.menus-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menus-menu-section {
    width: 100%;
    margin-bottom: 50px;
}

.menus-menu-content > h3 {
    margin-top: 20px;

}

.menus-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-brand);
    text-align: center;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menus-menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.menus-menu-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menus-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.menus-item-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-brand);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    gap: 20px;
}

.menus-item-price {
    font-weight: 500;
    white-space: nowrap;
}

.menus-item-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    padding-left: 0;
}

/* Menu Galleries */
.menus-gallery {
    width: 100%;
    margin-top: 60px;
}

.menus-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    min-height: 600px;
}

.menus-gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.menus-gallery-item-1 {
    grid-column: 1;
    grid-row: 1;
}

.menus-gallery-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.menus-gallery-item-3 {
    grid-column: 1;
    grid-row: 2;
}

.menus-gallery-item-4 {
    grid-column: 2;
    grid-row: 2;
}

.menus-gallery-item-5 {
    grid-column: 1;
    grid-row: 3;
}

.menus-gallery-item-6 {
    grid-column: 2;
    grid-row: 3;
}

.menus-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    aspect-ratio: 3/1;
}

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

/* Responsive Styles */
@media (max-width: 968px) {
    .menus-hero-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 0;
    }

    .menus-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .menus-hero-decorative-image img {
        max-width: 200px;
        margin-left: 50px;
    }

    .menus-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .menus-hero-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .menus-hero-content {
        margin-top: 0;
    }

    .menus-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .menus-hero-title {
        font-size: 42px;
    }

    .menus-hero-paragraph-1 {
        font-size: 18px;
    }

    .menus-hero-paragraph-2 {
        font-size: 15px;
    }

    .menus-hero-nav {
        gap: 20px;
        margin-top: 40px;
    }

    .menus-hero-nav-item {
        font-size: 14px;
    }

    .menus-gallery {
        margin-top: 40px;
    }

    .menus-gallery-grid {
        gap: 15px;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .menus-hero-section {
        padding: 60px 15px;
    }

    .menus-hero-content {
        margin-top: 0;
    }

    .menus-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .menus-hero-title {
        font-size: 36px;
    }

    .menus-hero-paragraph-1 {
        font-size: 16px;
    }

    .menus-hero-paragraph-2 {
        font-size: 14px;
    }

    .menus-hero-decorative-image img {
        max-width: 150px;
    }

    .menus-hero-nav {
        flex-direction: column;
        gap: 15px;
    }

    .menus-gallery {
        margin-top: 30px;
    }

    .menus-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.5fr 1fr 1fr 1fr;
        gap: 10px;
        min-height: 400px;
    }

    .menus-gallery-item-1 {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .menus-gallery-item-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .menus-gallery-item-3 {
        grid-column: 2;
        grid-row: 2;
    }

    .menus-gallery-item-4 {
        grid-column: 1;
        grid-row: 3;
    }

    .menus-gallery-item-5 {
        grid-column: 2;
        grid-row: 3;
    }

    .menus-gallery-item-6 {
        grid-column: 1 / -1;
        grid-row: 4;
    }
}

@media (max-width: 768px) {
    .menus-gallery {
        margin-top: 40px;
    }

    .menus-gallery-grid {
        gap: 15px;
    }
}

/**
 * Private Events Hero Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Private Events Hero Section
   ============================================ */

/* Private Events Hero Section - extends global hero styles */
.private-events-hero-content {
    margin-top: 100px;
}

/* Navigation Buttons */
.private-events-hero-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.private-events-hero-nav-item {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-brand);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-weight: 400;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.private-events-hero-nav-item .hero-divider {
    width: 100px;
    height: 1px;
    background-color: var(--color-secondary-2);
    margin: 0 0 8px 0;
}

.private-events-hero-nav-item:hover {
    opacity: 0.7;
}

.private-events-hero-nav-item.active {
    opacity: 1;
}

.private-events-hero-nav-item .chevron-icon {
    width: 12px;
    height: 8px;
    color: var(--color-brand);
    transition: transform 0.3s ease;
}

.private-events-hero-nav-item.active .chevron-icon {
    transform: rotate(180deg);
}

/* Content Sections */
.private-events-content-section {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.private-events-content-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.private-events-content-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-brand);
    margin: 0 0 30px 0;
    text-align: center;
}

.private-events-content-body {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-brand);
    width: 100%;
    text-align: center;
    margin: 0 0 20px 0;
}

.private-events-content-body p {
    margin: 0 0 20px 0;
}

.private-events-content-body p:last-child {
    margin-bottom: 0;
}

.private-events-content-image {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.private-events-content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .private-events-hero-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 0;
    }

    .private-events-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .private-events-hero-decorative-image img {
        max-width: 200px;
        margin-left: 50px;
    }

    .private-events-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .private-events-hero-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .private-events-hero-content {
        margin-top: 0;
    }

    .private-events-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .private-events-hero-title {
        font-size: 42px;
    }

    .private-events-hero-paragraph-1 {
        font-size: 18px;
    }

    .private-events-hero-paragraph-2 {
        font-size: 15px;
    }

    .private-events-hero-nav {
        gap: 20px;
        margin-top: 40px;
    }

    .private-events-hero-nav-item {
        font-size: 14px;
    }


    .private-events-content-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .private-events-content-title {
        font-size: 32px;
    }

    .private-events-content-body {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .private-events-content-image {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .private-events-hero-section {
        padding: 60px 15px;
    }

    .private-events-hero-content {
        margin-top: 0;
    }

    .private-events-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .private-events-hero-title {
        font-size: 36px;
    }

    .private-events-hero-paragraph-1 {
        font-size: 16px;
    }

    .private-events-hero-paragraph-2 {
        font-size: 14px;
    }

    .private-events-hero-decorative-image img {
        max-width: 150px;
    }

    .private-events-hero-nav {
        flex-direction: column;
        gap: 15px;
    }


    .private-events-content-container {
        padding: 0 15px;
    }

    .private-events-content-title {
        font-size: 28px;
    }

    .private-events-content-body {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .private-events-content-image {
        margin-top: 15px;
    }
}

/* ============================================
   Private Events Contact Section
   ============================================ */

.private-events-contact-section {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.private-events-contact-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.private-events-contact-intro {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-brand);
    text-align: center;
    margin: 0 0 50px 0;
    max-width: 800px;
}

.private-events-contact-form-wrapper {
    width: 100%;
    max-width: 100%;
}

/* Contact Form 7 Styles */
.private-events-contact-form-wrapper .wpcf7 {
    width: 100%;
}

.private-events-contact-form-wrapper .wpcf7-form {
    background-color: #ffffff;
    border: 1px solid var(--color-secondary-4);
    padding: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.private-events-contact-form-wrapper .wpcf7-form p {
    margin: 0;
  }
  
  .private-events-contact-form-wrapper .wpcf7-form p.full-width {
    grid-column: 1 / -1;
  }
  

/* Full-width fields (span both columns) - using :has() for modern browsers */
.private-events-contact-form-wrapper .wpcf7-form-control-wrap:has(textarea),
.private-events-contact-form-wrapper .wpcf7-form-control-wrap.full-width {
    grid-column: 1 / -1;
}

/* Alternative approach: target textarea directly and make its parent span */
.private-events-contact-form-wrapper .wpcf7 textarea {
    width: 100%;
}

/* For browsers without :has() support, we'll use a class-based approach */
/* Add class "full-width" to form control wraps that should span both columns */

/* Make form control wraps take full width of their grid cell */
.private-events-contact-form-wrapper .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Labels */
.private-events-contact-form-wrapper .wpcf7 label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-brand);
    margin-bottom: 8px;
    display: block;
}

.private-events-contact-form-wrapper .wpcf7 label .wpcf7-form-control {
    margin-top: 8px;
}

/* Ensure labels with required asterisk display properly */
.private-events-contact-form-wrapper .wpcf7 label .wpcf7-required {
    color: var(--color-brand);
}

/* Input fields */
.private-events-contact-form-wrapper .wpcf7 input[type="text"],
.private-events-contact-form-wrapper .wpcf7 input[type="email"],
.private-events-contact-form-wrapper .wpcf7 input[type="tel"],
.private-events-contact-form-wrapper .wpcf7 input[type="date"],
.private-events-contact-form-wrapper .wpcf7 input[type="time"],
.private-events-contact-form-wrapper .wpcf7 input[type="number"],
.private-events-contact-form-wrapper .wpcf7 select,
.private-events-contact-form-wrapper .wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-brand);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.private-events-contact-form-wrapper .wpcf7 input[type="text"]:focus,
.private-events-contact-form-wrapper .wpcf7 input[type="email"]:focus,
.private-events-contact-form-wrapper .wpcf7 input[type="tel"]:focus,
.private-events-contact-form-wrapper .wpcf7 input[type="date"]:focus,
.private-events-contact-form-wrapper .wpcf7 input[type="time"]:focus,
.private-events-contact-form-wrapper .wpcf7 input[type="number"]:focus,
.private-events-contact-form-wrapper .wpcf7 select:focus,
.private-events-contact-form-wrapper .wpcf7 textarea:focus {
    border-color: var(--color-secondary-4);
}

.private-events-contact-form-wrapper .wpcf7 input::placeholder,
.private-events-contact-form-wrapper .wpcf7 textarea::placeholder {
    color: #999;
    font-style: normal;
}

/* Select dropdown */
.private-events-contact-form-wrapper .wpcf7 select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Date and Time inputs */
.private-events-contact-form-wrapper .wpcf7 input[type="date"],
.private-events-contact-form-wrapper .wpcf7 input[type="time"] {
    position: relative;
}

.private-events-contact-form-wrapper .wpcf7 input[type="date"]::-webkit-calendar-picker-indicator,
.private-events-contact-form-wrapper .wpcf7 input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
}

/* Textarea */
.private-events-contact-form-wrapper .wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit button */
.private-events-contact-form-wrapper .wpcf7-submit {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-secondary-4);
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    margin: 20px auto 0;
    display: block;
    transition: opacity 0.3s ease;
    text-align: center;
    grid-column: 1 / -1;
    justify-self: center;
}

.private-events-contact-form-wrapper .wpcf7-submit:hover {
    opacity: 0.7;
}

/* Validation messages */
.private-events-contact-form-wrapper .wpcf7-not-valid-tip {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #d32f2f;
    margin-top: 5px;
}

.private-events-contact-form-wrapper .wpcf7-validation-errors,
.private-events-contact-form-wrapper .wpcf7-mail-sent-ok {
    font-family: var(--font-primary);
    font-size: 14px;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0;
}

.private-events-contact-form-wrapper .wpcf7-validation-errors {
    background-color: #ffebee;
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

.private-events-contact-form-wrapper .wpcf7-mail-sent-ok {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

/* Responsive styles */
@media (max-width: 768px) {

    .private-events-contact-form-wrapper .wpcf7-form {
        padding: 40px 30px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .private-events-contact-form-wrapper .wpcf7-form-control-wrap:has(textarea),
    .private-events-contact-form-wrapper .wpcf7-form-control-wrap.full-width {
        grid-column: 1;
    }

    .private-events-contact-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {

    .private-events-contact-form-wrapper .wpcf7-form {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .private-events-contact-form-wrapper .wpcf7-form-control-wrap:has(textarea),
    .private-events-contact-form-wrapper .wpcf7-form-control-wrap.full-width {
        grid-column: 1;
    }

    .private-events-contact-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

/**
 * Our Space Hero Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Our Space Hero Section
   ============================================ */

/* Our Space Hero Section - extends global hero styles */
/* All styles inherited from global hero classes */

/**
 * Terrace Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Terrace Section
   ============================================ */

.terrace-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terrace-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.terrace-section .section-title {
    text-align: left;
    align-self: flex-start;
    width: 100%;
}

.terrace-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.terrace-image-item {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1.5;
}

.terrace-image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.terrace-image-item:hover img {
    transform: scale(1.02);
}

.terrace-description {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 0;
    max-width: 900px;
    text-align: center;
    font-weight: 400;
    align-self: center;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .terrace-section {
        padding: 80px 20px;
    }

    .terrace-section .section-title {
        margin-bottom: 50px;
    }

    .terrace-images {
        gap: 15px;
    }

    .terrace-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .terrace-section {
        padding: 60px 20px;
    }

    .terrace-section .section-title {
        margin-bottom: 40px;
    }

    .terrace-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .terrace-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .terrace-section {
        padding: 50px 15px;
    }

    .terrace-section .section-title {
        margin-bottom: 30px;
    }

    .terrace-images {
        gap: 15px;
        margin-bottom: 25px;
    }

    .terrace-description {
        font-size: 14px;
    }
}

/**
 * Bar Information Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Bar Information Section (inside Terrace)
   ============================================ */

.bar-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    margin-top: 20px;
}

.bar-info-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bar-info-block-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.bar-info-block-center::before,
.bar-info-block-center::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0e0e0;
}

.bar-info-block-center::before {
    left: -20px;
}

.bar-info-block-center::after {
    right: -20px;
}

.bar-info-label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-brand);
    font-weight: 400;
}

.bar-info-text {
    font-family: var(--font-heading);
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: -1px;
    color: var(--color-brand);
    margin: 0;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .bar-info-blocks {
        gap: 30px;
        margin-top: 25px;
    }

    .bar-info-block-center::before {
        left: -15px;
    }

    .bar-info-block-center::after {
        right: -15px;
    }

    .bar-info-label,
    .bar-info-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .bar-info-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    .bar-info-block-center::before,
    .bar-info-block-center::after {
        display: none;
    }

    .bar-info-block {
        text-align: left;
        padding-bottom: 30px;
        border-bottom: 1px solid #e0e0e0;
    }

    .bar-info-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .bar-info-block-center {
        text-align: left;
    }

    .bar-info-label,
    .bar-info-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .bar-info-blocks {
        gap: 25px;
        margin-top: 15px;
    }

    .bar-info-block {
        padding-bottom: 25px;
    }

    .bar-info-label,
    .bar-info-text {
        font-size: 14px;
    }
}

/**
 * Pergola Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Pergola Section
   ============================================ */

.pergola-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pergola-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pergola-section .section-title {
    text-align: left;
    align-self: flex-start;
    width: 100%;
}

.pergola-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.pergola-image-item {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pergola-image-large {
    grid-column: 1 / -1;
}

/* Ensure images 2 and 3 have the same height */
.pergola-image-item:not(.pergola-image-large) {
    aspect-ratio: 1 / 1.5;
}

.pergola-image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pergola-image-item:hover img {
    transform: scale(1.02);
}

.pergola-description {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 0;
    max-width: 900px;
    text-align: center;
    font-weight: 400;
    align-self: center;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .pergola-section {
        padding: 80px 20px;
    }

    .pergola-section .section-title {
        margin-bottom: 50px;
    }

    .pergola-images {
        gap: 15px;
    }

    .pergola-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .pergola-section {
        padding: 60px 20px;
    }

    .pergola-section .section-title {
        margin-bottom: 40px;
    }

    .pergola-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pergola-image-large {
        grid-column: 1;
    }

    .pergola-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pergola-section {
        padding: 50px 15px;
    }

    .pergola-section .section-title {
        margin-bottom: 30px;
    }

    .pergola-images {
        gap: 15px;
    }

    .pergola-description {
        font-size: 14px;
    }
}

/**
 * Our Space Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Our Space Section
   ============================================ */

   .our-space-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    perspective: 1000px;
}

.our-space-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Jar Image */
.our-space-jar {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    display: block;
    width: auto;
    height: auto;
}

.our-space-jar img {
    max-width: 200px;
    min-width: 100px;
    width: auto;
    height: auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Image styles are now in .decorative-image component */

/* Content */
.our-space-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading */
.our-space-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-brand);
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-space-heading .heading-line1,
.our-space-heading .heading-line2 {
    display: block;
}

.our-space-heading .heading-line2 {
    margin-top: 5px;
}

/* Divider */
.our-space-divider {
    width: 80px;
    height: 1px;
    background-color: var(--color-secondary-2);
    margin: 0 0 40px 0;
}

/* Description */
.our-space-description {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 0 0 30px 0;
    max-width: 700px;
    font-weight: 300;
}

/* Opening Date */
.our-space-opening-date {
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: italic;
    color: var(--color-secondary-3);
    margin: 0;
    font-weight: 300;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .our-space-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .our-space-jar {
        margin-bottom: 40px;
    }

    .our-space-jar img {
        max-width: 150px;
    }

    .our-space-heading {
        font-size: 36px;
    }

    .our-space-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .our-space-divider {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .our-space-section {
        padding: 40px 15px;
    }

    .our-space-jar {
        margin-bottom: 30px;
    }

    .our-space-jar img {
        max-width: 120px;
    }

    .our-space-heading {
        font-size: 28px;
    }

    .our-space-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .our-space-opening-date {
        font-size: 13px;
    }
}

/**
 * Our Space Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Our Space Section
   ============================================ */

   .our-space-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    perspective: 1000px;
}

.our-space-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Jar Image */
.our-space-jar {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    display: block;
    width: auto;
    height: auto;
}

.our-space-jar img {
    max-width: 200px;
    min-width: 100px;
    width: auto;
    height: auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Image styles are now in .decorative-image component */

/* Content */
.our-space-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading */
.our-space-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-brand);
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-space-heading .heading-line1,
.our-space-heading .heading-line2 {
    display: block;
}

.our-space-heading .heading-line2 {
    margin-top: 5px;
}

/* Divider */
.our-space-divider {
    width: 80px;
    height: 1px;
    background-color: var(--color-secondary-2);
    margin: 0 0 40px 0;
}

/* Description */
.our-space-description {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 0 0 30px 0;
    max-width: 700px;
    font-weight: 300;
}

/* Opening Date */
.our-space-opening-date {
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: italic;
    color: var(--color-secondary-3);
    margin: 0;
    font-weight: 300;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .our-space-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .our-space-jar {
        margin-bottom: 40px;
    }

    .our-space-jar img {
        max-width: 150px;
    }

    .our-space-heading {
        font-size: 36px;
    }

    .our-space-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .our-space-divider {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .our-space-section {
        padding: 40px 15px;
    }

    .our-space-jar {
        margin-bottom: 30px;
    }

    .our-space-jar img {
        max-width: 120px;
    }

    .our-space-heading {
        font-size: 28px;
    }

    .our-space-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .our-space-opening-date {
        font-size: 13px;
    }
}


/**
 * Menus Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Menus Section
   ============================================ */

.menus-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.menus-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Title */
.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-brand);
    font-style: italic;
}

/* Image */
.menus-image {
    width: 100%;
    overflow: hidden;
}

.menus-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Description */
.menus-description {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 10px 0 10px 0;
    font-weight: 300;
    text-align: center;
    align-self: center;
    max-width: 700px;
}

/* Call to Action */
.menus-cta {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
    font-weight: 300;
    align-self: center;
}

.menus-cta:hover {
    opacity: 0.7;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .menus-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .section-title {
        font-size: 48px;
    }

    .menus-image {
        margin-bottom: 30px;
    }

    .menus-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .menus-cta {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .menus-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 36px;
    }

    .menus-image {
        margin-bottom: 25px;
    }

    .menus-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .menus-cta {
        font-size: 14px;
    }
}

/**
 * Private Events Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Private Events Section
   ============================================ */

.private-events-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.private-events-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Image */
.private-events-image {
    width: 100%;
    overflow: hidden;
}

.private-events-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Description */
.private-events-description {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 10px 0 10px 0;
    font-weight: 300;
    text-align: center;
    align-self: center;
    max-width: 700px;
}

/* Call to Action */
.private-events-cta {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
    font-weight: 300;
    align-self: center;
}

.private-events-cta:hover {
    opacity: 0.7;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .private-events-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .private-events-image {
        margin-bottom: 30px;
    }

    .private-events-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .private-events-cta {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .private-events-section {
        padding: 40px 15px;
    }

    .private-events-image {
        margin-bottom: 25px;
    }

    .private-events-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .private-events-cta {
        font-size: 14px;
    }
}

/**
 * Gallery Section Styles
 *
 * @package Mandarine_Marina_Bay
 */

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.gallery-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.5fr 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 60px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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


/* Description */
.gallery-description {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-brand);
    margin: 0 0 30px 0;
    max-width: 800px;
    font-weight: 300;
    text-align: center;
    align-self: center;
}

/* CTA Link */
.gallery-cta {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
    font-weight: 300;
    align-self: center;
}

.gallery-cta:hover {
    opacity: 0.7;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .section-title {
        font-size: 48px;
    }

    .gallery-grid {
        gap: 15px;
        margin-bottom: 40px;
    }

    .gallery-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .gallery-cta {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.5fr 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }

    .gallery-item {
        min-height: 0;
    }

    .gallery-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .gallery-cta {
        font-size: 14px;
    }
}

/* ============================================
   Intro Section Styles
   ============================================ */

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary-1); /* Dark teal/forest green */
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

/* Show intro overlay if user hasn't seen it yet */
html.show-intro .intro-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.intro-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-skip-btn {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.intro-skip-btn:hover {
    opacity: 0.7;
}

.intro-pause-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 8px 12px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    z-index: 10001;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    display: none;
}

.intro-pause-btn:hover {
    opacity: 0.7;
}

.pause-icon {
    display: block;
    line-height: 1;
}

.pause-icon::before {
    content: '⏸';
    display: block;
}

.intro-pause-btn.paused .pause-icon::before {
    content: '▶';
}

.intro-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
    margin-top: 80px;
}

.intro-logo {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.intro-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-logo img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.intro-line {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    font-weight: 300;
}

.intro-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-gaia {
    font-size: 64px;
    letter-spacing: 8px;
    margin-top: 20px;
    font-weight: 400;
    position: relative;
}

/* Responsive Styles for Intro */
@media (max-width: 768px) {
    .intro-skip-btn {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 16px;
        font-size: 12px;
    }

    .intro-pause-btn {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 14px;
    }

    .intro-logo {
        margin-bottom: 30px;
    }

    .intro-line {
        font-size: 24px;
    }

    .intro-gaia {
        font-size: 48px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .intro-skip-btn {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 12px;
        font-size: 11px;
    }

    .intro-pause-btn {
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        padding: 5px 8px;
        font-size: 12px;
    }

    .intro-logo img {
        max-width: 130px;
    }

    .intro-logo {
        margin-bottom: 25px;
    }

    .intro-line {
        font-size: 20px;
    }

    .intro-gaia {
        font-size: 36px;
        letter-spacing: 2px;
    }
}

/* ============================================
   Footer Styles
   ============================================ */

.site-footer {
    width: 100%;
    background-color: var(--color-white);
    padding: 80px 40px 60px;
    font-family: var(--font-heading);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-brand);
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: var(--color-secondary-2);
}

.footer-columns {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-divider-vertical {
    width: 1px;
    height: 100%;
    min-height: 60px;
    background-color: var(--color-secondary-2);
    flex-shrink: 0;
}

.footer-label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-brand);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-value {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-brand);
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.footer-value:last-child {
    margin-bottom: 0;
}

/* Dress code section */
.dress-code {
    margin-top: 0;
}

.dress-code .footer-value {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Footer Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 30px 50px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-section {
        align-items: flex-start;
        text-align: left;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 25px;
        align-self: center;
    }

    .footer-columns {
        gap: 20px;
        justify-content: flex-start;
    }

    .footer-column {
        align-items: flex-start;
        text-align: left;
    }

    .footer-divider-vertical {
        min-height: 50px;
    }

    .footer-label,
    .footer-value {
        font-size: 13px;
    }

    .dress-code .footer-value {
        text-align: left;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 50px 20px 40px;
    }

    .footer-top {
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section {
        align-items: flex-start;
        text-align: left;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
        align-self: center;
    }

    .footer-columns {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .footer-column {
        align-items: center;
        text-align: center;
        flex: 1;
    }

    .footer-divider-vertical {
        width: 1px;
        height: 100%;
        min-height: 60px;
    }

    .footer-label,
    .footer-value {
        font-size: 12px;
    }

    .dress-code .footer-value {
        text-align: left;
        margin-left: 0;
    }
}

/* ============================================
   Global Fade-In Animation Styles
   ============================================ */

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Staggered delay variants for sequential animations */
.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}

/* Faster animation variant */
.fade-in-fast {
    transition-duration: 0.5s;
}

/* Slower animation variant */
.fade-in-slow {
    transition-duration: 1.2s;
}

/* Make all text elements within fade-in containers inherit the animation */
.fade-in p,
.fade-in h1,
.fade-in h2,
.fade-in h3,
.fade-in h4,
.fade-in h5,
.fade-in h6 {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible p,
.fade-in.visible h1,
.fade-in.visible h2,
.fade-in.visible h3,
.fade-in.visible h4,
.fade-in.visible h5,
.fade-in.visible h6 {
    opacity: 1;
}

/* Staggered delays for child elements */
.fade-in.visible p:nth-child(1) { transition-delay: 0.1s; }
.fade-in.visible p:nth-child(2) { transition-delay: 0.2s; }
.fade-in.visible p:nth-child(3) { transition-delay: 0.3s; }
.fade-in.visible p:nth-child(4) { transition-delay: 0.4s; }
.fade-in.visible p:nth-child(5) { transition-delay: 0.5s; }

/* ============================================
   News Archive Styles
   ============================================ */

.news-archive-content {
    padding: 80px 0;
    background-color: #fff;
}

.news-archive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-archive-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 60px;
    margin-bottom: 80px;
    align-items: start;
}

.news-archive-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.news-archive-item:last-child {
    margin-bottom: 0;
}

/* Sticky left post */
.news-archive-item-sticky {
    position: sticky;
    top: 120px;
    align-self: start;
}

/* Right column wrapper */
.news-archive-right-column {
    display: flex;
    flex-direction: column;
}

.news-archive-right-column .news-archive-item {
    margin-bottom: 100px;
}

.news-archive-right-column .news-archive-item:last-child {
    margin-bottom: 0;
}

.news-archive-item-image {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

.news-archive-item-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-archive-item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-archive-item-category {
    font-family: 'StempelSchneidler', serif;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-archive-item-title {
    font-family: 'StempelSchneidler', serif;
    font-size: 36px;
    line-height: 1.2;
    margin: 0;
    font-weight: normal;
    color: #000;
    letter-spacing: 1px;
}

.news-archive-item-text {
    font-size: 14px;
    color: #333;
    font-family: var(--font-primary);
}

.news-archive-item-text p {
    margin: 0 0 20px 0;
}

.news-archive-item-text p:last-child {
    margin-bottom: 0;
}

.news-archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.news-archive-pagination .nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.news-archive-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.news-archive-pagination .page-numbers:hover,
.news-archive-pagination .page-numbers.current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.news-archive-empty {
    padding: 80px 0;
    text-align: center;
}

.news-archive-empty p {
    font-size: 18px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .news-archive-container {
        padding: 0 30px;
    }

    .news-archive-layout {
        gap: 60px 40px;
    }

    .news-archive-item {
        margin-bottom: 80px;
    }

    .news-archive-item-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .news-archive-content {
        padding: 60px 0;
    }

    .news-archive-container {
        padding: 0 20px;
    }

    .news-archive-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .news-archive-item {
        margin-bottom: 60px;
    }

    .news-archive-item-sticky {
        position: static;
        top: auto;
    }

    .news-archive-right-column .news-archive-item {
        margin-bottom: 60px;
    }

    .news-archive-item-category {
        font-size: 16px;
    }

    .news-archive-item-title {
        font-size: 28px;
    }

    .news-archive-item-image {
        margin-bottom: 30px;
    }
}

/* ============================================
   News Hero Section Styles
   ============================================ */

/* News Hero Section - extends global hero styles */
.news-hero-content {
    margin-top: 100px;
}

/* Responsive Styles for News Hero */
@media (max-width: 968px) {
    .news-hero-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 0;
    }

    .news-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .news-hero-decorative-image img {
        max-width: 200px;
        margin-left: 50px;
    }

    .news-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .news-hero-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .news-hero-content {
        margin-top: 0;
    }

    .news-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .news-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .news-hero-section {
        padding: 60px 15px;
    }

    .news-hero-content {
        margin-top: 0;
    }

    .news-hero-decorative-image-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .news-hero-title {
        font-size: 36px;
    }

    .news-hero-decorative-image img {
        max-width: 150px;
    }
}