/* ============================================================
   TAKA FISH HOUSE — Premium Ana Sayfa CSS
   "Deep Sea Premium" Konsepti
   GSAP ScrollTrigger uyumlu başlangıç durumları dahil
   ============================================================ */

/* ----- CUSTOM FONTS ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;600&display=swap');

/* ----- VARIABLES & THEME ----- */
:root {
    --primary-color: #0B1B32;
    --primary-dark: #060F1E;
    --accent-color: #D4AF37;
    --accent-brand: #D4AF37;
    --accent-hover: #C29B27;
    --accent-gold: #c9a84c;
    --text-light: #ffffff;
    --text-muted: #8a9ab0;
    --text-dim: #c4cbd4;
    --bg-dark: #050A14;
    --bg-deep: #02040A;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(5, 10, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Oswald', 'Playfair Display', serif;
    --font-display: 'Oswald', serif;
    --font-body: 'Inter', sans-serif;
    --font-hero: 'Oswald', sans-serif;
    --navy-1: #020B18;
    --navy-2: #041525;
    --navy-3: #0B1B32;
    --gold-1: #D4AF37;
    --gold-2: #C29B27;
    --gold-3: rgba(212,175,55,0.15);

    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    --section-padding: 120px 20px;
    --max-width: 1240px;
}

/* ----- RESET & BASE ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
    /* cursor: auto — standard browser cursor */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom cursor elements removed — standard browser cursor is used */


/* ----- SCROLL PROGRESS BAR ----- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-gold));
    z-index: 9997;
    transform-origin: left center;
    transform: scaleX(0);
}

/* ----- PREMIUM BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, #8b1538, #1a2a44); /* Bordo to Mavi */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a31c44, #1f3355);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark-blue-pulse {
    background: linear-gradient(135deg, #0a192f, #172a45);
    color: #ffffff;
    border: 1px solid rgba(100, 255, 218, 0.1); /* subtle neon touch */
    box-shadow: 0 0 15px rgba(10, 25, 47, 0.5);
    animation: darkBluePulse 3s infinite alternate ease-in-out;
}
.btn-dark-blue-pulse:hover {
    background: linear-gradient(135deg, #112240, #233554);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(23, 42, 69, 0.9);
    animation: none;
}
@keyframes darkBluePulse {
    0% { box-shadow: 0 0 10px rgba(10, 25, 47, 0.4); }
    100% { box-shadow: 0 0 25px rgba(100, 255, 218, 0.4); } /* Glowing slightly */
}

.btn-outline {
    background: transparent;
    color: var(--accent-brand);
    border: 1px solid var(--accent-brand);
    box-shadow: 0 0 15px rgba(0, 204, 163, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 204, 163, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 204, 163, 0.25);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

/* ----- HEADER & NAVBAR ----- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled {
    background: rgba(6, 10, 15, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo:hover { transform: scale(1.04) translateY(-1px); }

.logo-taka {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    letter-spacing: 4px;
}

.logo-fishhouse {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dim);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.nav-links a:hover { color: var(--text-light); }
.nav-links a:hover::after { width: 100%; }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(26, 42, 68, 0.4); /* Premium Navy tinted */
    border-radius: 30px;
    padding: 4px;
    border: 1px solid rgba(139, 21, 56, 0.3); /* Bordo border */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-btn.active, .lang-btn:hover {
    background: linear-gradient(135deg, #8b1538, #a31c44); /* Bordo gradient */
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(139, 21, 56, 0.5);
}

/* ----- SECTION COMMON ----- */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(0, 204, 163, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(0, 204, 163, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ----- HERO SECTION ----- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 10, 15, 0.3) 0%,
        rgba(6, 10, 15, 0.5) 50%,
        rgba(6, 10, 15, 0.95) 100%
    );
    z-index: 2;
}

/* Grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 3;
    pointer-events: none;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(0, 204, 163, 0.12);
    color: var(--accent-color);
    border: 1px solid rgba(0, 204, 163, 0.3);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
    opacity: 0; /* GSAP initial */
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
    /* GSAP SplitText handles words/chars — no opacity here */
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
}

.hero-title .char {
    display: inline-block;
}

.hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-size: 1.15em; /* Make the elegant part slightly larger to balance the uppercase Oswald */
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 44px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0; /* GSAP initial */
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0; /* GSAP initial */
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0; /* GSAP initial */
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 3px;
    animation: scroll-bob 1.6s ease-in-out infinite;
}

