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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #fefefe;
}

/* Header - Sleek Glass Morphism */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.08);
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.12);
}

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

.logo-div {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-div img {
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #ff6b9d, #FF8C42, #ffd700) border-box;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(2.00) rotate(-5deg);
}

.logo-div img:hover {
    transform: scale(3.08) rotate(-10deg);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.35);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #FF8C42);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
	
    color: #ff6b9d;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #ff6b9d;
}

.nav-links a.active::before {
    width: 100%;
}

/* Hero - Immersive Gradient Experience */
.hero {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(252, 170, 70, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #fff5f8 0%, #fffbf0 50%, #f0fff4 100%);
    padding: 8rem 1rem 1rem;
    text-align: center;
    margin-top: 1px;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatSlow 12s ease-in-out infinite;
}

.hero::before {
    top: -15%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
}

.hero::after {
    bottom: -20%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 170, 70, 0.25) 0%, transparent 70%);
    animation-delay: -6s;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.hero h1 {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero p {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Rotator - Modern Gallery */
.TestRotator {
    display: flex;
    justify-content: center;
    gap: 0rem;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.TestRotator img {
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    object-fit: cover;
    border: 3px solid white;
}

.TestRotator img:hover {
    transform: translateY(-20px) scale(2.08) rotate(2deg);
    box-shadow: 0 24px 60px rgba(255, 107, 157, 0.4);
    z-index: 10;
    border-color: rgba(255, 107, 157, 0.3);
}

/* CTA Button - Premium Feel */
.cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 100%);
    color: white;
    padding: 1.4rem 3.5rem;
    border: none;
    border-radius: 60px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.35);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 50px rgba(255, 107, 157, 0.5);
}

/* Section Styles - Clean & Spacious */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(40px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-40px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(40px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5rem;
    font-weight: 900;
    position: relative;
    letter-spacing: -1.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b9d, #FF8C42, #ffa500);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

/* Flavors Grid - Premium Cards */
.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.flavor-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #FF8C42 50%, #ffa500 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flavor-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flavor-card:hover::before {
    transform: scaleX(1);
}

.flavor-card:hover::after {
    opacity: 1;
}

.flavor-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 24px 60px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.2);
}

.flavor-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.flavor-card:hover .flavor-icon {
    transform: scale(1.15) rotate(5deg);
}

.flavor-card h3 {
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.flavor-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* About Section - Elegant Background */
.about {
    background: 
        radial-gradient(circle at 30% 20%, rgba(224, 195, 252, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(142, 197, 252, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #faf8ff 0%, #f0f8ff 100%);
    padding: 6rem 3rem;
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    background: linear-gradient(135deg, #6b4e9d 0%, #5a7db8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.3rem;
    line-height: 2.1;
    margin-bottom: 2rem;
    color: #444;
    font-weight: 400;
}

/* Contact Section - Modern Layout */
.contact {
    background: #fff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 107, 157, 0.05);
}

.contact-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 157, 0.2);
}

.contact-item h3 {
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contact-item p {
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
}

/* Footer - Gradient Elegance */
footer {
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 100%);
    color: black;
    text-align: center;
    padding: 0rem 2rem;
    position: relative;
    overflow: hidden;
    
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

footer p {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    margin: 0.8rem 0;
    font-weight: 500;
}

footer a img {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

footer a img:hover {
    transform: scale(1.25) rotate(5deg);
    filter: brightness(1.2) drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

/* Animated Order Button - Floating Action */
#animatedButton {
    position: fixed;
    bottom: 35px;
    right: 35px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b9d 0%, #FF8C42 100%);
    color: white;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    animation: gentlePulse 3s ease-in-out infinite;
    letter-spacing: 0.5px;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 16px 45px rgba(255, 107, 157, 0.5); }
}

#animatedButton:hover {
    transform: scale(1.12) translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.6);
    animation: none;
}

/* Page Content */
.page-content {
    min-height: calc(100vh - 200px);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.3rem;
    }

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

    .flavors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .TestRotator img {
        width: 160px;
        height: 190px;
    }

    #animatedButton {
        bottom: 25px;
        right: 25px;
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

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

    .section {
        padding: 4rem 1.5rem;
    }
    
    
