/* YOUR EXISTING CSS + COMPLETE RESPONSIVE IMPROVEMENTS */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

/* HEADER RESPONSIVE */
header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

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

.logo {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: bold;
    color: #d63384;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d63384;
    
}

/* MOBILE HAMBURGER BUTTON */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.bar {
    width: 30px;
    height: 3px;
    background: #d63384;
    border-radius: 3px;
    transition: all 0.3s;
}

/* MOBILE SIDEBAR */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #d63384 0%, #ff9a9e 100%);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 30px rgba(214,51,132,0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 5rem 2rem 2rem;
    margin: 0;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.mobile-menu a:hover {
    padding-left: 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}


/* HAMBURGER ANIMATION */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}





/* HERO - FULL RESPONSIVE */
.hero {
    background: 
        radial-gradient(circle at 25% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 40%, rgba(255,255,255,0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(214, 51, 132, 0.85) 0%, rgba(255, 154, 158, 0.75) 50%, rgba(254, 207, 239, 0.65) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

/* CAKE HOLDERS - PERFECT RESPONSIVE */
.cake1 {
    position: absolute;
    top: clamp(10%, 15%, 20%);
    left: clamp(2%, 5%, 10%);
    width: min(25vw, 280px);
    height: min(22vw, 250px);
    background: #ddd url('/wp-content/themes/my-portfolio-theme/templates/assets/images/cream.webp') center/cover;
    background-size: 85%;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(214, 51, 132, 0.5),
        0 0 30px rgba(255, 255, 255, 0.3) inset;
    animation: float1 6s ease-in-out infinite;
    z-index: 2;
}

.cake2 {
    position: absolute;
    top: clamp(45%, 50%, 55%);
    right: clamp(5%, 8%, 12%);
    width: min(22vw, 240px);
    height: min(20vw, 220px);
    background: #ddd url('/wp-content/themes/my-portfolio-theme/templates/assets/images//cream4.webp') center/cover;
    background-size: 75%;
    border-radius: 22px;
    box-shadow: 
        0 20px 45px rgba(255, 154, 158, 0.5),
        0 0 25px rgba(255, 255, 255, 0.3) inset;
    animation: float2 8s ease-in-out infinite reverse;
    z-index: 2;
}

.cake3 {
    position: absolute;
    top: clamp(2%, 5%, 8%);
    right: clamp(15%, 20%, 25%);
    width: min(20vw, 220px);
    height: min(18vw, 200px);
    background: #ddd url('/wp-content/themes/my-portfolio-theme/templates/assets/images//cream9.webp') center/cover;
    background-size: 80%;
    border-radius: 20px;
    box-shadow: 
        0 20px 45px rgba(255, 154, 158, 0.5),
        0 0 25px rgba(255, 255, 255, 0.3) inset;
    animation: float3 7s ease-in-out infinite;
    z-index: 2;
    opacity: 0.9;
}

.cake4 {
    position: absolute;
    bottom: clamp(10%, 15%, 20%);
    left: clamp(20%, 25%, 30%);
    width: min(20vw, 220px);
    height: min(18vw, 200px);
    background: #ddd url('/wp-content/themes/my-portfolio-theme/templates/assets/images//cream7.webp') center/cover;
    background-size: 80%;
    border-radius: 20px;
    box-shadow: 
        0 20px 45px rgba(255, 154, 158, 0.5),
        0 0 25px rgba(255, 255, 255, 0.3) inset;
    animation: float4 9s ease-in-out infinite reverse;
    z-index: 2;
    opacity: 0.85;
}

/* ANIMATIONS */
@keyframes float1 {0%,100%{transform:translateY(0px)rotate(0deg)scale(1);}50%{transform:translateY(-25px)rotate(3deg)scale(1.05);}}
@keyframes float2 {0%,100%{transform:translateY(0px)rotate(0deg)scale(1);}50%{transform:translateY(-20px)rotate(-2deg)scale(1.03);}}
@keyframes float3 {0%,100%{transform:translateX(0px)rotate(0deg)scale(1);}50%{transform:translateX(-15px)rotate(1deg)scale(1.02);}}
@keyframes float4 {0%,100%{transform:translateY(0px)rotate(0deg)scale(1);}50%{transform:translateY(-18px)rotate(-1deg)scale(1.02);}}

/* HERO CONTENT RESPONSIVE */
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7), 0 0 20px rgba(255,255,255,0.4);
    font-weight: 900;
    letter-spacing: clamp(1px, 0.1em, 2px);
    z-index: 10;
    position: relative;
}

.hero-content p {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-weight: 300;
    z-index: 10;
    position: relative;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #d63384;
    padding: clamp(0.8rem, 3vw, 1rem) clamp(1.5rem, 5vw, 2.5rem);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(1rem, 3vw, 1.2rem);
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 10;
    position: relative;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* SECTIONS RESPONSIVE */
section {padding: clamp(3rem, 8vw, 5rem) 0;}
.about, .contact, .reviews {
    background: #fff;
    margin: clamp(1rem, 5vw, 2rem) 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 3rem);
    color: #d63384;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 8vw, 4rem);
    align-items: center;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    color: #d63384;
}

.contact-info {
    text-align: center;
    font-size: clamp(1rem, 3vw, 1.2rem);
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.contact-info h3 {
    color: #d63384;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.4;
}

.phone {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #28a745;
    margin: 1rem 0;
    display: block;
    text-decoration: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: clamp(1rem, 5vw, 2rem);
}

.review-card {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    padding: clamp(1.5rem, 5vw, 2rem);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-card:hover {transform: translateY(-5px);}

.review-card h4 {
    color: #d63384;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: #333;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 5vw, 2rem);
    padding: clamp(1rem, 5vw, 2rem);
}

.menu-item {
    background: white;
    /* min-height: 100px; */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.menu-item img {
    width: 100%;
    height: clamp(150px, 20vw, 400px);
    object-fit: cover;
}

.menu-content {
    padding: clamp(0.5rem, 2vw, 1rem);
    text-align: center;
}

.menu-content h4 {
    color: #d63384;
    margin-bottom: 0.2rem;
}

.price {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: bold;
    color: #28a745;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: clamp(1.5rem, 6vw, 2rem) 0;
    margin-top: clamp(2rem, 8vw, 3rem);
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    
}



.whatsapp-icon img{
    height: 100px;
}

.whatsapp-label {
    font-size: clamp(10px, 2.5vw, 12px);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .cake1, .cake2, .cake3, .cake4 {opacity: 0.85;}
    .hero {background-attachment: scroll;}
}

@media (max-width: 768px) {
    .nav-links {display: none;}
    .hero {margin-top: 70px; min-height: 90vh;}
    .cake1 {left: 2%; width: min(30vw, 220px); height: min(26vw, 200px);}
    .cake2 {right: 5%; width: min(28vw, 200px); height: min(24vw, 180px);}
    .cake3, .cake4 {display: none;}
    .about-content {grid-template-columns: 1fr; gap: 2rem; text-align: center;}
}

@media (max-width: 480px) {
    .hero-content p {font-size: clamp(1rem, 5vw, 1.4rem);}
    .reviews-grid, .menu-grid {grid-template-columns: 1fr; padding: 1rem;}
    .cta-button {padding: 0.8rem 1.8rem;}
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 15px;
    }
}