/* Custom Font Face */
@font-face {
    font-family: 'Juli';
    src: url('../img/Juli-Regular.otf') format('opentype'),
         url('../img/Juli-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Back to spaces link wrapper for top left positioning */
.back-link-wrapper {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1100;
}

/* Visually Hidden - SEO-friendly hidden content */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* Foodtruck Palette */
    --primary-teal: #0d0d0b;
    --primary-teal-dark: #0d0d0b;
    --primary-teal-light: #f7ee5c;
    
    --accent-cream: #fff3e1;
    --warm-white: #fffdf8;
    --light-background: #fff7ed;
    
    --text-dark: #1c1c1c;
    --text-medium: #3a3a3a;
    --text-light: #6b6b6b;
    
    --accent-gold: #f7ee5c;
    --success-green: #2e7d32;
    
    /* Legacy variables for compatibility */
    --primary-rose: #f7ee5c;
    --primary-purple: #f4a261;
    --soft-cream: #fff3e1;
    --primary-color: #e63946;
    
    /* Shadows */
    --shadow-light: 0 6px 16px rgba(17, 17, 17, 0.08);
    --shadow-medium: 0 12px 30px rgba(17, 17, 17, 0.16);
    --shadow-heavy: 0 18px 40px rgba(17, 17, 17, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    transition: opacity 0.15s ease;
    color: #000000;
    background-color: #FFFFFF;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { 
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

h2 { 
    font-size: 2.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

h3 { 
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

h4 { 
    font-size: 1.5rem;
    font-weight: 600;
}

h5 { 
    font-size: 1.25rem;
    font-weight: 600;
}

h6 { 
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* Script accent class for decorative text */
.script-accent {
    font-family: 'Juli', 'Manrope', sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 32px !important;
    color: var(--primary-teal) !important;
    line-height: 1.3 !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: 'Manrope', sans-serif;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-teal-dark);
    border: 2px solid var(--accent-gold);
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: #e8aa28;
    color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    border: 2px solid #e8aa28;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary-rose);
    border: 2px solid var(--primary-rose);
}

.btn-outline:hover {
    background: var(--primary-rose);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(232, 180, 192, 0.1);
}


.navbar .container.navbar-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.nav-brand-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
    width: 100%;
}

.nav-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    position: relative;
}

.nav-back-link {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1002;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.nav-actions {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.navbar-vertical .nav-actions {
    position: static;
    height: auto;
    margin-top: 1rem;
}

.navbar-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-horizontal .nav-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    width: auto;
}

.navbar-horizontal .nav-actions {
    position: static;
    height: auto;
}

.navbar-horizontal .nav-menu {
    justify-content: flex-end;
    gap: 1.5rem;
    width: auto;
    margin: 0;
}

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

.brand-mark {
    font-family: 'Bebas Neue', 'Manrope', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.brand-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-light);
}

.nav-cta {
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo.logo-large {
    height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
}

.nav-logo {
    height: 90px !important;
    width: auto !important;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-rose);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link.active {
    color: var(--primary-rose);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                 0 0 5px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    background: var(--primary-teal);
    height: 3px;
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--light-background);
    color: var(--primary-rose);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-rose);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 1rem;
    position: relative;
    z-index: 1001;
}

.lang-switcher:hover {
    background: var(--primary-rose);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 180, 192, 0.3);
}

.lang-switcher:focus,
.lang-switcher:active {
    outline: none;
    background: transparent;
}

.lang-option {
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    position: relative;
}

.lang-switcher:hover .lang-option {
    color: white;
}

.lang-option.active {
    color: var(--text-dark);
    font-weight: 800;
    background: transparent;
    transform: scale(1);
}

.lang-switcher:hover .lang-option.active {
    color: white;
    background: transparent;
}

.lang-separator {
    color: var(--text-dark);
    font-weight: 300;
}

.lang-switcher:hover .lang-separator {
    color: white;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-mobile {
    display: none !important;
}

.hero-video-desktop {
    display: block;
}

/* Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.active .hero-image {
    animation: zoomIn 8s ease-out forwards;
    transform-origin: center center;
}

/* Slideshow Controls */
.slideshow-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    
    backdrop-filter: blur(5px);
}

.slideshow-control:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-control.prev {
    left: 2rem;
}

.slideshow-control.next {
    right: 2rem;
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.3);
    width: 30px;
    
}

