/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Colors */
    --color-bg-primary: #fefcf6;
    --color-bg-secondary: #e6f4ea;
    --color-bg-elevated: rgba(255, 255, 255, 0.85);
    --color-sunlight: #facc15;
    --color-green: #22c55e;
    --color-green-dark: #16a34a;
    --color-orange: #fb923c;
    --color-orange-dark: #f97316;
    --color-text-primary: #1f1f1f;
    --color-text-secondary: #4b5563;
    --color-text-muted: #6b7280;
    --color-white: #ffffff;
    --color-border: rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1320px;
    --section-gap: 120px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-glow-green: 0 4px 24px rgba(34, 197, 94, 0.25);
    --shadow-glow-yellow: 0 4px 24px rgba(250, 204, 21, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--color-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-sun {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 20px;
    animation: preloaderSpin 2s linear infinite;
}

.sun-core {
    width: 24px;
    height: 24px;
    background: var(--color-sunlight);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sun-ray {
    position: absolute;
    width: 3px;
    height: 10px;
    background: var(--color-sunlight);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform-origin: center 0;
}

.sun-ray:nth-child(2) { transform: translate(-50%, -30px) rotate(0deg); }
.sun-ray:nth-child(3) { transform: translate(-50%, -30px) rotate(45deg); }
.sun-ray:nth-child(4) { transform: translate(-50%, -30px) rotate(90deg); }
.sun-ray:nth-child(5) { transform: translate(-50%, -30px) rotate(135deg); }
.sun-ray:nth-child(6) { transform: translate(-50%, -30px) rotate(180deg); }
.sun-ray:nth-child(7) { transform: translate(-50%, -30px) rotate(225deg); }
.sun-ray:nth-child(8) { transform: translate(-50%, -30px) rotate(270deg); }
.sun-ray:nth-child(9) { transform: translate(-50%, -30px) rotate(315deg); }

@keyframes preloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ============================================
   PARTICLES
   ============================================ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(254, 252, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text-primary);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--color-green);
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: var(--color-text-primary);
    background: rgba(34, 197, 94, 0.08);
}

.nav-link.active {
    color: var(--color-green);
    background: rgba(34, 197, 94, 0.1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 252, 246, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    padding: 40px;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.mobile-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-green);
}

.mobile-cta {
    margin-top: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-glow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
    color: var(--color-white);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(250, 204, 21, 0.12) 0%, rgba(34, 197, 94, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-green);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-green), var(--color-sunlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.hero-stat-plus,
.hero-stat-percent {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-green);
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-image {
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px;
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    background: var(--color-bg-elevated);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-top {
    top: 10%;
    left: -30px;
    animation: floatCard 6s ease-in-out infinite;
}

.card-bottom {
    bottom: 15%;
    right: -20px;
    animation: floatCard 6s ease-in-out infinite 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    font-size: 1.5rem;
}

.floating-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--section-gap) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-green);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   JUICE CARDS (MENU)
   ============================================ */
.juice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.juice-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
}

.juice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.juice-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.juice-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.juice-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
}

.tag-popular { background: var(--color-green); }
.tag-new { background: var(--color-orange); }
.tag-bestseller { background: linear-gradient(135deg, var(--color-orange), var(--color-sunlight)); }

.juice-card-body {
    padding: 20px;
}

.juice-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.juice-ingredients {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.juice-nutrition {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.nutrition-item {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    background: var(--color-bg-secondary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.juice-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.juice-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-green);
}

/* ============================================
   SUSTAINABILITY SECTION
   ============================================ */
.sustainability {
    background: var(--color-bg-secondary);
}

.sustainability-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.08), transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(250, 204, 21, 0.08), transparent 50%);
    pointer-events: none;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.sustain-card {
    background: var(--color-bg-elevated);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.sustain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sustain-icon {
    margin-bottom: 20px;
}

.sustain-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.sustain-desc {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-accent-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--color-white);
    padding: 24px 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow-green);
    text-align: center;
}

.accent-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

.accent-label {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin: 24px 0 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-placeholder,
.events-map-full {
    position: relative;
}

.map-frame,
.map-frame-full {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-secondary);
}

.events-map-full .map-frame-full {
    height: 450px;
}

.map-overlay-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-bg-elevated);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Event Cards */
.event-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 12px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
}

.event-day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.event-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.event-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.status-confirmed {
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-green);
}

.status-pending {
    background: rgba(250, 204, 21, 0.15);
    color: #a16207;
}

.event-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

/* Full Event Cards */
.events-full-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-card-full {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
    transition: all var(--transition-fast);
    align-items: center;
}

.event-card-full:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.event-card-full .event-info {
    flex: 1;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--color-bg-secondary);
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--color-sunlight);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-grid-full {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-featured {
    grid-column: 1 / -1;
}

.blog-card-featured .blog-card-image img {
    max-height: 400px;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 8px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-link {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-card {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: var(--color-white);
    box-shadow: var(--shadow-glow-green);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-text {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.7;
}

.form-group-inline {
    display: flex;
    gap: 12px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-white);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-form .btn-primary {
    background: var(--color-sunlight);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-glow-yellow);
    flex-shrink: 0;
    padding: 14px 28px;
}

.newsletter-form .btn-primary:hover {
    background: #eab308;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.35);
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 12px;
}

.newsletter-disclaimer a {
    color: var(--color-white);
    text-decoration: underline;
}

.form-message {
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-message.success {
    color: #bbf7d0;
}

.form-message.error {
    color: #fecaca;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: 160px 0 60px;
    background: var(--color-bg-secondary);
    text-align: center;
    position: relative;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   MENU FILTERS
   ============================================ */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.filter-btn.active {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}

.menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.allergy-notice {
    margin-top: 48px;
    padding: 24px;
    background: rgba(251, 146, 60, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 146, 60, 0.2);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.allergy-notice a {
    color: var(--color-orange-dark);
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-green);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   BOOKING CTA
   ============================================ */
.booking-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.booking-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.booking-feature span {
    color: var(--color-green);
    font-weight: 700;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
    display: block;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-method a,
.contact-method p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.contact-social {
    margin-top: 12px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    padding-top: 60px;
}

.legal-body {
    max-width: 780px;
    margin: 0 auto;
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.legal-body p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-body ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-body li {
    list-style: disc;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.health-alert {
    background: rgba(251, 146, 60, 0.08);
    border: 2px solid rgba(251, 146, 60, 0.2);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 32px;
}

.health-alert h2 {
    margin-top: 0;
    color: var(--color-orange-dark);
}

.allergen-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 32px;
    font-size: 0.9rem;
}

.allergen-table th,
.allergen-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.allergen-table th {
    font-weight: 600;
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
}

.allergen-table td {
    color: var(--color-text-secondary);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.08);
    color: var(--color-green);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-text-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
}

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

.footer-logo {
    color: var(--color-white);
}

.footer-logo .logo-text {
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.site-footer .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.site-footer .social-link:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}
/* ENDFILE */