/* ==========================================================================
   ΑΓΑΠΗΣ ΔΩΡΟ - Organic & Soft Design System
   Brand: #7d9ea7 (slate blue) + #ca898a (dusty rose)
   Fonts: Advent Pro, Roboto
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --primary: #7d9ea7;
    --primary-light: #a8c4cc;
    --primary-dark: #5d8089;
    --primary-rgb: 125, 158, 167;
    --secondary: #ca898a;
    --secondary-light: #e0b0b1;
    --secondary-dark: #b36e6f;
    --secondary-rgb: 202, 137, 138;

    /* Backgrounds */
    --bg-cream: #faf6f2;
    --bg-white: #ffffff;
    --bg-rose: #fdf0ef;
    --bg-blue-soft: #f0f5f7;

    /* Text */
    --text-dark: #2d2a2a;
    --text-body: #5a5656;
    --text-light: #8a8585;
    --text-white: #ffffff;

    /* Misc */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.10);
    --shadow-glow-primary: 0 8px 32px rgba(125,158,167,0.35);
    --shadow-glow-secondary: 0 8px 32px rgba(202,137,138,0.35);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Typography */
    --font-primary: 'Advent Pro', Arial, Helvetica, sans-serif;
    --font-body: 'Roboto', Arial, sans-serif;
}

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

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-body);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.2;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(125,158,167,0.5);
}

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

.btn--outline:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    transform: translateY(-2px);
}

.btn--glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
    filter: blur(12px);
}

.btn--glow:hover::after {
    opacity: 0.6;
}

.btn--wide {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ---------- Section Styling ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(125,158,167,0.12), rgba(202,137,138,0.12));
    color: var(--primary-dark);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-title--light {
    color: white;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    margin: 0 auto 16px;
}

.section-line--light {
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-desc--light {
    color: rgba(255,255,255,0.8);
}

/* ---------- INTRO SCREEN ---------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #f8f2ee 0%, #fdf0ef 40%, #f0f5f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
    transition: opacity 1s cubic-bezier(0.4, 0, 0, 1), visibility 1s cubic-bezier(0.4, 0, 0, 1);
}

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

.loader.hidden .loader-content {
    transform: scale(1.08);
    opacity: 0;
}

.loader.hidden .loader-blob {
    transform: scale(2.5);
    opacity: 0;
}

/* Morphing background blobs */
.loader-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    transition: all 1.2s ease;
}

.loader-blob--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125,158,167,0.4) 0%, transparent 70%);
    top: -50px;
    right: -80px;
    animation: blobFloat1 6s ease-in-out infinite;
}

.loader-blob--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(202,137,138,0.35) 0%, transparent 70%);
    bottom: -30px;
    left: -60px;
    animation: blobFloat2 7s ease-in-out infinite;
}

.loader-blob--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(125,158,167,0.25) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation: blobFloat3 8s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
    33% { transform: translate(-30px, 40px) scale(1.15); border-radius: 40% 60% 50% 50%; }
    66% { transform: translate(20px, -20px) scale(0.9); border-radius: 50% 40% 60% 50%; }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
    33% { transform: translate(40px, -30px) scale(1.1); border-radius: 60% 40% 50% 50%; }
    66% { transform: translate(-20px, 20px) scale(0.95); border-radius: 40% 50% 40% 60%; }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.2); }
}

/* Floating petals */
.loader-petal {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50% 50% 50% 0;
    opacity: 0;
    animation: petalFloat 3s ease-in-out infinite;
}

.loader-petal--1 { background: rgba(202,137,138,0.5); top: 20%; left: 15%; animation-duration: 3.5s; }
.loader-petal--2 { background: rgba(125,158,167,0.5); top: 30%; right: 20%; width: 6px; height: 6px; animation-delay: 0.3s; animation-duration: 4s; }
.loader-petal--3 { background: rgba(202,137,138,0.4); bottom: 30%; left: 25%; width: 10px; height: 10px; animation-delay: 0.6s; animation-duration: 3.2s; }
.loader-petal--4 { background: rgba(125,158,167,0.4); bottom: 25%; right: 15%; width: 7px; height: 7px; animation-delay: 0.2s; animation-duration: 3.8s; }
.loader-petal--5 { background: rgba(202,137,138,0.3); top: 60%; left: 10%; width: 5px; height: 5px; animation-delay: 0.5s; animation-duration: 4.2s; }
.loader-petal--6 { background: rgba(125,158,167,0.35); top: 15%; right: 30%; width: 9px; height: 9px; animation-delay: 0.8s; animation-duration: 3s; }

@keyframes petalFloat {
    0% { opacity: 0; transform: translateY(20px) rotate(0deg) scale(0.5); }
    20% { opacity: 0.8; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-60px) rotate(180deg) scale(1); }
}

/* Intro content */
.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0, 1);
}

/* Logo with glow */
.loader-logo-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
}

.loader-logo {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: logoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.1s;
}