.indicator.active::before {
    width: 100%;
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.25)
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                 0 0 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    color: var(--primary-rose);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 1;
    animation: fadeInUp 1s ease-out 0.1s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                 0 0 5px rgba(0, 0, 0, 0.5);
    color: white;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 5;
}

/* Foodtruck Hero */
.hero-foodtruck {
    min-height: 95vh;
}

.hero-foodtruck .hero-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
}

.hero-foodtruck-bg {
    background: radial-gradient(circle at top, rgba(255, 243, 225, 0.45), rgba(0, 0, 0, 0.7)),
                linear-gradient(120deg, #1a1a1a, #3d0c11 45%, #e63946 100%);
    background-size: cover;
    background-position: center;
}

.hero-badge {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    display: inline-flex;
    color: white;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
    justify-content: center;
}

.pill {
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
.section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.bg-dark {
    background: #121212;
    color: white;
}

.bg-dark h2,
.bg-dark p {
    color: white;
}

.section-header h2 {
    color: var(--primary-rose);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                 0 0 5px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Menu */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.menu-tab {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-tab:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.menu-tab.active {
    background: var(--primary-rose);
    color: white;
    border-color: var(--primary-rose);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                 0 0 5px rgba(0, 0, 0, 0.5);
}

.menu-panels {
    max-width: 820px;
    margin: 0 auto;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.menu-column {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow-light);
}

.menu-item {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.menu-item-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
}

.menu-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item-media {
    width: 140px;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-light);
    flex-shrink: 0;
}

.menu-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-item-media.placeholder {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.25), rgba(246, 185, 59, 0.25));
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    text-transform: lowercase;
}

.menu-item-head span:first-child {
    flex: 1;
    min-width: 0;
}

.price {
    flex-shrink: 0;
    white-space: nowrap;
}

.menu-item-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.menu-section-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.price {
    color: var(--primary-rose);
    font-weight: 700;
}

.menu-deal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: var(--primary-rose);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1.5rem;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
}

.menu-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Story */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.story-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.story-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.story-list i {
    color: var(--primary-rose);
    margin-right: 0.6rem;
}

.story-highlight {
    background: var(--primary-teal);
    color: white;
}

.story-highlight h3,
.story-highlight p {
    color: white;
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.schedule-card {
    background: var(--warm-white);
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    box-shadow: var(--shadow-light);
}

.schedule-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.schedule-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

/* Media Section */
.media-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.media-visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: #0f0f0f;
}

.media-visual video,
.media-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-visual video {
    aspect-ratio: 16 / 9;
}

.media-copy h3 {
    margin-bottom: 1rem;
}

.media-copy p {
    margin-bottom: 1.5rem;
}

.media-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    color: var(--text-medium);
}

.media-list li::before {
    content: "•";
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

/* Catering */
.cta-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(230, 57, 70, 0.95), rgba(26, 26, 26, 0.95));
    box-shadow: var(--shadow-heavy);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer */
.footer-brand {
    font-family: 'Bebas Neue', 'Manrope', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-rose);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                 0 0 5px rgba(0, 0, 0, 0.5);
}

.section-subtitle, .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.bg-light {
    background-color: #FFFFFF;
}

/* About Section */
/* About Section */
.about-subsection {
    margin-bottom: 5rem;
}

.about-subsection:last-child {
    margin-bottom: 0;
}

/* About headings: use normal weight (remove bold) */
.about-subsection .section-header h2 {
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: stretch;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-rose);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    transition: var(--transition-fast);
}

.feature:hover {
    background: var(--light-beige);
    transform: translateY(-3px);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-rose);
    margin-top: 0.25rem;
    min-width: 2rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    height: 100%;
}

.about-image img {
    transition: var(--transition-medium);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure team photo keeps visible subjects (favor right side of image) */
.about-image img.team-photo {
    /* favor left but move slightly toward center so subjects are balanced */
    object-position: 30% center;
    /* no transform: keep natural image scale */
}

.about-image:hover {
    box-shadow: 0 15px 40px rgba(74, 109, 110, 0.2);
    transform: translateY(-5px);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Philosophy Section */
.philosophy-content {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-content .lead {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: var(--text-secondary);
}

/* Philosophy Videos */
.philosophy-videos {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    position: relative;
    background: white;
    
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-content {
    padding: 2rem;
    text-align: center;
}

.video-card h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    text-transform: lowercase;
}

.video-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.philosophy-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
    margin-top: 3rem;
    position: relative;
}

/* Connecting lines between items */
.philosophy-process::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, 
        var(--primary-teal) 0%, 
        transparent 20%,
        var(--primary-teal) 40%,
        transparent 60%,
        var(--primary-teal) 80%,
        transparent 100%);
    opacity: 0.2;
    z-index: 0;
}

