/* ═══════════════════════════════════════════════════════════════
   CLAUDIO - Neon Pizzeria Theme
   Le Restaurant où l'on apprend à cuisiner avec l'IA
═══════════════════════════════════════════════════════════════ */

:root {
    /* Couleurs principales - Palette Comptoir IA */
    --claudio-yellow: #FFE600;
    --claudio-orange: #FF6B35;
    --claudio-purple: #9747FF;
    --claudio-blue: #4B7BE5;
    --claudio-pink: #E94E8E;
    --claudio-green: #2ECC71;
    --claudio-cream: #FFF8F0;

    /* Fonds - Style Comptoir IA */
    --bg-dark: #5B21B6;
    --bg-darker: #4C1D95;
    --bg-card: rgba(255, 255, 255, 0.1);
    --bg-gradient: linear-gradient(135deg, #7C3AED 0%, #5B21B6 30%, #4C1D95 60%, #3730A3 100%);

    /* Néons */
    --neon-glow-yellow: 0 0 10px #FFE600, 0 0 20px #FFE600, 0 0 40px #FFE600;
    --neon-glow-orange: 0 0 10px #FF6B35, 0 0 20px #FF6B35, 0 0 40px #FF6B35;
    --neon-glow-purple: 0 0 10px #9747FF, 0 0 20px #9747FF, 0 0 40px #9747FF;
    --neon-glow-blue: 0 0 10px #4B7BE5, 0 0 20px #4B7BE5, 0 0 40px #4B7BE5;
    --neon-glow-pink: 0 0 10px #E94E8E, 0 0 20px #E94E8E;

    /* Typographie */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════════════════════ */

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--claudio-yellow), var(--claudio-orange), var(--claudio-pink));
    box-shadow: 0 0 10px var(--claudio-yellow), 0 0 20px var(--claudio-orange);
    transition: width 0.1s ease-out;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */

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

@keyframes glow-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blur-in {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Animation utilities */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-fill-mode: forwards;
}

.animate-on-scroll.animated.fade-up {
    animation: fade-in-up 0.6s ease forwards;
}

.animate-on-scroll.animated.scale-in {
    animation: scale-in 0.6s ease forwards;
}

.animate-on-scroll.animated.slide-left {
    animation: slide-in-left 0.6s ease forwards;
}

.animate-on-scroll.animated.slide-right {
    animation: slide-in-right 0.6s ease forwards;
}

.animate-on-scroll.animated.blur-in {
    animation: blur-in 0.8s ease forwards;
}

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s !important; }
.stagger-2 { animation-delay: 0.2s !important; }
.stagger-3 { animation-delay: 0.3s !important; }
.stagger-4 { animation-delay: 0.4s !important; }
.stagger-5 { animation-delay: 0.5s !important; }
.stagger-6 { animation-delay: 0.6s !important; }

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

.animate-neon {
    animation: neon-flicker 4s infinite;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange), var(--claudio-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow border effect */
.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange), var(--claudio-purple), var(--claudio-blue));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border:hover::after {
    opacity: 1;
    filter: blur(10px);
}

/* Selection style */
::selection {
    background: var(--claudio-yellow);
    color: var(--bg-darker);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--claudio-purple), var(--claudio-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange));
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, select:focus {
    outline: 2px solid var(--claudio-yellow);
    outline-offset: 2px;
}

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

/* Button hover micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Card lift effect */
.menu-category, .recipe-card, .event-card, .pricing-card, .resource-card, .testimonial-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Ingredient pill bounce */
.ingredient {
    cursor: pointer;
}

.ingredient:active {
    transform: scale(0.95);
}

/* Link underline animation */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--claudio-yellow);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Recipe card hover effect */
.recipe-card:hover .recipe-image {
    transform: scale(1.05);
}

.recipe-image {
    transition: transform 0.3s ease;
}