.loader-logo-glow {
    position: absolute;
    inset: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(125,158,167,0.3), rgba(202,137,138,0.3));
    filter: blur(16px);
    z-index: 1;
    opacity: 0;
    animation: glowPulse 2s ease-in-out infinite 0.5s;
}

@keyframes logoReveal {
    to { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* Brand name */
.loader-brand {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(12px);
    animation: introFadeUp 0.7s ease forwards 0.4s;
}

/* Welcome tagline */
.loader-tagline {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    animation: introFadeUp 0.7s ease forwards 0.7s;
}

/* Decorative line */
.loader-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 20px auto 0;
    animation: lineExpand 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.9s;
}

@keyframes introFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
    to { width: 60px; }
}

/* ---------- FLOATING CALL BUTTON ---------- */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-secondary);
    transition: opacity 0.4s ease, box-shadow 0.3s ease;
    opacity: 0;
    pointer-events: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.floating-call.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (hover: hover) {
    .floating-call:hover {
        box-shadow: 0 12px 40px rgba(202,137,138,0.6);
    }
}

.floating-call:active {
    opacity: 0.85;
}

.call-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    animation: callPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes callPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}

.header.scrolled {
    background: rgba(250,246,242,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

@media (hover: hover) and (min-width: 768px) {
    .header.scrolled {
        background: rgba(250,246,242,0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.header-logo img {
    height: 46px;
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.header.scrolled .header-logo img {
    transform: scale(0.85);
}

.header-nav {
    display: none;
    gap: 8px;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.nav-link {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background: rgba(125,158,167,0.1);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- MOBILE NAV OVERLAY ---------- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(250,246,242,0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.mobile-nav-overlay.open .mobile-nav-content {
    transform: translateY(0);
}

.mobile-nav-logo {
    width: 100px;
    border-radius: var(--radius-md);
    margin: 0 auto 40px;
}

.mobile-nav-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 16px 0;
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow-secondary);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5d8089 0%, #7d9ea7 30%, #ca898a 70%, #b36e6f 100%);
    background-size: cover;
    transform: scale(1.1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    will-change: transform, opacity;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.15);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

@media (min-width: 768px) {
    .hero-wave svg {
        height: 120px;
    }
}

/* ---------- FADE MESSAGES ---------- */
.fade-message {
    padding: 60px 20px;
    text-align: center;
    background: var(--bg-cream);
    overflow: hidden;
}

.fade-message--rose {
    background: var(--bg-rose);
}

.fade-message--inline {
    padding: 48px 0;
    background: transparent;
}

.fade-message-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
}

.fade-message-decoration {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.fade-message--rose .fade-message-decoration {
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.fade-message-text {
    font-family: var(--font-primary);
    font-size: clamp(1.15rem, 3.5vw, 1.5rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.fade-message-text strong {
    font-weight: 600;
    color: var(--primary-dark);
}

.fade-message--rose .fade-message-text strong {
    color: var(--secondary-dark);
}

/* ---------- EASTER SECTION ---------- */
.easter-section {
    background: var(--bg-cream);
    padding: 80px 0 0;
    position: relative;
}

.easter-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .easter-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easter-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    border: 1px solid rgba(125,158,167,0.08);
}

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

.easter-card-icon {
    margin-bottom: 16px;
}

.easter-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.easter-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.easter-hours {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto 48px;
    border: 1px solid rgba(125,158,167,0.08);
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hours-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hours-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    background: var(--bg-cream);
}

.hours-row--header {
    font-weight: 600;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(125,158,167,0.1), rgba(202,137,138,0.08));
}

.section-wave {
    position: relative;
    margin-top: -1px;
    line-height: 0;
}

.section-wave svg {
    width: 100%;
    height: 80px;
}

/* ---------- VIDEO SECTION ---------- */
.video-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.video-wrapper {
    max-width: 360px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.video-placeholder {
    aspect-ratio: 9 / 16;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 40%, var(--secondary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: videoGlow 3s ease-in-out infinite;
}

@keyframes videoGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

.video-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.video-placeholder:hover .video-play-btn {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.video-play-btn svg {
    margin-left: 4px;
}

.video-caption {
    position: absolute;
    bottom: 60px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.video-subcaption {
    position: absolute;
    bottom: 36px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* ---------- GALLERIES ---------- */
.galleries-section {
    background: var(--bg-white);
    padding: 40px 0 80px;
}

.gallery-block {
    margin-bottom: 32px;
}

.gallery-swiper {
    padding-bottom: 48px;
}

.gallery-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    border: 1px solid rgba(125,158,167,0.06);
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.gallery-placeholder {
    aspect-ratio: 3 / 4;
    background: linear-gradient(
        160deg,
        hsl(var(--card-hue, 190), 30%, 85%) 0%,
        hsl(var(--card-hue, 190), 25%, 92%) 50%,
        hsl(var(--card-hue, 190), 35%, 80%) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Swiper custom pagination */
.gallery-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    opacity: 0.4;
    transition: all var(--transition);
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ---------- BRANDS SECTION ---------- */
.brands-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.brands-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    margin-top: 16px;
}

.brands-track {
    display: flex;
    gap: 32px;
    animation: brandsScroll 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes brandsScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.brand-item {
    flex-shrink: 0;
}

.brand-logo-placeholder {
    width: 130px;
    height: 70px;
    background: var(--bg-cream);
    border: 1px solid rgba(125,158,167,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all var(--transition);
}

.brand-logo-placeholder:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-soft);
}

/* ---------- MAP SECTION ---------- */
.map-section {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 0 0 80px;
    position: relative;
}

.map-wave-top {
    line-height: 0;
}

.map-wave-top svg {
    width: 100%;
    height: 80px;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 32px;
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}

.map-info-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 32px;
    color: white;
}

.map-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .map-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.map-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.map-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.map-info-item p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.map-info-item a {
    color: white;
    font-weight: 600;
}

.map-info-item a:hover {
    text-decoration: underline;
}

.map-section .btn--primary {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.map-section .btn--primary:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    background: var(--bg-cream);
    padding: 0 0 80px;
    position: relative;
}

.contact-wave-top {
    line-height: 0;
    margin-bottom: 48px;
}

.contact-wave-top svg {
    width: 100%;
    height: 80px;
}

.contact-cta-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid rgba(202,137,138,0.1);
}

.contact-cta-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(202,137,138,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 28px;
    position: relative;
}

.contact-cta-text strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.contact-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-glow-secondary);
    transition: all var(--transition);
    position: relative;
}

.contact-call-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(202,137,138,0.5);
}

.contact-viber {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-viber strong {
    color: #7360f2;
}

.contact-tip {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    border: 1px solid rgba(125,158,167,0.08);
}

.contact-tip-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(125,158,167,0.12), rgba(202,137,138,0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-tip-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.contact-tip p {
    line-height: 1.6;
}

.contact-tip strong {
    color: var(--primary-dark);
}

/* Hours Card */
.hours-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(125,158,167,0.08);
}

.hours-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--bg-cream);
    gap: 8px;
}

.hours-day:nth-child(even) {
    background: var(--bg-blue-soft);
}

.hours-day-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hours-day-time {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
    text-align: right;
}

.hours-day--closed {
    background: var(--bg-rose);
}

.hours-day--closed .hours-day-time {
    color: var(--secondary-dark);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 50px;
}

.footer-inner {
    text-align: center;
    padding: 32px 20px 40px;
}

.footer-logo {
    width: 70px;
    border-radius: var(--radius-sm);
    margin: 0 auto 16px;
    opacity: 0.8;
}

.footer-address {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-phone {
    margin-bottom: 16px;
}

.footer-phone a {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1rem;
}

.footer-phone a:hover {
    color: white;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 16px auto;
}

.footer-copy {
    font-size: 0.8rem;
}

.footer-copy a {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-copy a:hover {
    color: white;
}

/* ---------- REVEAL ANIMATIONS ---------- */

/* GSAP handles these on desktop, so only set initial state */
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- MOBILE: IntersectionObserver reveals ---------- */
.will-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside section-headers */
.will-reveal.section-header > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.will-reveal.in-view.section-header > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.will-reveal.in-view.section-header > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.will-reveal.in-view.section-header > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.will-reveal.in-view.section-header > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }

/* Easter cards stagger on mobile */
.easter-card.will-reveal:nth-child(1) { transition-delay: 0s; }
.easter-card.will-reveal:nth-child(2) { transition-delay: 0.1s; }
.easter-card.will-reveal:nth-child(3) { transition-delay: 0.2s; }

/* ---------- DECORATIVE BLOBS (CSS-only) ---------- */
.easter-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(202,137,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.galleries-section::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(125,158,167,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .easter-hours {
        padding: 24px 16px;
    }

    .hours-row {
        font-size: 0.8rem;
        padding: 10px 12px;
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
    }

    .contact-cta-card {
        padding: 32px 20px;
    }

    .contact-call-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .contact-tip {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map-info-grid {
        gap: 16px;
    }

    .map-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brand-logo-placeholder {
        width: 110px;
        height: 60px;
        font-size: 0.8rem;
    }

    .hours-day {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hours-day-time {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .hero-wave svg {
        height: 150px;
    }

    .map-wave-top svg,
    .contact-wave-top svg {
        height: 120px;
    }

    .section-wave svg {
        height: 120px;
    }

    .easter-section {
        padding: 100px 0 0;
    }

    .video-section,
    .brands-section {
        padding: 100px 0;
    }

    .map-section {
        padding-bottom: 100px;
    }

    .contact-section {
        padding-bottom: 100px;
    }

    .fade-message {
        padding: 80px 20px;
    }

    .contact-cta-card {
        padding: 48px 40px;
    }
}

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

    html {
        scroll-behavior: auto;
    }

    .brands-track {
        animation: none;
    }
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(125,158,167,0.3);
    color: var(--text-dark);
}
