/**
 * ============================================
 * GÖÇMEN BÖREK - PREMIUM DIGITAL MENU
 * KKTC Girne - Doğanköy
 *
 * DESIGN: Deep Navy + Copper/Rose Gold + Cream
 * - Sophisticated color theory
 * - 3D transforms & magnetic effects
 * - Advanced gradient animations
 * - Premium typography (Cinzel, Crimson Pro, Inter)
 * ============================================
 */

/* ============================================
   DESIGN TOKENS - ULTRA LUXURY PALETTE
   ============================================ */
:root {
    /* Deep Navy Palette */
    --navy-black: #0d1b2a;
    --navy-dark: #1a2332;
    --navy-medium: #2e4057;
    --navy-light: #415a77;

    /* Copper/Rose Gold Gradient */
    --copper-dark: #B8935F;
    --copper: #C9A961;
    --copper-medium: #D4A574;
    --copper-light: #E8B4A0;
    --copper-bright: #F5D4BC;

    /* Cream/Beige Tones */
    --cream-dark: #E8DCC4;
    --cream: #F5EFE6;
    --cream-light: #FAF7F2;
    --cream-white: #FFFCF7;

    /* Accent Colors */
    --accent-red: #D4696B;
    --accent-purple: #9B7EBD;
    --accent-blue: #6B9BD4;
    --accent-green: #7EBD9B;
    --accent-orange: #D49B6B;

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-serif: 'Crimson Pro', serif;
    --font-sans: 'Inter', sans-serif;

    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
    --text-md: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
    --text-lg: clamp(1.25rem, 1.1rem + 0.7vw, 1.875rem);
    --text-xl: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    --text-2xl: clamp(2rem, 1.7rem + 1.5vw, 3.5rem);
    --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    --text-4xl: clamp(3rem, 2.5rem + 3vw, 6rem);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 5rem;
    --space-16: 7rem;
    --space-20: 10rem;

    /* Shadows - Multi-layered */
    --shadow-sm:
        0 1px 2px rgba(13, 27, 42, 0.1),
        0 1px 4px rgba(13, 27, 42, 0.05);
    --shadow-md:
        0 4px 8px rgba(13, 27, 42, 0.12),
        0 2px 4px rgba(13, 27, 42, 0.08);
    --shadow-lg:
        0 10px 20px rgba(13, 27, 42, 0.15),
        0 6px 10px rgba(13, 27, 42, 0.1);
    --shadow-xl:
        0 20px 40px rgba(13, 27, 42, 0.2),
        0 10px 20px rgba(13, 27, 42, 0.15);
    --shadow-copper:
        0 10px 30px rgba(212, 165, 116, 0.3),
        0 5px 15px rgba(212, 165, 116, 0.2);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --duration-fast: 200ms;
    --duration-base: 350ms;
    --duration-slow: 500ms;
    --duration-slower: 700ms;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--cream);
    background: var(--navy-black);
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: var(--copper-medium);
    color: var(--navy-black);
}

:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-ambient__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 126, 189, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(107, 155, 212, 0.04) 0%, transparent 70%);
    animation: ambientShift 20s ease-in-out infinite;
}

.bg-ambient__mesh {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 165, 116, 0.02) 2px, rgba(212, 165, 116, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 165, 116, 0.02) 2px, rgba(212, 165, 116, 0.02) 4px);
    opacity: 0.3;
}

.bg-ambient__particles {
    position: absolute;
    inset: 0;
}