@keyframes scroll-bob {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.2; transform: translateX(-50%) translateY(10px); }
}

/* ----- HERO PREMIUM UPGRADES ----- */

/* 1. Dynamic Lighting (Vignette Flashlight) */
.hero-light-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 80%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero:hover .hero-light-overlay {
    opacity: 1;
}

/* 2. Premium Typography Mask */
.hero-title-premium {
    background: linear-gradient(to bottom, #ffffff 30%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    position: relative;
}

.hero-title-premium::after {
    content: attr(data-i18n-title);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    -webkit-text-fill-color: transparent;
    filter: blur(8px);
}

/* 3. Cinematic Audio Toggle */
.audio-toggle {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    opacity: 0; /* GSAP initial */
}

.audio-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    border-color: rgba(0, 204, 163, 0.4);
}

.audio-wave {
    width: 2px;
    height: 12px;
    background: var(--text-light);
    border-radius: 2px;
    transition: height 0.3s ease;
}

/* Playing Animation */
.audio-toggle.playing .audio-wave {
    animation: wave-bounce 1.2s ease-in-out infinite;
    background: var(--accent-color);
}
.audio-toggle.playing .audio-wave:nth-child(1) { animation-delay: 0.1s; }
.audio-toggle.playing .audio-wave:nth-child(2) { animation-delay: 0.3s; }
.audio-toggle.playing .audio-wave:nth-child(3) { animation-delay: 0.2s; }
.audio-toggle.playing .audio-wave:nth-child(4) { animation-delay: 0.4s; }

@keyframes wave-bounce {
    0%, 100% { height: 6px; }
    50% { height: 18px; }
}

/* 4. Circular Trust Badge */
.circular-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    width: 110px;
    height: 110px;
    opacity: 0; /* GSAP initial */
    pointer-events: none;
}

.rotating-text-svg {
    width: 100%;
    height: 100%;
    animation: rotate-badge 15s linear infinite;
}

.rotating-text {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    fill: var(--text-muted);
    font-family: var(--font-body);
}

.badge-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--accent-color);
}

@keyframes rotate-badge {
    100% { transform: rotate(360deg); }
}


/* ----- STATS STRIP ----- */
.stats-strip {
    background: linear-gradient(180deg, rgba(6,10,15,1) 0%, rgba(8,14,22,1) 100%);
    padding: 60px 20px;
    position: relative;
    z-index: 5;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.stats-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-block {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    opacity: 0; /* GSAP initial */
}

.stat-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent);
}

.stat-block:last-child::after { display: none; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--accent-color);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* ----- FEATURES SECTION ----- */
.features {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.features-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    position: relative;
    padding: 2px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-slow);
    overflow: hidden;
    background: rgba(255,255,255,0.01);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    opacity: 0; /* GSAP initial */
    transform: translateY(40px); /* GSAP initial */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background: conic-gradient(from 0deg, transparent 60%, rgba(0, 204, 163, 0.7) 90%, transparent 100%);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-neon 12s linear infinite;
    z-index: -2;
    opacity: 0.6;
}

@keyframes rotate-neon {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.feature-card-inner {
    background: linear-gradient(145deg, rgba(12, 20, 32, 0.85), rgba(6, 10, 15, 0.95));
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 22px;
    padding: 50px 32px;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.06);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 40px rgba(0, 204, 163, 0.15);
}

.feature-card:hover::before {
    animation-duration: 6s;
    opacity: 1;
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,204,163,0.15), rgba(0,204,163,0.05));
    border: 1px solid rgba(0,204,163,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(0, 204, 163, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-card-inner h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.feature-card-inner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ----- MENU SHOWCASE ----- */
.digital-menu-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080d14 100%);
}