/* Toque animation on hover */
.recipe-card:hover .toque:not(.empty) {
    animation: bounce 0.5s ease;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
.hero-image,
.cursor-dot,
.cursor-ring,
.scroll-progress-bar {
    will-change: transform;
}

.preloader {
    will-change: opacity, visibility;
}

img {
    content-visibility: auto;
}

body {
    font-family: var(--font-body);
    background: var(--bg-gradient);
    color: var(--claudio-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(76, 29, 149, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    text-decoration: none;
    letter-spacing: 3px;
    animation: neon-flicker 4s infinite;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    letter-spacing: 5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--claudio-cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    outline: none;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--claudio-yellow);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--claudio-yellow);
    box-shadow: var(--neon-glow-yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--claudio-purple), var(--claudio-blue));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-shadow: none !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--neon-glow-purple);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--claudio-yellow);
    transition: 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - Bienvenue Chez Claudio
═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(255, 107, 53, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 50%, rgba(75, 123, 229, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 0%, rgba(233, 78, 142, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #7C3AED 0%, #5B21B6 30%, #4C1D95 60%, #3730A3 100%);
}

.hero-image {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mask-image: linear-gradient(to left, black 60%, transparent);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-text {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 230, 0, 0.15);
    border: 1px solid var(--claudio-yellow);
    color: var(--claudio-yellow);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px var(--claudio-yellow); }
    50% { box-shadow: 0 0 20px var(--claudio-yellow); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 .highlight {
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.hero h1 .highlight-orange {
    color: var(--claudio-orange);
    text-shadow: var(--neon-glow-orange);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    margin-bottom: 2rem;
    max-width: 550px;
    min-height: 3rem;
}

.typing-text {
    display: inline;
}

.typing-cursor {
    display: inline-block;
    color: var(--claudio-yellow);
    font-weight: 300;
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-quote {
    background: rgba(255, 230, 0, 0.05);
    border-left: 3px solid var(--claudio-yellow);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 248, 240, 0.9);
}

.hero-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--claudio-orange);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange));
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--claudio-cream);
    border: 2px solid var(--claudio-cream);
}

.btn-secondary:hover {
    border-color: var(--claudio-yellow);
    color: var(--claudio-yellow);
    box-shadow: var(--neon-glow-yellow);
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF BAR
═══════════════════════════════════════════════════════════════ */

.social-proof {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.social-proof-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-proof p {
    text-align: center;
    color: rgba(255, 248, 240, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logos span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--claudio-cream);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logos span:hover {
    background: rgba(255, 230, 0, 0.1);
    color: var(--claudio-yellow);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION STYLES
═══════════════════════════════════════════════════════════════ */

section {
    padding: 6rem 0;
    position: relative;
}

/* Section dividers */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--claudio-yellow), transparent);
    opacity: 0.5;
}

section:last-of-type::after {
    display: none;
}

/* Alternating section backgrounds */
section:nth-child(even) {
    background: rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--claudio-yellow);
    opacity: 0.5;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--claudio-orange);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title .neon {
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.section-subtitle {
    color: rgba(255, 248, 240, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════════════════════════════ */

#manifesto {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

#manifesto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.manifesto-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.manifesto-number {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    line-height: 1;
    margin-bottom: 0;
}

.manifesto-stat {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--claudio-orange);
    margin-bottom: 3rem;
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.manifesto-title .highlight {
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.manifesto-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.9);
    margin-bottom: 2rem;
}

.manifesto-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--claudio-cream);
    padding: 2rem;
    border-left: 4px solid var(--claudio-yellow);
    background: rgba(255, 230, 0, 0.05);
    margin: 3rem 0;
    text-align: left;
}

.manifesto-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 700;
    color: var(--claudio-orange);
    font-size: 1rem;
}

.manifesto-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.manifesto-point {
    text-align: center;
    padding: 2rem;
}

.manifesto-point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.manifesto-point h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--claudio-yellow);
    margin-bottom: 0.5rem;
}

.manifesto-point p {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */

#testimonials {
    padding: 6rem 0;
    background: rgba(255, 230, 0, 0.03);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--claudio-yellow);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--claudio-purple), var(--claudio-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--claudio-yellow);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.6);
}

