/* My Yummy Treats Website Styles */

/* Menu Section Styles (from original menu) */
.menu-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    border: 2px solid #f472b6;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(244, 114, 182, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-tag {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed  50%, #6d28d9 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 2px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.item-name {
    color: #0891b2;
    font-weight: 600;
    font-size: 1.1rem;
}

.section-title {
    color: #be185d;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(190, 24, 93, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.toppings-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    border: 2px solid #f472b6;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 8px 32px rgba(244, 114, 182, 0.2);
}

body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.main-title {
    font-family: 'Dancing Script', cursive;
    color: #be185d;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(190, 24, 93, 0.2);
}

.slogan {
    color: #9d174d;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Fun Flavor Styles */
.fun-flavor {
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fun-flavor:hover {
    transform: scale(1.05);
}

.flavor-large { font-size: 1.3rem; }
.flavor-medium { font-size: 1.1rem; }
.flavor-small { font-size: 1rem; }
.flavor-playful { 
    font-family: 'Dancing Script', cursive; 
    font-size: 1.4rem;
    font-weight: 700;
}

/* Color Classes */
.color-tiffany { 
    color: #0891b2; 
    text-shadow: 1px 1px 2px rgba(8, 145, 178, 0.3); 
}
.color-pink { 
    color: #ec4899; 
    text-shadow: 1px 1px 2px rgba(236, 72, 153, 0.3); 
}
.color-purple { 
    color: #a855f7; 
    text-shadow: 1px 1px 2px rgba(168, 85, 247, 0.3); 
}
.color-orange { 
    color: #f97316; 
    text-shadow: 1px 1px 2px rgba(249, 115, 22, 0.3); 
}
.color-green { 
    color: #10b981; 
    text-shadow: 1px 1px 2px rgba(16, 185, 129, 0.3); 
}
.color-red { 
    color: #ef4444; 
    text-shadow: 1px 1px 2px rgba(239, 68, 68, 0.3); 
}
.color-blue { 
    color: #3b82f6; 
    text-shadow: 1px 1px 2px rgba(59, 130, 246, 0.3); 
}

/* Website Specific Styles */
.hero-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #be185d;
    text-shadow: 2px 2px 4px rgba(190, 24, 93, 0.3);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #9d174d;
    font-weight: 500;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed  50%, #6d28d9 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
    color: white;
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ec4899;
    background-color: #fdf2f8;
}

.section-padding {
    padding: 5rem 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f472b6;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 114, 182, 0.2);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #f472b6;
    box-shadow: 0 8px 32px rgba(244, 114, 182, 0.2);
}

.footer {
    background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Floating elements for hero section */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.floating-1 { top: 10%; left: 10%; animation-delay: 0s; }
.floating-2 { top: 20%; right: 10%; animation-delay: 2s; }
.floating-3 { bottom: 30%; left: 15%; animation-delay: 4s; }
.floating-4 { bottom: 20%; right: 20%; animation-delay: 1s; }