.menu-tabs-container {
    max-width: var(--max-width);
    margin: 0 auto 40px;
    position: relative;
}

.menu-tabs-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 80px;
    background: linear-gradient(to left, #080d14, transparent);
    pointer-events: none;
    z-index: 2;
}

.tab-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    width: auto !important;
}

.tab-btn:hover {
    border-color: rgba(0,204,163,0.3);
    color: var(--text-light);
}

.tab-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-dark);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,204,163,0.3);
}

.menu-content-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Menu Cards */
.menu-card {
    background: rgba(10, 18, 28, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: grab;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,204,163,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(0,204,163,0.05);
}

.img-placeholder {
    height: 190px;
    background: linear-gradient(135deg, rgba(0,204,163,0.05), rgba(10,18,28,0.8));
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.85rem;
    letter-spacing: 1px;
    overflow: hidden;
    flex-shrink: 0;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .img-placeholder img {
    transform: scale(1.05);
}

.menu-info {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.tr-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
    flex: 1;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
}

.de-name {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.menu-action {
    text-align: center;
    margin-top: 60px;
}

.glass-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* ----- STORY/ABOUT SECTION ----- */
.story-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
    overflow: hidden;
}

.story-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-content {
    opacity: 0; /* GSAP initial */
    transform: translateX(-40px);
}

.story-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.15;
}

.story-content h2 span {
    color: var(--accent-color);
    font-style: italic;
}

.story-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 32px 0;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label-sm {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.story-image-wrap {
    position: relative;
    opacity: 0; /* GSAP initial */
    transform: translateX(40px);
}

.story-image-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.story-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 70%;
    border: 1px solid rgba(0,204,163,0.2);
    border-radius: 24px;
    z-index: -1;
}

.story-image-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(6,10,15,0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.story-image-badge .badge-icon { font-size: 2rem; }

.story-image-badge .badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.story-image-badge .badge-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ----- ATMOSPHERE PARALLAX BANNER ----- */
/* ============================
   SIGNATURE DISHES SECTION
   ============================ */
.signature-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a1628 100%);
    text-align: center;
}

.signature-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.signature-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin: 16px 0 20px;
    line-height: 1.15;
}

.signature-subtitle {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.sig-card {
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    display: block;
    cursor: pointer;
}

.sig-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

.sig-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sig-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sig-card:hover .sig-card-img {
    transform: scale(1.08);
}

.sig-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,15,30,0.85) 0%, transparent 50%);
    pointer-events: none;
}

.sig-card-badge-wrap {
    position: absolute;
    top: 14px;
    left: 14px;
}

.sig-card-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.sig-card-badge--gold {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
}