/* Featured Testimonial */
.featured-testimonial {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(151, 71, 255, 0.1), rgba(91, 33, 182, 0.05));
    border-top: 1px solid rgba(255, 230, 0, 0.1);
    border-bottom: 1px solid rgba(255, 230, 0, 0.1);
}

.featured-quote {
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.featured-quote p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--claudio-cream);
    font-style: italic;
    padding: 0 2rem;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--claudio-yellow);
    opacity: 0.3;
    line-height: 0;
    position: absolute;
    top: -1rem;
    left: 0;
}

.quote-mark.quote-end {
    left: auto;
    right: 0;
    top: auto;
    bottom: -3rem;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--claudio-purple), var(--claudio-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.4);
}

.quote-info {
    text-align: left;
}

.quote-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.quote-info span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.7);
}

.quote-tags {
    color: var(--claudio-purple) !important;
    font-size: 0.85rem !important;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .featured-quote p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    .quote-mark {
        font-size: 4rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════ */

.stats-bar {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.08) 0%, rgba(151, 71, 255, 0.08) 100%);
    border-top: 1px solid rgba(255, 230, 0, 0.2);
    border-bottom: 1px solid rgba(255, 230, 0, 0.2);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(255, 230, 0, 0.03) 100px,
        rgba(255, 230, 0, 0.03) 101px
    );
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    background: rgba(255, 230, 0, 0.1);
    transform: translateY(-5px);
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 230, 0, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    line-height: 1;
    margin-bottom: 0.75rem;
    animation: glow-pulse 3s ease-in-out infinite;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LA CARTE - Capabilities
═══════════════════════════════════════════════════════════════ */

#carte {
    background: rgba(0, 0, 0, 0.15);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-category {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-category::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-category:hover::after {
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange), var(--claudio-pink));
    opacity: 1;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--claudio-yellow), var(--claudio-orange), var(--claudio-pink));
}

.menu-category:hover {
    transform: translateY(-5px);
    border-color: var(--claudio-yellow);
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--claudio-yellow);
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: var(--claudio-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-items {
    list-style: none;
}

.category-items li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-items li:last-child {
    border-bottom: none;
}

.category-items .item-name {
    color: var(--claudio-cream);
}

.category-items .item-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    background: rgba(255, 230, 0, 0.1);
    color: var(--claudio-yellow);
}

/* ═══════════════════════════════════════════════════════════════
   INGREDIENTS - APIs/MCPs
═══════════════════════════════════════════════════════════════ */

.ingredients-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 230, 0, 0.1);
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ingredient {
    background: rgba(255, 230, 0, 0.05);
    border: 1px solid rgba(255, 230, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.ingredient::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    color: var(--claudio-cream);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(255, 230, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ingredient::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ingredient:hover::before,
.ingredient:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ingredient:hover::after {
    transform: translateX(-50%);
}

.ingredient:hover {
    background: rgba(255, 230, 0, 0.1);
    border-color: var(--claudio-yellow);
    box-shadow: var(--neon-glow-yellow);
    transform: scale(1.05);
}

.ingredient-icon {
    font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   LES RECETTES - Tutorials
═══════════════════════════════════════════════════════════════ */

#recettes {
    background: var(--bg-dark);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--claudio-yellow);
    box-shadow: 0 25px 50px rgba(255, 230, 0, 0.25);
}

.recipe-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s ease-in-out infinite;
}

.recipe-badge.popular {
    background: linear-gradient(135deg, #FF6B35, #E63946);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.recipe-badge.new {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.recipe-badge.featured {
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange));
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.4);
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.recipe-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.recipe-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.recipe-difficulty {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.25rem;
    z-index: 5;
    background: rgba(0,0,0,0.3);
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
}

.recipe-difficulty .toque {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--claudio-yellow));
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-difficulty .toque:not(.empty) {
    animation: bounce 0.4s ease forwards;
}

