        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            font-style: italic;
            color: rgba(34, 34, 34, 0.95);
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(221, 160, 221, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 218, 185, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, #ffeef8 0%, #f0e6ff 25%, #e6f3ff 50%, #fff0f5 75%, #fdf2f8 100%);
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 182, 193, 0.4), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(221, 160, 221, 0.3), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 218, 185, 0.5), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255, 192, 203, 0.4), transparent);
            background-repeat: repeat;
            background-size: 150px 150px;
            animation: twinkle 4s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 
                0 8px 32px rgba(255, 182, 193, 0.2),
                0 4px 16px rgba(221, 160, 221, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Inter', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        @keyframes logoGlow {
            0%, 100% { 
                transform: scale(1);
                filter: drop-shadow(0 0 10px rgba(255, 154, 158, 0.3));
            }
            50% { 
                transform: scale(1.05);
                filter: drop-shadow(0 0 20px rgba(255, 154, 158, 0.6));
            }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(34, 34, 34, 0.95);
            font-weight: 500;
            font-style: italic;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }

        .nav-links a:hover {
            color: #ff9a9e;
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 16px rgba(255, 154, 158, 0.2);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff9a9e, #fecfef);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login {
            background: rgba(255, 255, 255, 0.1);
            color: #ff9a9e;
            border: 2px solid rgba(255, 154, 158, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-signup {
            background: linear-gradient(45deg, #ff9a9e, #fecfef);
            color: white;
            border: none;
            box-shadow: 0 4px 16px rgba(255, 154, 158, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Hero Section - Split Screen Layout */
        .hero {
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }

        .hero-left {
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(221, 160, 221, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, rgba(255, 238, 248, 0.8) 0%, rgba(240, 230, 255, 0.8) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .hero-right {
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 218, 185, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 192, 203, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, rgba(254, 207, 239, 0.8) 0%, rgba(255, 154, 158, 0.8) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .hero-content {
            z-index: 2;
            color: rgba(34, 34, 34, 0.95);
            max-width: 500px;
            text-shadow: black;
            font-style: italic;
        }

        .hero h1 {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff9a9e, #fecfef, #fad0c4, #ff9a9e);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: morphText 3s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(255, 154, 158, 0.3));
        }

        @keyframes morphText {
            0%, 100% {
                transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
                filter: drop-shadow(0 4px 8px rgba(255, 154, 158, 0.3));
            }
            25% {
                transform: perspective(1000px) rotateX(15deg) rotateY(-10deg) scale(1.02);
                filter: drop-shadow(0 8px 16px rgba(255, 154, 158, 0.4));
            }
            50% {
                transform: perspective(1000px) rotateX(-10deg) rotateY(15deg) scale(1.05);
                filter: drop-shadow(0 12px 24px rgba(255, 154, 158, 0.5));
            }
            75% {
                transform: perspective(1000px) rotateX(10deg) rotateY(-5deg) scale(1.02);
                filter: drop-shadow(0 8px 16px rgba(255, 154, 158, 0.4));
            }
        }

        .typewriter-text {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            overflow: hidden;
            border-right: 3px solid rgba(255, 154, 158, 0.8);
            white-space: nowrap;
            animation: typewriter 4s steps(60) 1s both, blink 1s infinite;
            color: rgba(34, 34, 34, 0.95);
            text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
            font-style: italic;
        }

        @keyframes typewriter {
            0% { width: 0; }
            100% { width: 100%; }
        }

        @keyframes blink {
            0%, 50% { border-color: rgba(255, 154, 158, 0.8); }
            51%, 100% { border-color: transparent; }
        }

        .magnetic-button {
            background: 
                linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
                linear-gradient(135deg, #ff9a9e, #fecfef);
            color: rgba(34, 34, 34, 0.95);
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            font-style: italic;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            animation: magneticPulse 3s ease-in-out infinite;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 8px 32px rgba(255, 154, 158, 0.3),
                0 4px 16px rgba(254, 207, 239, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        @keyframes magneticPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 
                    0 8px 32px rgba(255, 154, 158, 0.3),
                    0 4px 16px rgba(254, 207, 239, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 
                    0 12px 48px rgba(255, 154, 158, 0.4),
                    0 8px 32px rgba(254, 207, 239, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.7);
            }
        }

        .magnetic-button:hover {
            transform: scale(1.1);
            background: 
                linear-gradient(45deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
                linear-gradient(135deg, #fecfef, #ff9a9e);
            box-shadow: 
                0 16px 64px rgba(255, 154, 158, 0.5),
                0 8px 32px rgba(254, 207, 239, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        /* Geometric Food Display */
        .geometric-food {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .food-hexagon {
            position: absolute;
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.9);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            animation: hexagonOrbit 12s linear infinite;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .food-hexagon:nth-child(1) {
            top: 50%;
            left: 50%;
            transform-origin: -100px 0;
            animation-delay: 0s;
        }

        .food-hexagon:nth-child(2) {
            top: 50%;
            left: 50%;
            transform-origin: -100px 0;
            animation-delay: -3s;
        }

        .food-hexagon:nth-child(3) {
            top: 50%;
            left: 50%;
            transform-origin: -100px 0;
            animation-delay: -6s;
        }

        .food-hexagon:nth-child(4) {
            top: 50%;
            left: 50%;
            transform-origin: -100px 0;
            animation-delay: -9s;
        }

        @keyframes hexagonOrbit {
            0% {
                transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
                filter: hue-rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
                filter: hue-rotate(360deg);
            }
        }

        /* Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, black,black, #fad0c4, #ff9a9e);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: textSlideUp 1.5s ease-out, gradientShift 4s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(255, 154, 158, 0.3));
        }

        @keyframes textSlideUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
                letter-spacing: 10px;
            }
            50% {
                opacity: 0.7;
                letter-spacing: 2px;
            }
            100% {
                opacity: 1;
                transform: translateY(0);
                letter-spacing: normal;
            }
        }

        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .menu-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 2rem;
            box-shadow: 
                0 8px 32px rgba(255, 154, 158, 0.15),
                0 4px 16px rgba(254, 207, 239, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            animation: slideInFromBottom 0.8s ease-out;
            animation-fill-mode: both;
        }

        .menu-card:nth-child(1) { animation-delay: 0.1s; }
        .menu-card:nth-child(2) { animation-delay: 0.2s; }
        .menu-card:nth-child(3) { animation-delay: 0.3s; }
        .menu-card:nth-child(4) { animation-delay: 0.4s; }
        .menu-card:nth-child(5) { animation-delay: 0.5s; }
        .menu-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideInFromBottom {
            0% {
                opacity: 0;
                transform: translateY(100px) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .menu-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 154, 158, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .menu-card:hover::before {
            left: 100%;
        }

        .menu-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 
                0 16px 64px rgba(255, 154, 158, 0.25),
                0 8px 32px rgba(254, 207, 239, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .menu-card h3 {
            color: rgba(34, 34, 34, 0.95);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-style: italic;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
        }

        .menu-card p {
            color: rgba(34, 34, 34, 0.9);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-style: italic;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
        }

        .price {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ff9a9e, #fecfef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            filter: drop-shadow(0 2px 4px rgba(255, 154, 158, 0.3));
        }

        .card-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-cart {
            background: linear-gradient(45deg, #4ecdc4, #44a08d);
            color: white;
            flex: 1;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
        }

        .btn-cart::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-cart:hover::before {
            left: 100%;
        }

        .btn-cart:hover {
            transform: translateY(-3px) scale(1.05);
            background: linear-gradient(45deg, #44a08d, #4ecdc4);
            box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
        }

        .btn-cart:active {
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
        }

        .btn-buy {
            background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
            color: white;
            flex: 1;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .btn-buy::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-buy:hover::before {
            left: 100%;
        }

        .btn-buy:hover {
            transform: translateY(-3px) scale(1.05);
            background: linear-gradient(45deg, #ff9a9e, #ff6b6b);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
        }

        .btn-buy:active {
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            color: rgba(34, 34, 34, 0.95);
            font-size: 1.1rem;
            line-height: 1.8;
            font-style: italic;
            animation: slideInFromLeft 1.5s ease-out;
        }

        @keyframes slideInFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-image {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            animation: gentlePulse 4s ease-in-out infinite;
            margin: 0 auto;
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
        }

        @keyframes gentlePulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
            }
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            color: rgba(34, 34, 34, 0.95);
            font-style: italic;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,255,255,0.2);
            animation: fadeInScale 0.8s ease-out;
            animation-fill-mode: both;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.5) translateY(50px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.05);
            background: rgba(255,255,255,0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        /* Footer */
        .footer {
            background: rgba(255, 255, 255, 0.95);
            color: rgba(34, 34, 34, 0.95);
            font-style: italic;
            padding: 3rem 2rem 1rem;
            text-align: center;
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #ff6b6b;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ff6b6b;
        }

        .subscribe-form {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .subscribe-input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 25px;
            outline: none;
        }

        .btn-subscribe {
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.7);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            border-color: #ff6b6b;
        }

        /* Page Styles */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr 1fr;
            }
            
            .hero-left, .hero-right {
                padding: 2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .typewriter-text {
                font-size: 1.1rem;
            }
            
            .geometric-food {
                width: 300px;
                height: 300px;
            }
            
            .food-hexagon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
        }

        /* Wave Animation Background */
        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            overflow: hidden;
            z-index: 1;
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
            border-radius: 50% 50% 0 0;
            animation: waveMotion 8s ease-in-out infinite;
        }

        .wave:nth-child(2) {
            height: 120px;
            animation-delay: -2s;
            animation-duration: 10s;
            opacity: 0.7;
        }

        .wave:nth-child(3) {
            height: 80px;
            animation-delay: -4s;
            animation-duration: 6s;
            opacity: 0.5;
        }

        @keyframes waveMotion {
            0%, 100% {
                transform: translateX(-50%) rotate(0deg);
            }
            50% {
                transform: translateX(-50%) rotate(180deg);
            }
        }

        /* Floating Sparkles */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            font-size: 2rem;
            animation: sparkleFloat 15s linear infinite;
            opacity: 0.7;
            filter: drop-shadow(0 0 8px rgba(255, 154, 158, 0.5));
        }

        /* Animated Cake Images */
        .cake-animation-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2;
        }

        .animated-cake {
            position: absolute;
            font-size: 4rem;
            animation: cakeFloat 20s linear infinite;
            opacity: 0.8;
            filter: drop-shadow(0 0 15px rgba(255, 154, 158, 0.6));
        }

        .animated-cake:nth-child(1) {
            left: 10%;
            top: 15%;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .animated-cake:nth-child(2) {
            left: 70%;
            top: 25%;
            animation-delay: -5s;
            animation-duration: 22s;
        }

        .animated-cake:nth-child(3) {
            left: 30%;
            top: 70%;
            animation-delay: -10s;
            animation-duration: 25s;
        }

        .animated-cake:nth-child(4) {
            left: 80%;
            top: 60%;
            animation-delay: -15s;
            animation-duration: 20s;
        }

        @keyframes cakeFloat {
            0% {
                transform: translateX(0) translateY(0) rotate(0deg) scale(0.8);
                opacity: 0;
                filter: drop-shadow(0 0 10px rgba(255, 154, 158, 0.4)) hue-rotate(0deg);
            }
            10% {
                opacity: 0.8;
                transform: translateX(20px) translateY(-30px) rotate(15deg) scale(1);
                filter: drop-shadow(0 0 15px rgba(255, 154, 158, 0.6)) hue-rotate(30deg);
            }
            25% {
                transform: translateX(-15px) translateY(-60px) rotate(-10deg) scale(1.2);
                filter: drop-shadow(0 0 20px rgba(254, 207, 239, 0.8)) hue-rotate(90deg);
            }
            50% {
                transform: translateX(40px) translateY(-90px) rotate(25deg) scale(0.9);
                filter: drop-shadow(0 0 25px rgba(255, 182, 193, 0.7)) hue-rotate(180deg);
            }
            75% {
                transform: translateX(-30px) translateY(-120px) rotate(-20deg) scale(1.1);
                filter: drop-shadow(0 0 20px rgba(221, 160, 221, 0.6)) hue-rotate(270deg);
            }
            90% {
                opacity: 0.8;
                transform: translateX(10px) translateY(-150px) rotate(10deg) scale(0.95);
                filter: drop-shadow(0 0 15px rgba(255, 154, 158, 0.5)) hue-rotate(330deg);
            }
            100% {
                transform: translateX(0) translateY(-180px) rotate(0deg) scale(0.6);
                opacity: 0;
                filter: drop-shadow(0 0 10px rgba(255, 154, 158, 0.2)) hue-rotate(360deg);
            }
        }

        .floating-element:nth-child(1) {
            left: 5%;
            top: 20%;
            animation-delay: 0s;
            animation-duration: 15s;
        }

        .floating-element:nth-child(2) {
            left: 15%;
            top: 60%;
            animation-delay: -3s;
            animation-duration: 18s;
        }

        .floating-element:nth-child(3) {
            left: 25%;
            top: 40%;
            animation-delay: -6s;
            animation-duration: 22s;
        }

        .floating-element:nth-child(4) {
            left: 35%;
            top: 80%;
            animation-delay: -9s;
            animation-duration: 16s;
        }

        .floating-element:nth-child(5) {
            left: 45%;
            top: 30%;
            animation-delay: -12s;
            animation-duration: 20s;
        }

        @keyframes sparkleFloat {
            0% {
                transform: translateX(0) translateY(0) rotate(0deg) scale(0.5);
                opacity: 0;
                filter: drop-shadow(0 0 4px rgba(255, 154, 158, 0.3)) hue-rotate(0deg);
            }
            10% {
                opacity: 0.8;
                transform: translateX(30px) translateY(-40px) rotate(90deg) scale(1);
                filter: drop-shadow(0 0 8px rgba(255, 154, 158, 0.6)) hue-rotate(60deg);
            }
            25% {
                transform: translateX(-20px) translateY(-80px) rotate(180deg) scale(1.3);
                filter: drop-shadow(0 0 12px rgba(254, 207, 239, 0.8)) hue-rotate(120deg);
            }
            50% {
                transform: translateX(50px) translateY(-120px) rotate(270deg) scale(0.8);
                filter: drop-shadow(0 0 16px rgba(255, 182, 193, 0.7)) hue-rotate(180deg);
            }
            75% {
                transform: translateX(-40px) translateY(-160px) rotate(360deg) scale(1.1);
                filter: drop-shadow(0 0 12px rgba(221, 160, 221, 0.6)) hue-rotate(240deg);
            }
            90% {
                opacity: 0.8;
                transform: translateX(20px) translateY(-200px) rotate(450deg) scale(0.9);
                filter: drop-shadow(0 0 8px rgba(255, 154, 158, 0.5)) hue-rotate(300deg);
            }
            100% {
                transform: translateX(0) translateY(-240px) rotate(540deg) scale(0.3);
                opacity: 0;
                filter: drop-shadow(0 0 4px rgba(255, 154, 158, 0.2)) hue-rotate(360deg);
            }
        }

        /* Additional Animations */
        .text-shimmer {
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
            50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 107, 107, 0.5); }
            100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
        }

        .glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ff6b6b; }
            to { text-shadow: 0 0 20px #fff, 0 0 30px #ff6b6b, 0 0 40px #ff6b6b; }
        }