.sig-card-badge--fire {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.sig-card-body {
    padding: 20px;
    text-align: left;
}

.sig-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.sig-card:hover .sig-card-title {
    color: var(--primary, #e8c547);
}

.sig-card-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

.sig-cta-wrap {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .signature-grid {
        grid-template-columns: 1fr;
    }
    .signature-section {
        padding: 60px 5%;
    }
    .sig-card-img-wrap {
        height: 200px;
    }
}

/* ============================
   ATMOSPHERE SECTION
   ============================ */
.atmosphere-section {

    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.atmos-bg {
    position: absolute;
    inset: 0;
    background-image: url('../_DSC4116.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.atmosphere-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,10,15,0.6), rgba(6,10,15,0.8));
    z-index: 2;
}

.atmosphere-content {
    position: relative;
    z-index: 3;
}

.atmosphere-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    opacity: 0; /* GSAP initial */
}

.atmosphere-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0; /* GSAP initial */
}

/* ----- GALLERY ----- */
.instagram-gallery {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0; /* GSAP initial */
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--text-light);
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.gallery-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(10,18,28,0.6);
    opacity: 0; /* GSAP initial */
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 220px;
}

.gallery-item:first-child img { min-height: 460px; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,10,15,0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay-icon {
    font-size: 2rem;
    transform: scale(0.6);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay-icon { transform: scale(1); }

/* ----- RESERVATION SECTION ----- */
.reservation-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark), #030609);
}

.reservation-container {
    max-width: 860px;
    margin: 0 auto;
    opacity: 0; /* GSAP initial */
}

.reservation-box {
    border-radius: 32px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg, rgba(10,18,28,0.9), rgba(6,10,15,0.98));
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

.reservation-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.reservation-box::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center, rgba(0,204,163,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.reservation-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.reservation-box p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.res-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.res-subtext {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ----- FOOTER ----- */
footer.main-footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 70px 20px 30px;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-tagline {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links h4, .footer-info h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-links ul li, .footer-info p {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-info a {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--accent-color);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ----- GSAP ANIMATION INITIAL STATES ----- */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.gsap-fade-left {
    opacity: 0;
    transform: translateX(-40px);
}

.gsap-fade-right {
    opacity: 0;
    transform: translateX(40px);
}

/* ----- AVANT-GARDE EDITORIAL LAYOUT ----- */

/* Features Editorial */
.features-editorial {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-dark);
    overflow: hidden;
}

.editorial-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.features-editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.editorial-block {
    max-width: 450px;
}

.editorial-block.block-left { align-self: flex-start; }
.editorial-block.block-right { align-self: flex-end; margin-top: -40px; }
.editorial-block.block-center { align-self: center; text-align: center; margin-top: 40px; }

.editorial-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.editorial-block h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 300;
}

.editorial-block p {
    color: var(--text-muted);
    line-height: 1.8;
}

.editorial-line {
    width: 0; /* GSAP will animate */
    height: 1px;
    background: var(--accent-color);
    margin-top: 24px;
    opacity: 0.5;
}

.block-center .editorial-line { margin: 24px auto 0; }

/* Story Editorial — Premium Redesign */
.story-editorial {
    padding: 140px 20px;
    background: var(--navy-2);
    position: relative;
    overflow: hidden;
}

/* Giant background text */
.story-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 22rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.018);
    white-space: nowrap;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}

.story-editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 1;
}

/* LEFT VISUAL COLUMN */
.story-editorial-image {
    width: 55%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.image-reveal-mask {
    position: absolute;
    inset: 0;
    background: #060a0f;
    z-index: 3;
}

/* Layered visuals */
.story-visual-layer {
    position: relative;
    width: 100%;
}

.story-visual-primary {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(1.1);
}

/* Floating accent photo */
.story-photo-accent {
    position: absolute;
    bottom: -40px;
    right: -50px;
    width: 220px;
    height: 170px;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    overflow: hidden;
    z-index: 5;
}

.story-photo-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1);
}

/* Floating stat cards */
.story-floating-stats {
    position: absolute;
    top: 40px;
    left: -30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 6;
}

.story-stat-card {
    background: rgba(6,10,15,0.9);
    -webkit-backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--accent-color);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 110px;
}

.story-stat-card--accent {
    border-left-color: var(--accent-gold);
}

.story-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.story-stat-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.story-editorial-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: var(--bg-dark);
    padding: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    z-index: 4;
    font-size: 0.85rem;
}

/* RIGHT CONTENT COLUMN */
.story-editorial-content {
    width: 60%;
    margin-left: -15%;
    z-index: 3;
    padding: 0 10px;
}

/* Section badge pill */
.story-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 204, 163, 0.08);
    border: 1px solid rgba(0, 204, 163, 0.25);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}

.story-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Title */
.oversized-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 28px;
    color: var(--text-light);
}

.outline-text {
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Decorative rule */
.story-rule {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.story-rule-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,204,163,0.4), transparent);
}

