/* =====================================================
   TAKÍ ATÖLYESI - ULTRA PREMIUM CORPORATE DESIGN
   Apple & Hermès Level Refinement
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* =====================================================
   CSS VARIABLES - Luxury Palette
   ===================================================== */
:root {
    /* ===== LUXURY NEUTRAL PALETTE ===== */
    /* Primary - Deep Noir */
    --noir: #0D0D0D;
    --noir-soft: #1A1A1A;
    --noir-card: #141414;

    /* Accent - Refined Gold */
    --gold: #C9A962;
    --gold-light: #E1C896;
    --gold-dark: #A68942;
    --gold-muted: rgba(201, 169, 98, 0.15);
    --gold-glow: rgba(201, 169, 98, 0.3);

    /* Secondary - Warm Rose */
    --rose: #B76E79;
    --rose-light: #D4949D;
    --rose-dark: #8B4A52;
    --rose-muted: rgba(183, 110, 121, 0.15);

    /* Neutrals - Sophisticated Scale */
    --slate-50: #FAFAFA;
    --slate-100: #F5F5F5;
    --slate-200: #E5E5E5;
    --slate-300: #D4D4D4;
    --slate-400: #A3A3A3;
    --slate-500: #737373;
    --slate-600: #525252;
    --slate-700: #404040;
    --slate-800: #262626;
    --slate-900: #171717;

    /* Semantic Colors */
    --bg-primary: #FEFEFE;
    --bg-secondary: #FAFAF9;
    --bg-tertiary: #F5F4F2;
    --bg-card: #FFFFFF;
    --text-primary: #171717;
    --text-secondary: #525252;
    --text-tertiary: #737373;
    --text-muted: #A3A3A3;

    /* Borders */
    --border-subtle: rgba(0, 0, 0, 0.04);
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.12);
    --border-gold: rgba(201, 169, 98, 0.3);

    /* Shadows - Layered Depth */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 24px rgba(201, 169, 98, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.02);

    /* Gradients - Subtle Luxury */
    --gradient-gold: linear-gradient(135deg, #C9A962 0%, #E1C896 50%, #A68942 100%);
    --gradient-gold-soft: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(225, 200, 150, 0.05) 100%);
    --gradient-noir: linear-gradient(180deg, #171717 0%, #0D0D0D 100%);
    --gradient-cream: linear-gradient(180deg, #FEFEFE 0%, #F5F4F2 100%);
    --gradient-radial: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 98, 0.06), transparent);
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);

    /* Typography - System Pro */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing System - 4px base */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.15s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

::selection {
    background: var(--gold-muted);
    color: var(--noir);
}

/* =====================================================
   PREMIUM BACKGROUND - Subtle Elegance
   ===================================================== */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-primary);
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-radial);
}

.bg-grid {
    display: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: floatOrb 30s ease-in-out infinite;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08), transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.05), transparent 70%);
    bottom: 10%;
    left: -200px;
    animation-delay: -10s;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.04), transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -20s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(40px, -40px) scale(1.03);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.97);
    }

    75% {
        transform: translate(25px, 40px) scale(1.02);
    }
}

.bg-noise {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    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)'/%3E%3C/svg%3E");
}

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

/* =====================================================
   NAVIGATION - Ultra Premium
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: rgba(254, 254, 254, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
    padding: var(--space-3) 0;
    background: rgba(254, 254, 254, 0.92);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color var(--duration-fast) var(--ease-out);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-noir) !important;
    color: var(--slate-50) !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-full);
    font-weight: 500 !important;
    letter-spacing: 0.02em;
    transition: all var(--duration-normal) var(--ease-out) !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO SECTION - Editorial Style
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-32) var(--space-8) var(--space-20);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 70% 40%, rgba(201, 169, 98, 0.06), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 20px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-8);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-10);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 18px 36px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shimmer);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-noir);
    color: var(--slate-50);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}

.btn-full {
    width: 100%;
}

/* Hero Image - Premium Frame */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15), transparent 60%);
    filter: blur(80px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--gradient-gold-soft);
    padding: 4px;
    z-index: 1;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        0 0 0 1px rgba(201, 169, 98, 0.2),
        var(--shadow-2xl);
}

.instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-2xl) - 4px);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

/* =====================================================
   SECTIONS COMMON - Elegant Spacing
   ===================================================== */
section {
    padding: var(--space-24) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-5);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
}

/* =====================================================
   ABOUT SECTION - Card Grid
   ===================================================== */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.about-card {
    padding: var(--space-10) var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.about-card p {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

/* =====================================================
   WORKSHOP SECTION - Featured Card
   ===================================================== */
.workshop {
    background: var(--bg-primary);
    position: relative;
}

.workshop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.04), transparent 60%);
    pointer-events: none;
}

.workshop-single {
    display: flex;
    justify-content: center;
}

.workshop-card {
    max-width: 560px;
    width: 100%;
    padding: var(--space-12) var(--space-10);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-slow) var(--ease-out);
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

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

.workshop-card>* {
    position: relative;
    z-index: 1;
}

.workshop-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.workshop-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.workshop-features {
    list-style: none;
    margin-bottom: var(--space-8);
    padding: var(--space-6) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.workshop-features li {
    padding: var(--space-3) 0;
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.workshop-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A68942' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.workshop-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 15px;
    color: var(--text-tertiary);
}

.workshop-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* =====================================================
   REGISTRATION SECTION - Split Layout
   ===================================================== */
.registration {
    background: var(--bg-secondary);
    padding: var(--space-24) 0;
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.registration-info {
    padding-right: var(--space-10);
}

.registration-info .section-title,
.registration-info .section-subtitle,
.registration-info .section-badge {
    text-align: left;
}

.registration-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.reg-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out);
}

.reg-feature:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.reg-feature h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.reg-feature p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Registration Form - Premium Input */
/* Centered Layout */
.registration-centered {
    display: flex;
    justify-content: center;
}

.registration-centered .registration-form-wrapper {
    max-width: 520px;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.form-header .section-badge {
    margin-bottom: var(--space-4);
}

.form-header .section-title {
    margin-bottom: var(--space-3);
}

.form-header .section-subtitle {
    margin-bottom: 0;
}

.registration-form-wrapper {
    padding: var(--space-10);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px var(--gold-muted);
}

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

/* =====================================================
   FOOTER - Refined Minimal
   ===================================================== */
.footer {
    background: var(--bg-tertiary);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-12);
}

.footer-brand p {
    margin-top: var(--space-2);
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: var(--space-8);
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
}