/* ============================================
   LUXURY PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--navy-black) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--copper);
    border-right-color: var(--copper-medium);
    animation: spin 2s linear infinite;
}

.preloader__content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.preloader__icon {
    width: 80px;
    height: 60px;
    margin-bottom: var(--space-4);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.5));
}

.preloader__logo-img {
    width: 120px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.5));
}

.preloader__brand {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, var(--copper-light), var(--copper), var(--copper-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-2);
}

.preloader__tagline {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    letter-spacing: 0.3em;
    color: var(--copper-medium);
    text-transform: uppercase;
}

.preloader__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(212, 165, 116, 0.1);
    overflow: hidden;
}

.preloader__bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent,
        var(--copper-medium),
        var(--copper),
        var(--copper-light),
        transparent
    );
    animation: shimmer 2s ease-in-out infinite;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    overflow: hidden;
}

.hero__decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.hero__decoration--tl {
    top: -10%;
    left: -10%;
    animation: float 15s ease-in-out infinite;
}

.hero__decoration--tr {
    top: -10%;
    right: -10%;
    animation: float 18s ease-in-out infinite reverse;
}

.hero__decoration--bl {
    bottom: -10%;
    left: -10%;
    animation: float 20s ease-in-out infinite;
}

.hero__decoration--br {
    bottom: -10%;
    right: -10%;
    animation: float 22s ease-in-out infinite reverse;
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero__logo {
    width: 140px;
    height: 105px;
    margin: 0 auto var(--space-8);
    filter: drop-shadow(0 10px 40px rgba(212, 165, 116, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
    transition: transform 0.3s var(--ease-out);
}

.hero__logo-img {
    width: 180px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(212, 165, 116, 0.4));
}

.hero__logo:hover {
    transform: scale(1.05);
}

.hero__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin: var(--space-6) auto;
    max-width: 600px;
}

.hero__info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    font-family: var(--font-serif);
    font-size: var(--text-base);
    color: var(--copper-medium);
    letter-spacing: 0.05em;
}

.hero__info-icon {
    width: 24px;
    height: 24px;
    color: var(--copper);
    flex-shrink: 0;
}

.hero__phone {
    color: var(--copper-medium);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
    font-weight: 500;
}

.hero__phone:hover {
    color: var(--copper-light);
}

.hero__title {
    margin-bottom: var(--space-6);
}

.hero__title-line {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__title-word {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        var(--copper-light) 0%,
        var(--copper-medium) 30%,
        var(--copper) 60%,
        var(--copper-dark) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.hero__title-word::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    opacity: 0;
    animation: lineGlow 3s ease-in-out infinite;
}

.hero__divider {
    width: 100px;
    height: 2px;
    margin: 0 auto var(--space-6);
    background: linear-gradient(90deg, transparent, var(--copper-medium), transparent);
    position: relative;
}

.hero__divider::before,
.hero__divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--copper);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.6);
}

.hero__divider::before {
    left: -15px;
}

.hero__divider::after {
    right: -15px;
}

.hero__subtitle {
    font-family: var(--font-serif);
    font-size: var(--text-md);
    font-style: italic;
    font-weight: 300;
    color: var(--cream-dark);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

.hero__cta {
    margin-bottom: var(--space-12);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scroll-indicator span {
    width: 2px;
    height: 20px;
    background: var(--copper-medium);
    opacity: 0;
    animation: scrollDots 2s ease-in-out infinite;
}

.scroll-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.6s;
}

/* ============================================
   PREMIUM BUTTON
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--copper-medium);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--copper-medium);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.btn__text {
    position: relative;
    z-index: 2;
    transition: color var(--duration-base) var(--ease-out);
}

.btn__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--copper-medium), var(--copper-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease-out);
    z-index: 1;
}

.btn:hover {
    border-color: var(--copper);
    box-shadow:
        0 10px 30px rgba(212, 165, 116, 0.3),
        0 0 40px rgba(212, 165, 116, 0.2);
    transform: translateY(-2px);
}

.btn:hover .btn__text {
    color: var(--navy-black);
}

.btn:hover .btn__bg {
    transform: scaleX(1);
}

.btn:active {
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    padding: var(--space-4) var(--space-2);
    box-shadow: var(--shadow-lg);
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    overflow-x: auto;
    scrollbar-width: none;
}

.nav__container::-webkit-scrollbar {
    display: none;
}

.nav__item {
    position: relative;
    flex-shrink: 0;
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cream-dark);
    background: transparent;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    overflow: hidden;
}

.nav__item-text {
    position: relative;
    z-index: 2;
}

.nav__item-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    transform: scaleX(0);
    transition: transform var(--duration-base) var(--ease-out);
}

.nav__item:hover {
    color: var(--copper-light);
    border-color: var(--copper-medium);
    transform: translateY(-2px);
}

.nav__item:hover .nav__item-line {
    transform: scaleX(1);
}

.nav__item--active {
    color: var(--navy-black);
    background: linear-gradient(135deg, var(--copper-medium), var(--copper-light));
    border-color: var(--copper);
    box-shadow: var(--shadow-copper);
}

.nav__item--active .nav__item-line {
    transform: scaleX(1);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
    position: relative;
    z-index: 10;
    padding: var(--space-16) var(--space-4);
    min-height: 100vh;
}

.main__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   SECTION
   ============================================ */