.story-rule-fish {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Text wrapper */
.story-text-wrapper {
    background: rgba(6, 10, 15, 0.85);
    -webkit-backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 36px 40px;
    border-left: 2px solid var(--accent-color);
    margin-bottom: 28px;
}

.story-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.story-text-wrapper p:last-of-type {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Values row */
.story-values-row {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.story-value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.story-value-icon {
    font-size: 1.1rem;
}

.story-value-text {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
}

/* CTA Button */
.story-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 14px 32px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.story-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: translateX(-101%);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
    z-index: -1;
}

.story-cta-btn:hover {
    color: var(--bg-dark);
}

.story-cta-btn:hover::before {
    transform: translateX(0);
}

.story-cta-btn svg {
    transition: transform 0.3s ease;
}

.story-cta-btn:hover svg {
    transform: translateX(5px);
}


/* Neon Orange Button CTA */
.btn-neon-orange {
    position: relative;
    background: #111;
    color: #fff;
    border: none;
    padding: 18px 48px;
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-neon-orange::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 70%, #ff6b00 100%);
    animation: rotate-neon-border 2.5s linear infinite;
    z-index: -2;
}

.btn-neon-orange::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #080d14;
    border-radius: 2px;
    z-index: -1;
    transition: background 0.3s ease;
}

.btn-neon-orange:hover::after {
    background: #0f1824;
}

@keyframes rotate-neon-border {
    100% { transform: rotate(360deg); }
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    padding-right: 20px;
}

.contact-details h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-desc {
    color: var(--text-dim);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.8rem;
    background: rgba(0, 204, 163, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-info-item p, .contact-info-item a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .story-container { grid-template-columns: 1fr; gap: 60px; }
    .story-image-badge { left: 10px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }

    /* Story editorial collapse on tablet */
    .story-editorial-container {
        flex-direction: column;
    }
    .story-editorial-image {
        width: 100%;
    }
    .story-editorial-image img {
        height: 450px;
    }
    .story-editorial-content {
        width: 100%;
        margin-left: 0;
        margin-top: -60px;
    }
    .story-editorial-badge {
        bottom: -10px;
        right: 10px;
    }
    .oversized-title {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
    }
    .editorial-block.block-right { margin-top: 0; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px 20px; }

    .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr; gap: 0; }
    .stat-block::after { display: none; }
    .stat-block { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; }
    .reservation-box { padding: 48px 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-details { padding-right: 0; }
    .contact-map { height: 350px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .story-stats { gap: 24px; flex-wrap: wrap; }
    .sm-hidden { display: none !important; }
    .hero-actions { flex-direction: column; align-items: center; gap: 16px; }
    .hero-actions .btn,
    .hero-actions .btn-neon-orange { width: 100%; max-width: 300px; text-align: center; justify-content: center; }

    /* Neon button mobile */
    .btn-neon-orange {
        padding: 16px 32px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Editorial sections mobile */
    .features-editorial { padding: 80px 20px; }
    .features-editorial-container { gap: 60px; }
    .editorial-block { max-width: 100%; }
    .editorial-block.block-left,
    .editorial-block.block-right,
    .editorial-block.block-center {
        align-self: flex-start;
        text-align: left;
        margin-top: 0;
    }
    .editorial-block h3 { font-size: 1.8rem; }
    .block-center .editorial-line { margin: 24px 0 0; }

    /* Story editorial full collapse */
    .story-editorial { padding: 80px 20px; }
    .story-editorial-container { flex-direction: column; gap: 0; }
    .story-editorial-image { width: 100%; }
    .story-editorial-image img { height: 300px; }
    .story-editorial-content { width: 100%; margin-left: 0; margin-top: 0; }
    .story-editorial-badge { display: none; }
    .story-text-wrapper { padding: 28px 20px; }
    .oversized-title { font-size: clamp(2.2rem, 10vw, 3.5rem); margin-bottom: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: auto; }
    .editorial-bg-text { display: none; } /* too large on small screens */
    .editorial-block h3 { font-size: 1.6rem; }
    .whatsapp-btn { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}


/* ----- REVIEWS SECTION ----- */
.reviews-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
    text-align: center;
}

.reviews-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.google-rating-summary {
    display: inline-block;
    background: var(--bg-card);
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: 3rem;
}

.g-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.g-stars {
    font-size: 1.2rem;
    margin: 10px 0;
}

.g-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 204, 163, 0.2);
}

.r-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.r-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.r-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.r-stars {
    font-size: 0.8rem;
}

.r-google-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.r-text {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-style: italic;
}

/* Story Extra Widget */
.story-extra-widget {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.story-widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.story-widget-icon {
    font-size: 1.2rem;
    background: rgba(0, 204, 163, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.story-widget-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.story-widget-content {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
}

.story-map-mini {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.story-map-mini iframe {
    filter: grayscale(100%) invert(90%) contrast(80%);
    transition: filter 0.3s ease;
}

.story-map-mini:hover iframe {
    filter: grayscale(80%) invert(90%) contrast(90%);
}

.story-widget-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.story-widget-address {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent-color);
    margin: 0;
}

.story-widget-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

.story-delivery-partners {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.delivery-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.delivery-logos {
    display: flex;
    gap: 12px;
}

.delivery-logos span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .story-widget-content {
        grid-template-columns: 1fr;
    }
    .story-map-mini {
        height: 160px;
    }
}

/* ============================================================
   PREMIUM NAVY BLUE THEME ADDITIONS
   Lacivert & Altın — Karadeniz Premium Style
   ============================================================ */

/* ----- HERO TYPOGRAPHY (Karadeniz Ruhu) ----- */
.hero-title {
    font-family: var(--font-hero);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}
.hero-title em {
    font-style: normal;
    color: var(--gold-1);
    font-weight: 300;
    text-transform: none;
    letter-spacing: 4px;
    display: block;
    font-size: 0.75em;
}
.hero-title-premium {
    font-size: clamp(3.5rem, 10vw, 7rem);
}

/* ----- LOGO IMAGE ----- */
.brand-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 2px 8px rgba(0,0,0,0.6));
    transition: filter 0.3s ease, transform 0.3s ease;
}
.brand-logo-img:hover {
    filter: drop-shadow(0px 2px 12px rgba(212,175,55,0.4));
    transform: scale(1.03);
}

/* ----- RESERVATION FORM ----- */
.res-form {
    margin-top: 30px;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
    text-align: left;
}
.res-form input,
.res-form select {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(2, 11, 24, 0.7);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.res-form input::placeholder { color: rgba(255,255,255,0.4); }
.res-form input:focus,
.res-form select:focus {
    border-color: var(--gold-1);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.res-form option { background: #0B1B32; color: #fff; }
.res-form-full { grid-column: 1 / -1; }
.res-form .btn.res-submit {
    grid-column: 1 / -1;
    justify-content: center;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #020B18;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 8px;
    box-shadow: 0 6px 24px rgba(212,175,55,0.25);
    border: none;
    cursor: pointer;
}
.res-form .btn.res-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212,175,55,0.4);
}
@media (max-width: 540px) {
    .res-form { grid-template-columns: 1fr; }
    .res-form-full, .res-form .btn.res-submit { grid-column: 1; }
}

/* ----- DARK NAVY MAP ----- */
.contact-map-dark {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(100%);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* ----- BUTTON GOLD (Navy theme override) ----- */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--navy-1);
    box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}
.btn-neon-orange {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--navy-1);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-neon-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.5);
}

/* ----- NAV ACCENT COLOR ----- */
.nav-links a:hover,
.nav-links a.active { color: var(--gold-1); }

/* ----- SECTION GAP FIXES ----- */
.stats-strip {
    margin-top: 0 !important;
    padding-top: 60px !important;
}
.features-editorial {
    margin-top: 0 !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
.story-editorial {
    margin-top: 0 !important;
    padding-top: 100px !important;
}
.signature-section {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* ----- ACCENT LINES & EDITORIAL COLOR ----- */
.editorial-line { background: var(--gold-1); }
.editorial-number { color: var(--gold-1); }
.story-badge-dot { background: var(--gold-1); }
.story-cta-btn {
    border-color: rgba(212,175,55,0.5);
    color: var(--gold-1);
}
.story-cta-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold-1);
}
.scroll-progress {
    background: linear-gradient(90deg, var(--gold-1), var(--accent-color));
}
iframe { border: 0; }


/* UI POLISH & BUG HUNT FIXES */
html, body {
    overflow-x: hidden;
    width: 100%;
}

a, button, .btn, .category-btn {
    touch-action: manipulation; /* Removes 300ms tap delay on mobile */
    -webkit-tap-highlight-color: transparent;
}

/* Ensure images don't overflow */
img, video {
    max-width: 100%;
    height: auto;
}

/* title-sea animation is handled by assets/css/title-sea.css */
/* ==========================================================
   PREMIUM NEON ANIMATED BUTTONS (HERO SECTION)
   ========================================================== */
.premium-hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .premium-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 20px;
    }
}