.social-link:hover {
    background: var(--gradient-noir);
    border-color: var(--noir);
    color: var(--slate-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* =====================================================
   MODAL - Elegant Overlay
   ===================================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(12px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 420px;
    width: 90%;
    padding: var(--space-12);
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    animation: modalIn 0.4s var(--ease-out);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold-muted);
    border-radius: 50%;
    margin-bottom: var(--space-5);
    font-size: 24px;
}

.modal-icon::before {
    content: '✓';
    color: var(--gold-dark);
    font-weight: 600;
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.modal-content p {
    color: var(--text-tertiary);
    margin-bottom: var(--space-8);
    font-size: 15px;
}

/* =====================================================
   RESPONSIVE - TABLET (1024px)
   ===================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-description {
        margin: 0 auto var(--space-10);
    }

    .hero-cta {
        justify-content: center;
    }

    .image-frame {
        max-width: 320px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .registration-info {
        text-align: center;
        padding: 0;
    }

    .registration-info .section-title,
    .registration-info .section-subtitle,
    .registration-info .section-badge {
        text-align: center;
    }

    .registration-features {
        align-items: center;
    }

    .reg-feature {
        text-align: center;
        flex-direction: column;
        max-width: 340px;
    }
}

/* =====================================================
   RESPONSIVE - MOBILE (768px)
   ===================================================== */
@media (max-width: 768px) {
    :root {
        --space-8: 24px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(254, 254, 254, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-8);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s var(--ease-out);
    }

    .nav-links a {
        font-size: 20px;
        letter-spacing: 0.05em;
        font-weight: 500;
        color: var(--text-primary);
    }

    .nav-links .nav-cta {
        margin-top: var(--space-6);
        padding: 18px 48px !important;
    }

    .hero {
        padding: var(--space-24) var(--space-5) var(--space-16);
        min-height: auto;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: var(--space-8);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-4);
    }

    .btn {
        width: 100%;
        padding: 18px 24px;
    }

    .image-frame {
        max-width: 260px;
    }

    .hero-image::before {
        width: 300px;
        height: 300px;
    }

    section {
        padding: var(--space-16) 0;
    }

    .container {
        padding: 0 var(--space-5);
    }

    .section-header {
        margin-bottom: var(--space-10);
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .about-card {
        padding: var(--space-8) var(--space-6);
    }

    .about-card h3 {
        font-size: 18px;
    }

    .workshop-card {
        padding: var(--space-8) var(--space-6);
    }

    .workshop-title {
        font-size: 24px;
    }

    .price-amount {
        font-size: 40px;
    }

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

    .registration-form-wrapper {
        padding: var(--space-6);
    }

    .form-group input,
    .form-group textarea {
        padding: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-4);
    }

    .footer-social {
        justify-content: center;
    }

    .modal-content {
        margin: var(--space-5);
        padding: var(--space-8);
    }
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ===================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    .nav-container {
        padding: 0 var(--space-4);
    }

    .logo-text {
        font-size: 18px;
    }

    .hero {
        padding: var(--space-20) var(--space-4) var(--space-12);
    }

    .hero-title {
        font-size: 30px;
    }

    .image-frame {
        max-width: 220px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-card {
        padding: var(--space-6) var(--space-5);
    }

    .workshop-card {
        padding: var(--space-6) var(--space-5);
    }

    .price-amount {
        font-size: 36px;
    }

    .registration-form-wrapper {
        padding: var(--space-5);
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* Reveal on scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   TOUCH DEVICE OPTIMIZATIONS
   ===================================================== */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.98);
    }

    .about-card:hover,
    .glass-card:hover,
    .workshop-card:hover {
        transform: none;
    }

    .nav-links a:active {
        color: var(--gold);
    }
}

/* Smooth scrolling on iOS */
@supports (-webkit-touch-callout: none) {
    html {
        scroll-behavior: auto;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {

    .page-bg,
    .navbar,
    .modal {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title,
    .hero-title {
        color: black;
    }

    a {
        text-decoration: underline;
    }
}

/* =====================================================
   REGISTRATION CLOSED OVERLAY
   ===================================================== */
.registration-closed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    z-index: 10;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.closed-message {
    text-align: center;
    padding: 40px 20px;
}

.closed-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.closed-message h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.closed-message p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Mobile - Registration Section */
@media (max-width: 768px) {
    .registration-wrapper {
        grid-template-columns: 1fr;
    }

    .registration-info {
        padding-right: 0;
        padding-bottom: var(--space-8);
    }

    .registration-info .section-title,
    .registration-info .section-subtitle,
    .registration-info .section-badge {
        text-align: center;
    }

    .registration-features {
        margin-top: var(--space-6);
    }

    .registration-form-wrapper {
        padding: var(--space-6);
    }
}

@media (max-width: 480px) {
    .registration {
        padding: var(--space-16) 0;
    }

    .registration-form-wrapper {
        padding: var(--space-5);
    }

    .form-header {
        margin-bottom: var(--space-6);
    }

    .form-header .section-title {
        font-size: 22px;
    }
}

/* =====================================================
   INTERACTIVE MASCOT (Mobile Only)
   ===================================================== */
.mascot {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 999;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    animation: mascotBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1s;
}

@keyframes mascotBounceIn {
    from {
        opacity: 0;
        transform: scale(0) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.mascot-body {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #C9A962 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot:active .mascot-body {
    transform: scale(0.9);
}

.mascot.happy .mascot-body {
    animation: happyBounce 0.5s ease;
}

@keyframes happyBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-4px);
    }

    75% {
        transform: translateY(-6px);
    }
}

.mascot-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mascot-eyes {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.mascot-eye {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mascot-pupil {
    width: 5px;
    height: 5px;
    background: #333;
    border-radius: 50%;
    transition: transform 0.1s ease-out;
}

.mascot.blink .mascot-eye {
    height: 2px;
}

.mascot-cheeks {
    position: absolute;
    width: 100%;
    top: 55%;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    pointer-events: none;
}

.mascot-cheek {
    width: 8px;
    height: 5px;
    background: rgba(255, 150, 150, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.mascot.happy .mascot-cheek {
    opacity: 1;
}

.mascot-mouth {
    width: 8px;
    height: 4px;
    border-radius: 0 0 50% 50%;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 4px;
    transition: all 0.2s;
}

.mascot-mouth.smile {
    width: 12px;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
}

.mascot-sparkle {
    position: absolute;
    top: -8px;
    right: -4px;
    font-size: 16px;
    opacity: 0;
    transform: scale(0) rotate(-15deg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-sparkle.show {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mascot-speech {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: white;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(8px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.mascot-speech::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.mascot-speech.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hide mascot on desktop */
@media (min-width: 769px) {
    .mascot {
        display: none;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .mascot,
    .mascot-body,
    .mascot-sparkle,
    .mascot-speech {
        animation: none;
        transition-duration: 0.01ms;
    }
}

/* =====================================================
   EVENT DATE DISPLAY - Premium Corporate Style
   ===================================================== */
.event-date-display {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.event-date-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.event-date-display.visible {
    display: flex;
    animation: fadeInScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.event-date-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-date-label svg {
    width: 14px;
    height: 14px;
}

.event-date-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.event-date-day {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 4px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    font-size: 14px;
    color: var(--text-secondary);
}

.event-location svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.event-date-icon {
    font-size: 18px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* =====================================================
   INSTAGRAM ICON IN FOOTER
   ===================================================== */
.instagram-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
}

.social-link {
    display: inline-flex;
    align-items: center;
}

.secret-link {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.4);
    cursor: pointer;
    font: inherit;
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.secret-link:hover {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.3) 0%, rgba(201, 169, 98, 0.15) 100%);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

/* =====================================================
   ✨ MYSTERIOUS ZIPPER REVEAL ✨
   ===================================================== */
.mystery-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.mystery-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Zipper panels */
.mystery-left,
.mystery-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0f0f2a 100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.mystery-left {
    left: 0;
    transform: translateX(-100%);
    border-right: 2px solid rgba(201, 169, 98, 0.5);
}

.mystery-right {
    right: 0;
    transform: translateX(100%);
    border-left: 2px solid rgba(201, 169, 98, 0.5);
}

.mystery-overlay.active .mystery-left,
.mystery-overlay.active .mystery-right {
    transform: translateX(0);
}

.mystery-overlay.opened .mystery-left {
    transform: translateX(-80%);
}

.mystery-overlay.opened .mystery-right {
    transform: translateX(80%);
}

/* Zipper in the middle */
.mystery-zipper {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 0;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #C9A962, #E8D5A3, #C9A962);
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.8);
    opacity: 0;
}

.mystery-overlay.active .mystery-zipper {
    opacity: 1;
}

.mystery-overlay.unzipping .mystery-zipper {
    height: 100%;
}

.zipper-pull {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #C9A962, #fff, #E8D5A3);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 169, 98, 1), 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pullBounce 0.3s ease infinite;
}

@keyframes pullBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(3px);
    }
}

/* Content */
.mystery-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.mystery-overlay.revealed .mystery-content {
    opacity: 1;
    pointer-events: all;
}

.mystery-text {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 30px rgba(201, 169, 98, 0.8), 0 0 60px rgba(201, 169, 98, 0.5);
    line-height: 1.2;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mystery-overlay.revealed .mystery-text {
    opacity: 1;
    transform: scale(1);
}

.mystery-subtitle {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.3s;
}

.mystery-overlay.revealed .mystery-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .mystery-text {
        font-size: 40px;
    }

    .mystery-subtitle {
        font-size: 14px;
    }
}