.section {
    margin-bottom: var(--space-20);
    opacity: 1;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.section.is-hidden {
    display: none;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
}

.section__ornament {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-6);
    background:
        radial-gradient(circle, var(--copper-medium) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
}

.section__ornament::before,
.section__ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.section__ornament::before {
    width: 30px;
    height: 30px;
    border: 2px solid var(--copper);
}

.section__ornament::after {
    width: 10px;
    height: 10px;
    background: var(--copper-light);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.8);
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--copper-light);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
}

.section__subtitle {
    font-family: var(--font-serif);
    font-size: var(--text-md);
    font-style: italic;
    font-weight: 300;
    color: var(--cream-dark);
    margin-bottom: var(--space-6);
}

.section__line {
    width: 120px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--copper-medium), transparent);
    position: relative;
}

.section__line::before,
.section__line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section__line::before {
    left: -10px;
}

.section__line::after {
    right: -10px;
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

/* ============================================
   CARD - PREMIUM DESIGN
   ============================================ */
.card {
    position: relative;
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--duration-slow) var(--ease-out);
    overflow: hidden;
    transform-style: preserve-3d;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 165, 116, 0.05) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
    pointer-events: none;
}

.card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s var(--ease-out);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow:
        0 20px 50px rgba(13, 27, 42, 0.4),
        0 0 60px rgba(212, 165, 116, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card:hover .card__shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.card--premium {
    background: linear-gradient(
        135deg,
        rgba(212, 165, 116, 0.1) 0%,
        rgba(26, 35, 50, 0.8) 50%
    );
    border-color: rgba(212, 165, 116, 0.3);
}

.card--premium .card__glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle,
        rgba(212, 165, 116, 0.2) 0%,
        transparent 70%
    );
    filter: blur(30px);
    opacity: 0.6;
    z-index: -1;
}

.card__inner {
    position: relative;
    z-index: 2;
}

.card__icon {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: var(--text-2xl);
    color: var(--copper);
    animation: sparkle 3s ease-in-out infinite;
}

.card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--cream-light);
    line-height: 1.3;
}

.card__desc {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    color: var(--cream-dark);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

/* ============================================
   BADGE
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid;
    backdrop-filter: blur(10px);
}

.badge--hot {
    color: var(--accent-red);
    background: rgba(212, 105, 107, 0.15);
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(212, 105, 107, 0.3);
}

.badge--spicy {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.15);
    border-color: #FF6B6B;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.badge--exotic {
    color: var(--accent-purple);
    background: rgba(155, 126, 189, 0.15);
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(155, 126, 189, 0.3);
}

.badge--seasonal {
    color: var(--accent-blue);
    background: rgba(107, 155, 212, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(107, 155, 212, 0.3);
}

.badge--regional {
    color: var(--accent-green);
    background: rgba(126, 189, 155, 0.15);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(126, 189, 155, 0.3);
}

.badge--quality,
.badge--premium,
.badge--special,
.badge--versatile {
    color: var(--copper-light);
    background: rgba(212, 165, 116, 0.15);
    border-color: var(--copper-medium);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

/* ============================================
   PRICING
   ============================================ */
.card__pricing {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.card__pricing--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-3);
}