.philosophy-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out backwards;
    z-index: 1;
}

.philosophy-item[data-step="1"] {
    animation-delay: 0.1s;
}

.philosophy-item[data-step="2"] {
    animation-delay: 0.2s;
}

.philosophy-item[data-step="3"] {
    animation-delay: 0.3s;
}

.philosophy-item[data-step="4"] {
    animation-delay: 0.4s;
}

.philosophy-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    
    background: white;
    border: 3px solid var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(74, 109, 110, 0.15);
}

.philosophy-item:hover .philosophy-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(74, 109, 110, 0.25);
    border-width: 4px;
}

.circle-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    font-family: 'Manrope', sans-serif;
}

.philosophy-content-box {
    flex: 1;
    padding-top: 0.5rem;
}

.philosophy-content-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.philosophy-content-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 1) !important;
        backdrop-filter: none !important;
    }
    
    .logo.logo-large {
        height: 50px !important;
        width: auto !important;
        object-fit: contain !important;
    }
    
    .navbar .container.navbar-vertical {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-top: 0;
    }
    
    .nav-brand-vertical {
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .nav-content {
        width: auto;
        position: static;
    }

    .nav-back-link {
        left: 0;
        bottom: 0;
    }
    
    .nav-actions {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        height: auto;
    }
    
    .philosophy-videos {
        gap: 2.5rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .video-content {
        padding: 1.5rem;
    }
    
    .philosophy-process {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-process::before {
        left: 40px;
        top: 80px;
        height: calc(100% - 160px);
    }
    
    .philosophy-circle {
        width: 70px;
        height: 70px;
    }
    
    .circle-number {
        font-size: 1.3rem;
    }
    
    .philosophy-content-box h3 {
        font-size: 1.2rem;
    }
}

/* Services Section */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-rose);
    background: transparent;
    color: var(--primary-rose);
    
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-rose);
    color: white;
}

.services-content {
    display: none;
}

.services-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-item-content {
    padding: 1.5rem;
}

.service-item h3 {
    color: var(--primary-rose);
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--elegant-purple);
    margin-top: 1rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    background: #000000;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Project Item with Slideshow */
.project-item {
    overflow: hidden;
}

.project-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}

.project-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.project-slide.active {
    opacity: 1;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Slideshow Controls */
.project-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    
    backdrop-filter: blur(5px);
    opacity: 0;
}

.project-item:hover .project-control {
    opacity: 1;
}

.project-control:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.project-control.prev {
    left: 1rem;
}

.project-control.next {
    right: 1rem;
}

/* Project Slideshow Indicators */
.project-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.project-indicator {
    width: 8px;
    height: 8px;
    
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.project-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.project-indicator.active {
    background: white;
    width: 20px;
    
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: var(--transition-fast);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

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

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: lowercase;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-role {
    color: var(--primary-rose);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.team-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--primary-rose);
    color: white;
    
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--elegant-purple);
    transform: translateY(-2px);
}

/* Appointments Section */
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    
    box-shadow: var(--shadow-light);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-rose);
    margin-bottom: 1rem;
}

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

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.info-card a {
    color: var(--primary-rose);
    transition: var(--transition-fast);
}

.info-card a:hover {
    color: var(--elegant-purple);
}

.appointment-form-container {
    background: white;
    padding: 2rem;
    
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.appointment-form h3 {
    color: var(--primary-rose);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-rose);
    box-shadow: 0 0 0 3px rgba(232, 180, 192, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-rose);
    margin-top: 0.25rem;
    min-width: 1.5rem;
}

.detail-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: white;
    
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: 1.25rem;
}

.social-icons a:hover {
    background: rgba(74, 109, 110, 0.8);
    transform: translateY(-2px);
}

.map-container {
    
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 400px;
}

.map-container iframe {
    
}

/* Footer */
.footer {
    background: #FFFFFF;
    color: var(--text-dark);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-medium);
    transition: var(--transition-fast);
}

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

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-teal);
}

