/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-pink: #fce4ec;
    --medium-pink: #f8bbd9;
    --dark-pink: #e91e63;
    --chocolate: #5d4037;
    --white: #ffffff;
    --cream: #fdf7f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --text-dark: #3e2723;
    --text-light: #6d4c41;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(45deg, var(--light-pink) 25%, transparent 25%), 
                linear-gradient(-45deg, var(--light-pink) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, var(--light-pink) 75%), 
                linear-gradient(-45deg, transparent 75%, var(--light-pink) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-pink);
}

.logo i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--chocolate);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--dark-pink);
}


.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-pink);
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--medium-pink), var(--light-pink));
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 500px;
}

.hero-title {
    margin-bottom: 30px;
}

.brand-script {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: var(--chocolate);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 300;
    display: block;
    margin-top: 10px;
}

.hero-announcement {
    background: var(--white);
    padding: 20px;
    border-radius: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-announcement i {
    color: var(--dark-pink);
    animation: twinkle 1.5s infinite;
}

.highlight {
    color: var(--dark-pink);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-pink);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.mascot-image {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transform: scale(0.9);
    transform-origin: center bottom;
}

.floating-sweets {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-sweets i {
    position: absolute;
    font-size: 1.5rem;
    color: var(--chocolate);
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-sweets i:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 2rem;
}

.floating-sweets i:nth-child(2) {
    top: 70%;
    right: 5%;
    animation-delay: 0.7s;
    font-size: 2.5rem;
}

.floating-sweets i:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 1.4s;
    font-size: 1.8rem;
}

.decorative-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decorative-hearts i {
    position: absolute;
    color: rgba(233, 30, 99, 0.3);
    font-size: 1rem;
    animation: heartFloat 4s ease-in-out infinite;
}

.decorative-hearts i:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.decorative-hearts i:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.8s; }
.decorative-hearts i:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 1.6s; }
.decorative-hearts i:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 2.4s; }
.decorative-hearts i:nth-child(5) { top: 50%; left: 5%; animation-delay: 3.2s; }

/* Menu Section */
.menu {
    padding-top: 50px;
    padding-bottom: 80px;
    background: var(--white);
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: var(--chocolate);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '♥';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dark-pink);
    font-size: 1.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item {
    background: var(--light-pink);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--medium-pink);
    gap: 15px;
    flex-wrap: nowrap;
    min-width: 0; /* Prevents flex items from overflowing */
}

.menu-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--chocolate);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
}

.price {
    background: var(--dark-pink);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0; /* Prevents the price from shrinking */
    white-space: nowrap; /* Keeps price on one line */
}

.flavors-list {
    list-style: none;
}

.flavors-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.flavors-list i {
    color: var(--dark-pink);
    font-size: 0.8rem;
}

/* Payment Section */
.payment {
    padding-top: 50px;
    padding-bottom: 80px;
    background: var(--medium-pink);
}

.payment-info {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.payment-info h3 {
    font-size: 1.5rem;
    color: var(--chocolate);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-info p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.fee-info {
    font-size: 0.9rem;
    color: var(--dark-pink);
    font-weight: 500;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.payment-icons i {
    font-size: 2rem;
    color: var(--chocolate);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--dark-pink);
}

/* Contact Section */
.contact {
    padding-top: 50px;
    padding-bottom: 80px;
    background: var(--light-pink);
}

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

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 30px;
}

.phone-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.3rem;
    color: var(--chocolate);
    margin-bottom: 30px;
}

.phone-info i {
    color: var(--dark-pink);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-decoration {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    color: var(--dark-pink);
}

.contact-decoration i {
    animation: bounce 2s infinite;
}

.contact-decoration i:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-decoration i:nth-child(3) {
    animation-delay: 0.6s;
}

/* Footer */
.footer {
    background: var(--chocolate);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero,
.menu,
.payment,
.contact {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.menu::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512,54.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23f8bbd9'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23a1887f' opacity='0.25'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23f8bbd9' opacity='0.5'/%3E%3C/svg%3E");
}

.payment::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512,54.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23f8bbd9' opacity='0.25'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23f8bbd9' opacity='0.5'/%3E%3C/svg%3E");
}

/* Add some decorative sprinkles */
.sprinkle {
    position: absolute;
    background: var(--dark-pink);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
}

.sprinkle:nth-child(odd) {
    background: var(--chocolate);
}


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

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

@keyframes heartFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

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

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
/* Responsive adjustments for hero image */
@media (max-width: 992px) {
    .hero-image {
        max-width: 250px;
        margin-top: 20px;
    }
    
    .mascot-image {
        max-height: 250px;
        transform: scale(0.85);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .brand-script {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-script {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button, .whatsapp-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .menu-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .payment-info, .contact-info {
        padding: 25px;
    }
}