/* Neon Premium (Main Action) */
.btn-neon-premium {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    font-family: var(--font-primary), sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #001f3f, #004080);
    border: 2px solid #00e6b8;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(0, 230, 184, 0.4), inset 0 0 10px rgba(0, 230, 184, 0.2);
    z-index: 1;
}

.btn-neon-premium .btn-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.btn-neon-premium .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(0, 230, 184, 0.3);
    border-radius: 50%;
    z-index: 0;
    transition: width 0.6s ease, height 0.6s ease;
    filter: blur(10px);
}

.btn-neon-premium:hover {
    color: #0a1118;
    background: #00e6b8;
    box-shadow: 0 0 30px rgba(0, 230, 184, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-neon-premium:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* Neon Outline (Secondary Action) */
.btn-neon-outline {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    font-family: var(--font-primary), sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #00e6b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    background: rgba(0, 31, 63, 0.3);
    border: 2px solid rgba(0, 230, 184, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.btn-neon-outline .btn-text {
    position: relative;
    z-index: 2;
}

.btn-neon-outline .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 184, 0.4), transparent);
    transform: skewX(-20deg);
    animation: neon-shine 3s infinite linear;
    z-index: 0;
}

@keyframes neon-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-neon-outline:hover {
    color: #ffffff;
    border-color: #00e6b8;
    background: rgba(0, 230, 184, 0.15);
    box-shadow: 0 0 20px rgba(0, 230, 184, 0.5);
    transform: translateY(-3px);
}

/* Pulse animation for the premium button to draw attention */
.btn-neon-premium {
    animation: premium-btn-pulse 2s infinite ease-in-out alternate;
}

@keyframes premium-btn-pulse {
    0% { box-shadow: 0 0 15px rgba(0, 230, 184, 0.4), inset 0 0 10px rgba(0, 230, 184, 0.2); }
    100% { box-shadow: 0 0 25px rgba(0, 230, 184, 0.7), inset 0 0 15px rgba(0, 230, 184, 0.4); }
}

/* ==========================================================
   PREMIUM SPLASH INTRO (MAIN PAGE)
   ========================================================== */
.premium-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #0a1118 0%, #020304 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
}

.splash-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6; /* Slight darkness to make logo pop */
}

.premium-splash.is-exiting {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(15px);
    visibility: hidden;
    pointer-events: none;
}

.splash-logo-container {
    position: relative;
    z-index: 2;
    animation: 
        splash-logo-enter 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        splash-neon-pulse 2s infinite ease-in-out alternate forwards;
    animation-delay: 0s, 1.5s;
}

.splash-logo {
    max-width: 180px;
    height: auto;
}

@keyframes splash-logo-enter {
    0% { opacity: 0; transform: scale(0.6) translateY(30px) rotateX(-20deg); filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
    100% { opacity: 1; transform: scale(1) translateY(0) rotateX(0deg); filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.4)); }
}

@keyframes splash-neon-pulse {
    0% { filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.6)) drop-shadow(0 0 30px rgba(0, 150, 255, 0.3)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 25px rgba(0, 230, 184, 0.9)) drop-shadow(0 0 50px rgba(0, 230, 184, 0.7)) drop-shadow(0 0 90px rgba(0, 230, 184, 0.5)); transform: scale(1.05); }
}