.recipe-difficulty .toque.empty {
    opacity: 0.3;
    filter: none;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.recipe-tag.beginner {
    background: rgba(46, 204, 113, 0.15);
    color: #2ECC71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.recipe-tag.intermediate {
    background: rgba(255, 107, 53, 0.15);
    color: var(--claudio-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.recipe-tag.advanced {
    background: rgba(151, 71, 255, 0.15);
    color: var(--claudio-purple);
    border: 1px solid rgba(151, 71, 255, 0.3);
}

.recipe-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--claudio-cream);
}

.recipe-description {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.5);
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   LE MENU - Events
═══════════════════════════════════════════════════════════════ */

#menu {
    background: rgba(0, 0, 0, 0.2);
}

.events-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.event-main {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.15), rgba(255, 107, 53, 0.15), rgba(233, 78, 142, 0.1));
    border: 1px solid var(--claudio-yellow);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.event-main::before {
    content: 'NOUVEAU';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--claudio-red);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(45deg);
}

.event-main.webinar-live::before {
    display: none;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E63946, #FF6B35);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: pulse-live 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.5); }
    50% { box-shadow: 0 0 30px rgba(230, 57, 70, 0.8), 0 0 40px rgba(255, 107, 53, 0.4); }
}

.webinar-container {
    border: 2px solid rgba(255, 230, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.event-main-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    margin-bottom: 1rem;
}

.event-main-content p {
    color: rgba(255, 248, 240, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.event-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--claudio-orange);
    font-weight: 600;
}

.event-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-visual img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--claudio-yellow);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 230, 0, 0.15);
}

.event-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.event-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.event-card p {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   LA CUISINE - Portfolio
═══════════════════════════════════════════════════════════════ */

#cuisine {
    background: rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    border-color: var(--claudio-yellow);
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.15);
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 16, 0.95), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    background: var(--claudio-yellow);
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.portfolio-description {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.7);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESSOURCES
═══════════════════════════════════════════════════════════════ */

#ressources {
    background: rgba(255, 230, 0, 0.03);
    padding: 6rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--claudio-yellow);
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.15);
}

.resource-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--claudio-purple), var(--claudio-blue));
}

.resource-card:nth-child(2) .resource-icon {
    background: linear-gradient(135deg, var(--claudio-orange), var(--claudio-yellow));
}

.resource-card:nth-child(3) .resource-icon {
    background: linear-gradient(135deg, var(--claudio-pink), var(--claudio-purple));
}

.resource-card:nth-child(4) .resource-icon {
    background: linear-gradient(135deg, var(--claudio-blue), var(--claudio-green));
}

.resource-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--claudio-cream);
}

.resource-description {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--claudio-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.resource-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-link::after {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════════════════════════════
   L'ADDITION - Pricing
═══════════════════════════════════════════════════════════════ */

#addition {
    background: rgba(0, 0, 0, 0.15);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--claudio-yellow), transparent 30%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotate-gradient 4s linear infinite paused;
}

.pricing-card:hover::before {
    opacity: 0.3;
    animation-play-state: running;
}

@keyframes rotate-gradient {
    100% { transform: rotate(360deg); }
}

.pricing-card.featured {
    border-color: var(--claudio-yellow);
    transform: scale(1.05);
    background: rgba(255, 230, 0, 0.08);
    box-shadow: 0 0 40px rgba(255, 230, 0, 0.2);
}

.pricing-card.featured::before {
    content: 'RECOMMANDÉ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange));
    color: #1a0a2e;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--claudio-yellow);
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: rgba(255, 248, 240, 0.5);
    text-shadow: none;
}

.pricing-description {
    color: rgba(255, 248, 240, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--claudio-green);
    font-weight: bold;
}

/* ═══════════════════════════════════════════════════════════════
   RESERVATION - Training
═══════════════════════════════════════════════════════════════ */

#reservation {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

#reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 230, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

.reservation-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reservation-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.reservation-text h2 .neon {
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
}

