* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #000000;
            color: #f5f5dc;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

        /* Dark/Light Mode Toggle */
        .theme-toggle {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            z-index: 1001;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            padding: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            background: rgba(212, 175, 55, 0.3);
        }

        .theme-toggle span {
            display: block;
            font-size: 1.2rem;
            padding: 0.3rem;
        }

        /* Light Mode Styles */
        body.light-mode {
            background: #f5f5dc;
            color: #2c2c2c;
        }

        body.light-mode nav {
            background: rgba(245, 245, 220, 0.95);
        }

        body.light-mode .nav-links a {
            color: #2c2c2c;
        }

        body.light-mode .hero {
            background: linear-gradient(135deg, #f5f5dc 0%, #e8e8d0 50%, #f5f5dc 100%);
        }

        body.light-mode .about,
        body.light-mode .masterclass,
        body.light-mode .chefs,
        body.light-mode .recipes,
        body.light-mode .experience,
        body.light-mode .testimonials {
            background: #f5f5dc;
        }

        body.light-mode .masterclass-card,
        body.light-mode .chef-card,
        body.light-mode .recipe-card {
            background: #ffffff;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        body.light-mode footer {
            background: linear-gradient(180deg, #e8e8d0 0%, #d0d0c0 100%);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 5%;
            background: rgba(0, 0, 0, 0.98);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #d4af37, #f5f5dc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #f5f5dc;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-btn {
            background: linear-gradient(135deg, #8b0000, #dc143c);
            color: white;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('https://i.pinimg.com/736x/67/8e/b7/678eb75b9d15d8504e940721e0a61980.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15), transparent 70%);
            animation: heroGlow 10s ease-in-out infinite;
        }

        @keyframes heroGlow {
            0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.6; transform: scale(1.1) rotate(2deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 2rem;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #d4af37, #f5f5dc, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textShimmer 4s ease-in-out infinite;
            background-size: 200% auto;
        }

        @keyframes textShimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.4rem);
            color: #c0c0c0;
            margin-bottom: 3rem;
            line-height: 1.8;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 2.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b0000, #dc143c);
            color: white;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: #d4af37;
            border: 2px solid #d4af37;
        }

        .btn-secondary:hover {
            background: #d4af37;
            color: #000000;
            transform: translateY(-3px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #d4af37;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #d4af37;
            border-radius: 50%;
            opacity: 0.4;
            animation: floatParticle 20s infinite ease-in-out;
        }

        @keyframes floatParticle {
            0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
            25% { transform: translateY(-150px) translateX(100px) rotate(90deg); }
            50% { transform: translateY(-300px) translateX(-50px) rotate(180deg); }
            75% { transform: translateY(-200px) translateX(150px) rotate(270deg); }
        }

        /* About Section */
        .about {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #000000 0%, #1a1010 100%);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.8rem);
            margin-bottom: 2rem;
            color: #d4af37;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 1.9;
            color: #c0c0c0;
            font-weight: 300;
        }

        .about-visual {
            position: relative;
            height: 550px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
        }

        .about-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(212, 175, 55, 0.2));
            z-index: 1;
        }

        .chef-montage {
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 2px;
        }

        .chef-image {
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            transition: transform 0.5s ease;
            cursor: pointer;
        }

        .chef-image:nth-child(1) {
            background-image: url('https://i.pinimg.com/736x/b0/f0/4a/b0f04a7fd40fb508181cd813dc8f7896.jpg');
        }

        .chef-image:nth-child(2) {
            background-image: url('https://i.pinimg.com/736x/ef/ac/2f/efac2fd5f87b773b49709b1609f7999d.jpg');
        }

        .chef-image:nth-child(3) {
            background-image: url('https://i.pinimg.com/736x/28/31/c5/2831c55c99a25667523cf16a27916d0f.jpg');
        }

        .chef-image:nth-child(4) {
            background-image: url('https://i.pinimg.com/736x/99/8e/4e/998e4eb2ff6e20cd698bb586d359b310.jpg');
        }

        .chef-image:hover {
            transform: scale(1.05);
        }

        /* Masterclass Section */
        .masterclass {
            padding: 8rem 5%;
            background: #000000;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.8rem);
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #c0c0c0;
        }

        .masterclass-slider {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .masterclass-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s ease;
            background: #1a1a1a;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .masterclass-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
        }

        .masterclass-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            transition: transform 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .masterclass-card:hover .masterclass-image {
            transform: scale(1.1);
        }

        .masterclass-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(212, 175, 55, 0.6));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .masterclass-card:hover .masterclass-overlay {
            opacity: 1;
        }

        .view-class-btn {
            background: white;
            color: #8b0000;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .view-class-btn:hover {
            transform: scale(1.05);
        }

        .masterclass-info {
            padding: 2.5rem;
        }

        .masterclass-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .masterclass-info p {
            color: #a0a0a0;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .masterclass-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #888;
        }

        /* Chefs Section */
        .chefs {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #000000 0%, #1a1010 100%);
        }

        .chefs-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .chef-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s ease;
            background: #1a1a1a;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .chef-card:hover {
            transform: translateY(-10px);
        }

        .chef-avatar {
            width: 100%;
            height: 350px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            transition: all 0.5s ease;
            position: relative;
        }

        .chef-card:hover .chef-avatar {
            filter: grayscale(100%);
        }

        .chef-info {
            padding: 2rem;
            text-align: center;
        }

        .chef-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: #d4af37;
            margin-bottom: 0.5rem;
        }

        .chef-specialty {
            color: #a0a0a0;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .chef-bio {
            color: #c0c0c0;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        /* Recipe Stories Section */
        .recipes {
            padding: 8rem 5%;
            background: #000000;
        }

        .recipes-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .recipe-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s ease;
            background: #1a1a1a;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .recipe-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
        }

        .recipe-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            transition: transform 0.5s ease;
        }

        .recipe-card:hover .recipe-image {
            transform: scale(1.05);
        }

        .recipe-content {
            padding: 2.5rem;
        }

        .recipe-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .recipe-excerpt {
            color: #a0a0a0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .read-more-btn {
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more-btn:hover {
            color: #f5f5dc;
        }

        /* Experience Section */
        .experience {
            padding: 8rem 5%;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(26, 16, 16, 0.9)), url('https://i.pinimg.com/736x/68/7c/9a/687c9aa52e2df7650f2f041c4a2fd84d.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .experience-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
            animation: experienceGlow 12s ease-in-out infinite;
        }

        @keyframes experienceGlow {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.2); }
        }

        .experience-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .experience-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.8rem);
            color: #d4af37;
            margin-bottom: 2rem;
        }

        .experience-content p {
            font-size: 1.2rem;
            line-height: 1.9;
            color: #c0c0c0;
            margin-bottom: 3rem;
        }

        .book-session-btn {
            background: linear-gradient(135deg, #8b0000, #dc143c);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .book-session-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .book-session-btn:hover::before {
            left: 100%;
        }

        .book-session-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(139, 0, 0, 0.5);
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 5%;
            background: #000000;
        }

        .testimonial-carousel {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial {
            padding: 3rem;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease;
        }

        .testimonial.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-style: italic;
            color: #d4af37;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .testimonial-author {
            font-size: 1.1rem;
            color: #c0c0c0;
            margin-bottom: 0.5rem;
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #888;
        }

        .stars {
            color: #d4af37;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: #d4af37;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #1a1010, #000000);
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .newsletter p {
            color: #c0c0c0;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            color: #f5f5dc;
            font-size: 1rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .subscribe-btn {
            background: linear-gradient(135deg, #8b0000, #dc143c);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, #000000 0%, #050505 100%);
            padding: 5rem 5% 2rem;
            border-top: 2px solid;
            border-image: linear-gradient(90deg, transparent, #d4af37, transparent) 1;
            position: relative;
        }

        .footer-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-section p, .footer-section a {
            color: #a0a0a0;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #d4af37;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: #d4af37;
            color: #000000;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: #707070;
        }

        .footer-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: #d4af37;
            font-style: italic;
            margin-bottom: 1rem;
        }

        /* Privacy Terms Modal */
        .privacy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .privacy-modal.active {
            display: flex;
        }

        .privacy-content {
            background: linear-gradient(135deg, #1a1a1a, #000000);
            padding: 3rem;
            border-radius: 20px;
            max-width: 800px;
            max-height: 80%;
            width: 90%;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
            overflow-y: auto;
        }

        .privacy-content h2 {
            font-family: 'Playfair Display', serif;
            color: #d4af37;
            margin-bottom: 2rem;
            font-size: 2.2rem;
        }

        .privacy-content h3 {
            color: #d4af37;
            margin: 2rem 0 1rem;
            font-size: 1.3rem;
        }

        .privacy-content p {
            color: #c0c0c0;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* Auth Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: linear-gradient(135deg, #1a1a1a, #000000);
            padding: 3rem;
            border-radius: 20px;
            max-width: 450px;
            width: 90%;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
            animation: modalSlideIn 0.4s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-modal:hover {
            transform: rotate(90deg);
        }

        .modal-content h2 {
            font-family: 'Playfair Display', serif;
            color: #d4af37;
            margin-bottom: 2rem;
            font-size: 2rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #c0c0c0;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            color: #f5f5dc;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #d4af37;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #8b0000, #dc143c);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-toggle {
            text-align: center;
            margin-top: 1.5rem;
            color: #a0a0a0;
        }

        .form-toggle a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .form-toggle a:hover {
            text-decoration: underline;
        }

        .error-message {
            background: rgba(220, 53, 69, 0.2);
            color: #ff6b6b;
            padding: 0.8rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid rgba(220, 53, 69, 0.3);
            font-size: 0.9rem;
        }

        .success-message {
            background: rgba(40, 167, 69, 0.2);
            color: #51cf66;
            padding: 0.8rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid rgba(40, 167, 69, 0.3);
            font-size: 0.9rem;
        }

        /* Loading Spinner */
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-left: 0.5rem;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Content Modals */
        .content-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2500;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .content-modal.active {
            display: flex;
        }

        .content-modal-content {
            background: linear-gradient(135deg, #1a1a1a, #000000);
            padding: 3rem;
            border-radius: 20px;
            max-width: 900px;
            max-height: 85%;
            width: 90%;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
            overflow-y: auto;
        }

        .content-modal h2 {
            font-family: 'Playfair Display', serif;
            color: #d4af37;
            margin-bottom: 2rem;
            font-size: 2.5rem;
        }

        .content-modal h3 {
            color: #d4af37;
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }

        .content-modal p {
            color: #c0c0c0;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .content-modal ul {
            color: #c0c0c0;
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .content-modal li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100%;
                width: 70%;
                max-width: 300px;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 5rem 2rem;
                transition: right 0.4s ease;
                border-left: 1px solid rgba(212, 175, 55, 0.2);
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-visual {
                height: 400px;
            }

            .masterclass-slider,
            .chefs-grid,
            .recipes-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 640px) {
            nav {
                padding: 1rem 5%;
            }

            .logo {
                font-size: 1.4rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }

            .modal-content,
            .privacy-content,
            .content-modal-content {
                padding: 2rem;
            }

            .theme-toggle {
                right: 10px;
            }
        }

        .hidden {
            display: none;
        }
    