.price {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-4);
    background: rgba(212, 165, 116, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--duration-base) var(--ease-out);
}

.price::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
    border-radius: var(--radius-md);
}

.price:hover {
    border-color: var(--copper-medium);
    transform: translateY(-3px);
}

.price:hover::before {
    opacity: 1;
}

.price--featured {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.05));
    border-color: var(--copper-medium);
}

.price--popular {
    border-color: var(--copper);
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.25);
}

.price--popular::after {
    content: '★';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--copper);
    border-radius: 50%;
    font-size: 12px;
    color: var(--navy-black);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.5);
}

.price--unavailable {
    opacity: 0.4;
    pointer-events: none;
}

.price__label {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cream-dark);
}

.price__label small {
    font-size: 10px;
    opacity: 0.7;
}

.price__amount {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--copper-light);
}

.price__amount sup {
    font-size: var(--text-xs);
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}

/* ============================================
   DRINKS
   ============================================ */
.drinks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.drink {
    position: relative;
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--duration-base) var(--ease-out);
}

.drink:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: var(--shadow-lg);
}

.drink__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    color: var(--copper-medium);
    animation: float 4s ease-in-out infinite;
}

.drink__name {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--cream-light);
    margin-bottom: var(--space-5);
}

.drink__name small {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--cream-dark);
}

.drink__options {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.drink__option {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.drink__option--single {
    flex-direction: row;
    align-items: center;
}

.drink__size {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cream-dark);
}

.drink__price {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--copper-light);
}

.drink__price sup {
    font-size: var(--text-xs);
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    margin-top: var(--space-20);
    padding: var(--space-16) var(--space-4) var(--space-8);
    background: linear-gradient(180deg, transparent 0%, var(--navy-dark) 30%);
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    text-align: center;
}

.footer__ornament {
    width: 80px;
    height: 2px;
    margin: 0 auto var(--space-8);
    background: linear-gradient(90deg, transparent, var(--copper-medium), transparent);
}

.footer__brand {
    margin-bottom: var(--space-6);
}

.footer__logo {
    margin-bottom: var(--space-4);
}

.footer__logo-img {
    width: 120px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(212, 165, 116, 0.3));
}

.footer__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, var(--copper-light), var(--copper), var(--copper-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-2);
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    letter-spacing: 0.2em;
    color: var(--copper-medium);
    text-transform: uppercase;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin: var(--space-8) auto;
    max-width: 600px;
}

.footer__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    text-align: left;
    padding: var(--space-4);
    background: rgba(212, 165, 116, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-out);
}

.footer__info-item:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.footer__icon {
    width: 24px;
    height: 24px;
    color: var(--copper);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__info-label {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: var(--copper-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-1);
    font-weight: 600;
}

.footer__info-value {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    color: var(--cream-dark);
    line-height: 1.6;
}

.footer__info-value a {
    color: var(--cream-dark);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

.footer__info-value a:hover {
    color: var(--copper-light);
}

@media (min-width: 768px) {
    .footer__info {
        flex-direction: row;
        justify-content: center;
    }

    .footer__info-item {
        flex: 1;
        max-width: 300px;
    }
}

.footer__text {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    color: var(--cream-dark);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.footer__credits {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: var(--cream-dark);
}

.footer__credits strong {
    color: var(--copper-medium);
    font-weight: 600;
}

.footer__year {
    margin-top: var(--space-2);
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .drinks {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }

    .drinks {
        grid-template-columns: repeat(4, 1fr);
    }

    .card {
        padding: var(--space-8);
    }
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

@keyframes scrollDots {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes ambientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .preloader, .bg-ambient, .nav, .hero, .footer {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