.reservation-text p {
    color: rgba(255, 248, 240, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.reservation-features {
    list-style: none;
    margin-bottom: 2rem;
}

.reservation-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.reservation-features li::before {
    content: '👨‍🍳';
    font-size: 1.5rem;
}

.reservation-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.8);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 230, 0, 0.2);
    background: var(--bg-darker);
    color: var(--claudio-cream);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 230, 0, 0.2);
    background: var(--bg-darker);
    color: var(--claudio-cream);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--claudio-yellow);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.2);
}

.form-hint {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.5);
    margin: 0.2rem 0 0.4rem;
    line-height: 1.3;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    margin-top: 0.3rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.8);
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--claudio-yellow);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.2);
}

.form-group select option {
    background: var(--bg-dark);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 248, 240, 0.6);
    max-width: 300px;
    line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--claudio-yellow);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 248, 240, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 248, 240, 0.4);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 230, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--claudio-cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--claudio-yellow);
    background: rgba(255, 230, 0, 0.1);
    box-shadow: var(--neon-glow-yellow);
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════ */

.final-cta {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.1) 0%, rgba(151, 71, 255, 0.1) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 248, 240, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 230, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--claudio-cream);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--claudio-yellow);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange));
    color: #1a1a2e;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 230, 0, 0.3);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.6);
}

.cta-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Enhanced */
.footer-logo {
    font-size: 2rem !important;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 230, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--claudio-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-btn:hover {
    border-color: var(--claudio-yellow);
    background: rgba(255, 230, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 230, 0, 0.2);
}

.footer-partners {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-partners > span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.4);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(255, 248, 240, 0.5);
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.partner:hover {
    color: var(--claudio-yellow);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--claudio-yellow);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #2ECC71;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--claudio-yellow), var(--claudio-orange));
    border: none;
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 230, 0, 0.3);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 230, 0, 0.5);
}

.back-to-top:active {
    transform: scale(0.95);
}

/* Selection styling */
::selection {
    background: var(--claudio-yellow);
    color: #1a1a2e;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--claudio-yellow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s ease;
    box-shadow: 0 0 10px var(--claudio-yellow);
}

.cursor-ring {
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 230, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.cursor-dot.hover,
.cursor-ring.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

.cursor-ring.hover {
    border-color: var(--claudio-yellow);
    background: rgba(255, 230, 0, 0.1);
}

.cursor-dot.click {
    transform: translate(-50%, -50%) scale(0.5);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--claudio-yellow);
    text-shadow: var(--neon-glow-yellow);
    letter-spacing: 8px;
    margin-bottom: 2rem;
    animation: neon-flicker 3s ease-in-out infinite;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--claudio-yellow);
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-right-color: var(--claudio-orange);
    animation-delay: 0.15s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-bottom-color: var(--claudio-pink);
    animation-delay: 0.3s;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.preloader-text {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Smooth scroll behavior for all */
* {
    scroll-behavior: smooth;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-image {
        width: 50%;
        opacity: 0.5;
    }

    .event-main {
        grid-template-columns: 1fr;
    }

    .events-container {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .reservation-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(76, 29, 149, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .manifesto-number {
        font-size: 5rem;
    }

    .manifesto-points {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .footer-partners {
        padding: 1.5rem 1rem;
    }

    .partner-logos {
        gap: 1rem;
    }

    .partner {
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .cta-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .manifesto-number {
        font-size: 4rem;
    }

    .manifesto-stat {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .menu-category, .recipe-card, .event-card, .pricing-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .ingredients-grid {
        justify-content: center;
    }

    .ingredient {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }

    .preloader-logo {
        font-size: 2.5rem;
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .typing-cursor {
        display: none;
    }

    /* Touch-friendly tap targets */
    .nav-links a,
    .footer-links a {
        padding: 0.75rem 0;
        display: block;
    }

    /* Disable hover effects on touch */
    @media (hover: none) {
        .menu-category:hover,
        .recipe-card:hover,
        .pricing-card:hover {
            transform: none;
        }
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