.footer-section p {
    color: var(--text-medium);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-medium);
    transition: var(--transition-fast);
}

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

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

#loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-rose);
    
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .lang-switcher {
        position: relative;
        z-index: 1001;
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
        margin-left: 0;
        border: none;
        background: transparent;
    }

    .lang-switcher:hover,
    .lang-switcher:focus,
    .lang-switcher:active {
        background: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .lang-option.active {
        background: transparent !important;
        color: var(--text-dark) !important;
    }

    .lang-switcher .lang-option {
        color: var(--text-dark) !important;
    }

    .lang-switcher .lang-separator {
        color: var(--text-dark) !important;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-fast);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-logo {
        max-width: 280px;
        padding: 1rem 1.5rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

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

    .slideshow-control {
        display: none;
    }

    .about-grid,
    .appointment-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-subsection {
        margin-bottom: 3rem;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-video-desktop {
        display: none !important;
    }

    .hero-video-mobile {
        display: block !important;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Project Page Styles */
.project-page {
    padding: 0;
    min-height: 100vh;
    background-color: #FFFFFF;
}

/* Project Hero Section */
.project-hero {
    background-color: #FFFFFF;
    padding: 150px 0 60px;
    border-bottom: 1px solid #000000;
    margin-top: 60px;
}

.project-hero-content {
    text-align: left;
}

.project-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    color: #000000;
}

.project-meta {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.meta-value {
    font-size: 1.1rem;
    color: #000000;
    text-transform: capitalize;
}

/* Project Description */
.project-description {
    padding: 80px 0 60px;
    max-width: 800px;
    margin: 0 auto;
}

.project-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.project-logo {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-logo img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .project-logo {
        padding-bottom: 40px;
        border-bottom: 1px solid #000000;
    }
}

/* Project Page Styles - New Hero Banner Layout */
.project-page {
    margin-top: 100px;
}

.project-hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-banner-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    color: var(--white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-title {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    margin-bottom: 20px;
    color: #000000;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.project-meta {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 0;
}

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

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #000000;
    font-weight: 500;
}

.meta-value {
    font-size: 14px;
    color: #000000;
    font-weight: 300;
}

.gallery-grid-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid-simple .gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    align-self: start;
}

@media (min-width: 768px) {
    .gallery-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: start;
    }

    .gallery-image-full {
        grid-column: 1 / -1;
    }

    .project-title {
        font-size: 80px;
    }
}

/* Project Description */
.project-description {
    padding: 60px 0;
    max-width: 800px;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* Project Gallery */
.project-gallery {
    padding: 60px 0 80px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Gallery Row Structure */
.gallery-row {
    border-bottom: 1px solid #000000;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.gallery-row:last-child {
    border-bottom: none;
}

.gallery-panel {
    width: 100%;
}

/* Two-up image row (stay side-by-side) */
.gallery-row.two-up-row {
    flex-direction: column;
    gap: 20px;
}

.gallery-row.two-up-row .gallery-panel {
    flex: 1;
    width: 100%;
}

@media (min-width: 768px) {
    .gallery-row.two-up-row {
        flex-direction: row;
        gap: 20px;
    }

    .gallery-row.two-up-row .gallery-panel {
        flex: 1;
        width: auto;
    }
}

/* Two-up row: desktop only */
.gallery-row.two-up-desktop-row {
    gap: 20px;
}

@media (min-width: 768px) {
    .gallery-row.two-up-desktop-row {
        flex-direction: row;
    }

    .gallery-row.two-up-desktop-row .gallery-panel {
        flex: 1;
    }

    /* Hide hero image row on desktop */
    .gallery-row.hero-gallery-row {
        display: none;
    }
}

.gallery-panel.full-width {
    width: 100%;
}

.gallery-panel.split {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.gallery-info-panel {
    display: none;
}

/* Layout Types */
.gallery-row.full-width-row {
    border-bottom: none;
    padding: 40px 0;
}

.gallery-row.mixed-row {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #000000;
    padding: 40px 0;
    gap: 40px;
    align-items: center;
}

.gallery-row.grid-row {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #000000;
    padding: 40px 0;
    gap: 20px;
}

.gallery-row.full-width-row + .gallery-row {
    border-top: 1px solid #000000;
    padding-top: 60px;
}

.gallery-panel.description-panel {
    flex: 1;
}

.gallery-panel.image-panel {
    flex: 1;
}

/* Desktop: give description text breathing room */
@media (min-width: 768px) {
    .gallery-row.mixed-row .gallery-panel.description-panel {
        padding-left: 24px;
    }

    /* Desktop: widescreen images should fit within the viewport height */
    .gallery-panel.full-width .gallery-image {
        max-height: calc(100vh - 200px);
        object-fit: contain;
    }
}

.gallery-panel.tall-image {
    flex: 1;
    min-height: 400px;
}

.gallery-panel.tall-image .gallery-image {
    height: 100%;
    object-fit: cover;
}

.gallery-panel.grid-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.gallery-panel.grid-images .gallery-image {
    width: 80%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    justify-self: center;
    align-self: center;
}

.gallery-description-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.5px;
    text-align: left;
}

.gallery-description-text {
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Manrope', sans-serif;
    color: #333;
    text-align: left;
}

@media (min-width: 768px) {
    .gallery-row {
        flex-direction: row;
        gap: 20px;
        padding: 60px 0;
    }

    .gallery-panel.description-panel {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .gallery-panel.full-width {
        width: 100%;
    }

    .gallery-panel.tall,
    .gallery-panel.split {
        width: 50%;
    }

    .gallery-panel.tall {
        display: flex;
        align-items: stretch;
    }

    .gallery-panel.tall .gallery-image {
        height: 100%;
        object-fit: cover;
    }

    .gallery-panel.split .gallery-image {
        flex: 1;
        height: 0;
        min-height: 300px;
        object-fit: cover;
    }
}

    @media (max-width: 767px) {
        .gallery-row {
            flex-direction: column;
            padding: 32px 0;
        }

        .gallery-row.mixed-row {
            flex-direction: column;
            gap: 20px;
        }

        .gallery-row.grid-row {
            flex-direction: column;
            gap: 0;
        }

        .gallery-row.full-width-row + .gallery-row {
            border-top: 1px solid #000000;
            padding-top: 40px;
        }

        .gallery-panel.description-panel {
            flex: none;
            width: 100%;
            padding-bottom: 20px;
            border-bottom: 1px solid #000000;
        }

        .gallery-panel.image-panel {
            flex: none;
            width: 100%;
        }

        .gallery-panel.tall-image {
            flex: none;
            width: 100%;
            min-height: 0;
            max-height: 70vh;
        }

        .gallery-panel.tall-image .gallery-image {
            height: auto;
            max-height: 70vh;
        }

        .gallery-panel.grid-images {
            flex: none;
            width: 100%;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
            gap: 0;
            align-items: center;
            justify-items: center;
        }

        .gallery-panel.grid-images .gallery-image {
            width: 80%;
            height: auto;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            justify-self: center;
            align-self: center;
        }

        .gallery-description-title {
            font-size: 18px;
        }

        .gallery-description-text {
            font-size: 13px;
        }
    }

/* Old gallery grid styles - to be removed/replaced */
.project-page .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.project-page .gallery-image {
    width: 100%;
    display: block;
    border: 1px solid #000000;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: cover;
}

/* Full-width hero images */
.project-page .gallery-image:nth-child(1),
.project-page .gallery-image:nth-child(5) {
    height: 70vh;
    max-height: 800px;
}

/* Medium images in pairs */
.project-page .gallery-image:nth-child(2),
.project-page .gallery-image:nth-child(3),
.project-page .gallery-image:nth-child(6),
.project-page .gallery-image:nth-child(7) {
    height: 45vh;
    max-height: 500px;
}

/* Small accent images */
.project-page .gallery-image:nth-child(4),
.project-page .gallery-image:nth-child(8) {
    height: 30vh;
    max-height: 350px;
}

/* Create side-by-side layouts using flexbox */
.project-page .gallery-grid::after {
    content: '';
    display: block;
    clear: both;
}

/* Desktop: Create dynamic side-by-side layouts - OLD STYLES TO BE REMOVED */
@media (min-width: 769px) {
    .project-page .gallery-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 150px;
        gap: 20px;
    }

    /* Keeping these for backward compatibility */
    .project-page .gallery-image:nth-child(1) {
        grid-column: 1 / 13;
        grid-row: 1 / 5;
        height: auto;
        max-height: none;
    }

    .project-page .gallery-image:nth-child(2) {
        grid-column: 1 / 7;
        grid-row: 5 / 8;
        height: auto;
    }

    .project-page .gallery-image:nth-child(3) {
        grid-column: 7 / 13;
        grid-row: 5 / 9;
        height: auto;
    }

    .project-page .gallery-image:nth-child(4) {
        grid-column: 1 / 7;
        grid-row: 8 / 11;
        height: auto;
    }

    .project-page .gallery-image:nth-child(5) {
        grid-column: 7 / 13;
        grid-row: 9 / 13;
        height: auto;
    }

    .project-page .gallery-image:nth-child(6) {
        grid-column: 1 / 7;
        grid-row: 11 / 14;
        height: auto;
    }

    .project-page .gallery-image:nth-child(7) {
        grid-column: 1 / 8;
        grid-row: 14 / 17;
        height: auto;
    }

    .project-page .gallery-image:nth-child(8) {
        grid-column: 8 / 13;
        grid-row: 13 / 17;
        height: auto;
    }
}

.gallery-image:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Project Details */
.project-details {
    padding: 60px 0;
    border-top: 1px solid #000000;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-value {
    font-size: 1rem;
    color: #000000;
    text-transform: capitalize;
}

/* Fullscreen image modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.image-modal-close:hover {
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .project-title {
        font-size: 2rem;
    }

    .project-meta {
        gap: 2rem;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .gallery-image {
        height: 50vh !important;
        max-height: 400px !important;
    }

    .gallery-image:nth-child(1) {
        height: 60vh !important;
        max-height: 500px !important;
    }

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

    .project-hero {
        padding: 100px 0 40px;
        margin-top: 40px;
    }

    .project-description {
        padding: 40px 0;
    }
}

.project-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .project-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .project-images-grid {
        gap: 50px;
    }
}

.project-page .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary-rose);
    font-weight: 600;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-purple);
    transform: translateY(-1px);
}

.project-header {
    text-align: center;
    margin-bottom: 3rem;
}

.project-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .project-content {
        gap: 2rem;
    }
}

/* Full Page Slideshow */
.project-slideshow-full {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 100vh;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.project-slide-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.project-slide-full.active {
    opacity: 1;
}

.project-slide-full img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Full Page Controls */
.slide-control-full {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2.5rem;
    padding: 1rem 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    
    backdrop-filter: blur(10px);
}

.slide-control-full:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slide-control-full.prev {
    left: 1.5rem;
}

.slide-control-full.next {
    right: 1.5rem;
}

/* Full Page Indicators */
.slide-indicators-full {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slide-indicator-full {
    width: 12px;
    height: 12px;
    
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slide-indicator-full:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slide-indicator-full.active {
    background: white;
    width: 30px;
    
}

/* Project Info Section */
.project-info-section {
    background: white;
    
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.project-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-rose);
    text-align: center;
}

.project-info-table {
    width: 100%;
    border-collapse: collapse;
}

.project-info-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.project-info-table tbody tr:last-child {
    border-bottom: none;
}

.project-info-table td {
    padding: 1.2rem 0;
    text-align: left;
}

.project-info-table td.label {
    font-weight: 600;
    color: var(--primary-rose);
    width: 40%;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.project-info-table td.value {
    color: var(--text-dark);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .back-link-wrapper {
        position: fixed;
        top: 6rem;
        left: 1rem;
        z-index: 1100;
    }

    .project-header {
        margin-top: 4rem;
    }

    .project-header h1 {
        font-size: 2rem;
    }
    
    .slide-control-full {
        font-size: 1.5rem;
        padding: 0.7rem 0.9rem;
    }
    
    .slide-control-full.prev {
        left: 0.5rem;
    }
    
    .slide-control-full.next {
        right: 0.5rem;
    }
    
    .project-info-section {
        position: relative;
        top: 0;
    }
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid white;
    }
    
    .nav-link::after {
        height: 3px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .scroll-indicator,
    .footer,
    .back-link-wrapper {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    /* Fix hero banner for print/PDF export */
    .project-hero-banner {
        height: auto;
        min-height: 400px;
        page-break-inside: avoid;
    }
    
    .hero-banner-overlay {
        display: none;
    }
    
    .hero-banner-image {
        opacity: 1;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .hero-banner-content {
        position: relative;
        bottom: auto;
        background: white;
        color: black;
        padding: 2rem;
        margin-top: -50px;
    }
    
    .project-title,
    .project-meta {
        background: white;
        color: black;
        backdrop-filter: none;
        box-shadow: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--primary-rose);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}