@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E🍰%3C/text%3E%3C/svg%3E"), auto;
}

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

/* Custom Cake Cursors for Interactive Elements */
a, button, .cta-button, .contact-btn, .order-cta-btn, .carousel-nav, .indicator, .testimonial-card, .cake-item, .social-link {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E🎂%3C/text%3E%3C/svg%3E"), pointer;
}

/* Special cursor for cake items */
.cake-item {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E🧁%3C/text%3E%3C/svg%3E"), pointer;
}

/* Grab cursor for carousel */
.carousel-container {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E🍰%3C/text%3E%3C/svg%3E"), grab;
}

.carousel-container:active {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E🍰%3C/text%3E%3C/svg%3E"), grabbing;
}
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Mobile Menu Toggle - positioned on left */
.mobile-menu-toggle {
    display: none !important; /* Hidden on desktop, shown on mobile via media query */
    order: 1; /* First item on mobile */
}

.logo {
    order: 2; /* Second item on mobile */
}

.nav-links {
    order: 3; /* Third item on mobile (hidden) */
}

.logo h1 {
    color: #8B4513;
    font-size: 2rem;
    margin: 0;
    font-family: 'Pacifico', cursive;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* BPME1013 Link Styling - Make it stand out */
.nav-links a.bpme-link {
    font-weight: bold;
    color: #8B4513;
    background: rgba(139, 69, 19, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a.bpme-link:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

/* Floating particles animation */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 69, 19, 0.6);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

.particle:nth-child(2n) {
    background: rgba(255, 182, 193, 0.5);
    animation-duration: 18s;
    animation-delay: -5s;
}

.particle:nth-child(3n) {
    background: rgba(222, 184, 135, 0.4);
    animation-duration: 12s;
    animation-delay: -10s;
}

.particle:nth-child(4n) {
    background: rgba(255, 248, 220, 0.6);
    animation-duration: 20s;
    animation-delay: -2s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Cute Cake Stickers and Animations */
.cake-stickers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* Behind all content */
}

.cake-sticker {
    position: absolute;
    font-size: 2rem;
    animation: float-sticker 8s ease-in-out infinite;
    opacity: 0.4; /* More transparent to stay in background */
}

.cake-sticker:nth-child(1) {
    top: 15%;
    left: 2%;
    animation-delay: 0s;
}

.cake-sticker:nth-child(2) {
    top: 45%;
    left: 5%;
    animation-delay: -2s;
}

.cake-sticker:nth-child(3) {
    top: 75%;
    left: 3%;
    animation-delay: -4s;
}

.cake-sticker:nth-child(4) {
    top: 20%;
    right: 2%;
    animation-delay: -6s;
}

.cake-sticker:nth-child(5) {
    top: 50%;
    right: 5%;
    animation-delay: -1s;
}

.cake-sticker:nth-child(6) {
    top: 80%;
    right: 3%;
    animation-delay: -3s;
}

@keyframes float-sticker {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Bouncing cake decorations */
.bouncing-cakes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bouncing-cake {
    position: absolute;
    font-size: 1.5rem;
    animation: bounce-cake 3s ease-in-out infinite;
    opacity: 0.4;
    transition: none; /* Removed for smooth JS animation */
}

@keyframes bounce-cake {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.1);
    }
}

/* Rotating cake slice decorations */
.rotating-slices {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.rotating-slice {
    position: absolute;
    font-size: 1.8rem;
    animation: rotate-slice 12s linear infinite;
    opacity: 0.3;
}

.rotating-slice:nth-child(1) {
    top: 30%;
    left: 85%;
    animation-delay: 0s;
}

.rotating-slice:nth-child(2) {
    top: 50%;
    left: 5%;
    animation-delay: -4s;
}

.rotating-slice:nth-child(3) {
    top: 75%;
    left: 80%;
    animation-delay: -8s;
}

@keyframes rotate-slice {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Pulsing heart decorations for love of cakes */
.pulsing-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pulsing-heart {
    position: absolute;
    font-size: 1.2rem;
    color: #FFB6C1;
    animation: pulse-heart 2s ease-in-out infinite;
    opacity: 0.6;
}

.pulsing-heart:nth-child(1) {
    top: 20%;
    left: 75%;
    animation-delay: 0s;
}

.pulsing-heart:nth-child(2) {
    top: 55%;
    left: 90%;
    animation-delay: -1s;
}

.pulsing-heart:nth-child(3) {
    top: 35%;
    left: 2%;
    animation-delay: -0.5s;
}

@keyframes pulse-heart {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }
}

/* Wave Border Animations */
.wave-border {
    position: relative;
    overflow: hidden;
}

.wave-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: 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.34,53.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' opacity='.25' fill='%23FFFACD'/%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' opacity='.5' fill='%23FFFACD'/%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='%23FFFACD'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 60px;
    animation: wave-animation 15s ease-in-out infinite;
    z-index: 1;
}

.wave-border-top {
    position: relative;
    overflow: hidden;
}

.wave-border-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: 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.34,53.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' opacity='.25' fill='%23FFF8DC'/%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' opacity='.5' fill='%23FFF8DC'/%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='%23FFF8DC'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 60px;
    animation: wave-animation-reverse 18s ease-in-out infinite;
    transform: rotate(180deg);
    z-index: 1;
}

@keyframes wave-animation {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-50px);
    }
}

@keyframes wave-animation-reverse {
    0%, 100% {
        transform: rotate(180deg) translateX(0px);
    }
    50% {
        transform: rotate(180deg) translateX(50px);
    }
}

/* Chocolate Wave Border */
.chocolate-wave-border::after {
    background: 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.34,53.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' opacity='.25' fill='%238B4513'/%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' opacity='.5' fill='%238B4513'/%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='%238B4513'/%3E%3C/svg%3E") repeat-x;
    animation: wave-animation-slow 20s ease-in-out infinite;
}

@keyframes wave-animation-slow {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-30px);
    }
}
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced hero background with moving gradient */
.hero {
    background: 
        linear-gradient(135deg, rgba(255, 248, 220, 0.4) 0%, rgba(255, 182, 193, 0.4) 25%, rgba(222, 184, 135, 0.4) 50%, rgba(139, 69, 19, 0.4) 75%, rgba(255, 248, 220, 0.4) 100%),
        url('images/cake-background.jpeg');
    background-size: 400% 400%, cover;
    background-position: center center;
    background-attachment: fixed;
    animation: gradient-shift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Mobile responsive adjustments for hero background */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Fixed attachment can cause issues on mobile */
    }
}

/* Animated background elements for hero */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 50%);
    animation: float-slow 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(222, 184, 135, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-medium 15s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -30px) rotate(90deg); }
    50% { transform: translate(30px, -20px) rotate(180deg); }
    75% { transform: translate(-10px, 20px) rotate(270deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -20px) scale(1.1); }
    66% { transform: translate(20px, -30px) scale(0.9); }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.brand-logo {
    margin-bottom: 0.5rem; /* Reduced from 2rem */
}

.logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #8B4513;
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.6), 0 0 30px rgba(255,255,255,0.4);
    font-family: 'Pacifico', cursive;
}

.hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-button.primary {
    background: #8B4513;
    color: white;
}

.cta-button.primary:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #8B4513;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically too */
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%; /* Ensure full width */
    margin: 0 auto; /* Center the container */
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Cakes Section - Horizontal Carousel/Wheel Style */
.cakes-section {
    padding: 80px 0;
    background: #FFFACD;
    position: relative;
    overflow: hidden;
}

.cakes-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    z-index: 2;
    font-family: 'Pacifico', cursive;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.scroll-hint {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    cursor: grab;
    z-index: 2;
}

.carousel-container:active {
    cursor: grabbing;
}

.cakes-carousel {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}

.cake-wheel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    will-change: transform;
}

.cake-item {
    flex: 0 0 300px;
    height: 400px;
    background: white;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cake-item:last-child {
    margin-right: 0;
}

.cake-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cake-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8B4513;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 3;
}

.cake-item img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
}

.cake-basic-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s;
}

.cake-basic-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.cake-basic-info .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #8B4513;
}

.cake-hover-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 182, 193, 0.95);
    color: #333;
    padding: 3rem 2rem 2rem 2rem; /* More top padding to push content toward middle */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center to flex-start */
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
}

.cake-hover-description h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    margin-top: 1.5rem; /* Additional top margin to move title toward middle */
}

.cake-hover-description p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #333;
    margin-top: 0.5rem; /* Small top margin for description */
}

.cake-item:hover .cake-hover-description {
    opacity: 1;
}

.cake-item:hover .cake-basic-info {
    opacity: 0;
}

.cake-hover-description .cake-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Push price details to bottom */
}

.cake-hover-description .serving {
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.8);
}

.cake-hover-description .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 69, 19, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: #8B4513;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active,
.indicator:hover {
    background: #8B4513;
    transform: scale(1.2);
}

.order-cta-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.order-cta-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.order-cta-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.order-cta-btn {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
    z-index: 10;
}

.order-cta-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background for about section */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(255, 248, 220, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(222, 184, 135, 0.2) 0%, transparent 50%);
    animation: gentle-pulse 30s ease-in-out infinite;
    z-index: 0;
}

@keyframes gentle-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
    z-index: 2;
    font-family: 'Pacifico', cursive;
}

.about-section p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Feedback Section */
.feedback-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFFACD 100%);
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: 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.34,53.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' opacity='.3' 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' opacity='.5' fill='%23ffffff'/%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='%23ffffff'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 60px;
    animation: wave-animation 16s ease-in-out infinite;
    transform: rotate(180deg);
    z-index: 1;
}

.feedback-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    z-index: 2;
    font-family: 'Pacifico', cursive;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    animation: card-float 6s ease-in-out infinite;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-card:nth-child(2n) {
    animation-delay: -2s;
}

.testimonial-card:nth-child(3n) {
    animation-delay: -4s;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.customer-photo {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.customer-photo img::after {
    content: "👤";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.testimonial-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.95);
    color: white;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
}

.testimonial-card:hover .testimonial-content {
    opacity: 1;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: white;
}

.testimonial-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.customer-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
}

.feedback-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #DEB887;
    position: relative;
    overflow: hidden;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    z-index: 2;
    font-family: 'Pacifico', cursive;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-item h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0; /* Reduced from 2rem */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
        justify-content: flex-start; /* Align items to start for left hamburger */
        gap: 1rem; /* Add gap between hamburger and logo */
        display: flex !important; /* Ensure flex display */
        align-items: center; /* Center items vertically */
    }
    
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #8B4513;
        padding: 0.5rem;
        transition: color 0.3s ease;
        order: 1; /* First item */
        z-index: 1001; /* Ensure it's above other elements */
        position: relative; /* Ensure positioning context */
    }
    
    .mobile-menu-toggle:hover {
        color: #A0522D;
    }
    
    .logo {
        order: 2; /* Second item */
        flex-grow: 1; /* Take remaining space */
        text-align: center; /* Center the logo */
    }
    
    .logo h1 {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .nav-links {
        display: none; /* Hide nav links on mobile - show via hamburger menu */
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        order: 3; /* Third item (hidden) */
    }
    
    .nav-links.mobile-active {
        left: 0;
        display: flex; /* Show when active */
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
        border-radius: 8px;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: #8B4513;
        background: rgba(139, 69, 19, 0.1);
    }
    
    .nav-links a.bpme-link {
        font-weight: bold;
        color: #8B4513;
        background: rgba(139, 69, 19, 0.15);
    }
    
    .nav-links a.bpme-link:hover,
    .nav-links a.bpme-link.active {
        background: #8B4513;
        color: white;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center; /* Center items horizontally in column layout */
        justify-content: center; /* Center items vertically */
        gap: 1rem;
        width: 100%; /* Full width */
        margin: 0 auto; /* Center the container */
        text-align: center; /* Center text content */
    }
    
    .carousel-container {
        padding: 0 40px !important; /* Container padding for navigation buttons */
        text-align: center;
        overflow: hidden;
    }
    
    .cakes-carousel {
        overflow: hidden;
        width: 100% !important;
        border-radius: 20px;
    }
    
    .cake-wheel {
        gap: 2rem !important; /* Gap between cake items */
        justify-content: flex-start;
    }
    
    .cake-item {
        flex: 0 0 250px !important; /* Fixed width, allows scrolling between items */
        width: 250px !important;
        height: 350px;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        scroll-snap-align: center !important; /* Snap to center when scrolling */
    }
    
    .cake-item img {
        width: 100% !important;
        height: 60% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    /* Enable smooth scrolling and snap behavior */
    .cakes-carousel {
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    .cake-hover-description {
        padding: 2rem 1rem 1rem 1rem !important; /* More top padding for mobile */
    }
    
    .cake-hover-description h3 {
        font-size: 1.1rem !important;
        margin-top: 1rem !important; /* Move title toward middle on mobile */
    }
    
    .cake-hover-description p {
        font-size: 0.8rem !important;
        margin-top: 0.3rem !important; /* Small spacing for mobile */
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        height: 250px !important; /* Fixed height for mobile */
        padding: 0 !important; /* Remove padding to let image fill */
        overflow: hidden;
        border: none !important; /* Remove any border */
        box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important; /* Keep shadow but ensure it's not mistaken for border */
        background: white !important;
        border-radius: 20px !important;
    }
    
    .customer-photo {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        border-radius: 20px !important;
        border: none !important; /* Remove any border */
        overflow: hidden;
    }
    
    .customer-photo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Fill the entire box */
        object-position: center !important; /* Center the image */
        border-radius: 20px !important;
        border: none !important; /* Remove any border */
    }
    
    .feedback-stats {
        grid-template-columns: 1fr;
    }
    
    .team-carousel-container {
        padding: 0 20px;
    }
    
    .team-wheel {
        gap: 1rem;
        animation: scroll-team-mobile 25s linear infinite;
    }
    
    @keyframes scroll-team-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-182px * 11)); /* Mobile width calculation */
        }
    }
    
    .team-member {
        flex: 0 0 150px;
        padding: 1rem;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
    }
    
    .team-member h4 {
        font-size: 1rem;
    }
    
    .team-member .role {
        font-size: 0.8rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    /* Special mobile adjustments for larger emblems */
    .mumheritage-card img,
    .whatsapp-card img {
        width: 90px !important; /* Slightly larger but still mobile-friendly */
        height: 90px !important;
    }
    
    .mumheritage-card,
    .whatsapp-card {
        padding: 0.8rem !important; /* Adjusted padding for larger emblems */
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-btn {
        padding: 1.2rem;
        min-height: 80px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .contact-bottom-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        grid-template-columns: none !important; /* Override grid */
    }
    
    .contact-info-left {
        order: 1 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .contact-info-left .contact-item {
        margin-bottom: 1rem !important;
        padding: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .social-media-section {
        order: 2 !important;
        width: 100% !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 10 !important;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    }
    
    .social-media-section h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .social-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
    
    .social-link {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        width: 90% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-detailed {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-cta-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .order-cta-section h3 {
        font-size: 1.4rem;
    }
    
    .order-cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-img {
        width: 120px;
        height: 120px;
        object-fit: contain;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        height: 250px; /* Fixed height for mobile */
    }
    
    .customer-photo {
        width: 100%;
        height: 100%;
    }
    
    .customer-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fill the entire box */
        object-position: center; /* Center the image */
    }
    
    .order-form-section {
        padding: 2rem 1rem;
    }
    
    .bulk-order-info {
        padding: 2rem 1rem;
    }
    
    .social-media-section {
        padding: 2rem 1rem;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image placeholder styling */
.cake-card img {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    position: relative;
}

.cake-card img::after {
    content: "🎂";
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Enhanced About Section */
.mission-statement {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-statement h3 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Pacifico', cursive;
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.team-section, .partners-section, .values-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2; /* Above stickers */
}

.team-section h3, .partners-section h3, .values-section h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Team Section - Carousel Style */
.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2; /* Above stickers */
}

.team-carousel {
    overflow: hidden;
    z-index: 2; /* Above stickers */
}

.team-wheel {
    display: flex;
    gap: 2rem;
    animation: scroll-team 30s linear infinite;
    will-change: transform;
}

@keyframes scroll-team {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-232px * 11)); /* Move through all 11 team members */
    }
}

.team-member {
    flex: 0 0 200px;
    background: transparent;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    z-index: 2; /* Above stickers */
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #8B4513;
    object-fit: cover;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.team-member h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #8B4513;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0;
}

/* Team Indicators - Removed since using CSS animation */

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

.team-member p {
    color: #666;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.partner-card img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 1rem;
    object-fit: contain;
    padding: 0.2rem;
}

.partner-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partner-card p {
    color: #666;
    line-height: 1.5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.5;
}

/* Enhanced Contact Section */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 120px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-btn.whatsapp {
    border-left: 4px solid #25D366;
}

.contact-btn.phone {
    border-left: 4px solid #007bff;
}

.contact-btn.email {
    border-left: 4px solid #8B4513;
}

.contact-btn.order-form {
    border-left: 4px solid #28a745;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.contact-btn div {
    flex: 1;
}

.contact-btn h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-btn p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Order Form */
.order-form-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.order-form-section h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.submit-order-btn {
    width: 100%;
    padding: 15px;
    background: #8B4513;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 1rem;
}

.submit-order-btn:hover {
    background: #E67373;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Info Detailed */
.contact-info-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.contact-info-detailed .contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.contact-info-detailed .contact-item h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-detailed .contact-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Bottom Layout - Two Column */
.contact-bottom-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-left .contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.contact-info-left .contact-item h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-left .contact-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Social Media Section - Right Side */
.social-media-section {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    height: fit-content;
}

.social-media-section h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: 'Pacifico', cursive;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.tiktok {
    background: #000;
    color: white;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Reduced from 250px */
    gap: 1.5rem; /* Reduced from 2rem */
    margin-bottom: 1rem; /* Reduced from 2rem */
}

/* Default footer section styling - left aligned for desktop */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align on desktop */
    text-align: left; /* Left align text on desktop */
}

.footer-section h4 {
    color: #8B4513;
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    font-size: 1rem; /* Reduced from default */
}

.footer-section p {
    color: #ccc;
    line-height: 1.4; /* Reduced from 1.6 */
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    font-size: 0.85rem; /* Smaller font */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.3rem; /* Reduced from 0.5rem */
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem; /* Smaller font */
}

.footer-section ul li a:hover {
    color: #8B4513;
}

.footer-social {
    display: flex;
    justify-content: flex-start; /* Left align on desktop */
    align-items: center;
    gap: 0.5rem; /* Reduced from 1rem */
    margin-top: 0.5rem; /* Reduced from 1rem */
    flex-wrap: wrap; /* Allow wrapping on very small screens */
}

.footer-social a {
    font-size: 1.2rem; /* Reduced from 1.5rem */
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1); /* Reduced from 1.2 */
}

.footer-social-icon {
    width: 20px; /* Reduced from 24px */
    height: 20px; /* Reduced from 24px */
    object-fit: contain;
    transition: transform 0.3s;
}

.footer-social-icon:hover {
    transform: scale(1.1); /* Reduced from 1.2 */
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem; /* Reduced from 2rem */
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
    font-size: 0.8rem; /* Smaller font */
}
/* Tablet responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .cakes-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Small tablet responsive design */
@media (max-width: 768px) and (min-width: 481px) {
    .cakes-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cake-item {
        aspect-ratio: 1;
    }
    
    .cake-basic-info h3 {
        font-size: 1rem;
    }
    
    .cake-basic-info .price {
        font-size: 1.1rem;
    }
}
/* Footer Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left align on desktop */
    gap: 0.3rem; /* Reduced from 0.5rem */
    margin-bottom: 0.5rem; /* Reduced from 1rem */
}

.footer-logo-img {
    width: 35px; /* Reduced from 50px */
    height: 35px; /* Reduced from 50px */
    object-fit: contain;
}

.footer-logo h4 {
    margin: 0;
    color: #8B4513;
    font-family: 'Pacifico', cursive;
    font-size: 0.9rem; /* Smaller font */
}
/* Sprinkle Trail Effect */
.sprinkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

/* Ensure cake stickers stay in background */
.cake-stickers {
    z-index: 1; /* Lower than sprinkles */
}

/* Sprinkle animations */
@keyframes sprinkle-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Make sure sprinkles don't interfere with interactions */
.sprinkle-container * {
    pointer-events: none;
    user-select: none;
}
/* Special styling for Mum's Heritage emblem */
.mumheritage-card img {
    width: 150px !important; /* Bigger than default 120px */
    height: 150px !important; /* Bigger than default 120px */
    padding: 0.1rem; /* Less padding for more space */
    margin-bottom: 0.1rem; /* Reduced margin to compensate for larger image */
}

.mumheritage-card {
    padding: 1.2rem 1.5rem; /* Adjusted padding to align h4 with other cards */
}
/* Special styling for WhatsApp emblem */
.whatsapp-card img {
    width: 150px !important; /* Bigger than default 120px */
    height: 150px !important; /* Bigger than default 120px */
    padding: 0.1rem; /* Less padding for more space */
    margin-bottom: 0.1rem; /* Reduced margin to compensate for larger image */
}

.whatsapp-card {
    padding: 1.2rem 1.5rem; /* Adjusted padding to align h4 with other cards */
}
    /* Mobile order section improvements */
    .order-cta-section {
        padding: 2rem 1rem; /* Reduced padding for mobile */
        margin-top: 2rem; /* Reduced margin */
    }
    
    .order-cta-section h3 {
        font-size: 1.5rem; /* Smaller heading for mobile */
    }
    
    .order-cta-section p {
        font-size: 1rem; /* Smaller text for mobile */
    }
    
    .order-cta-btn {
        padding: 12px 24px; /* Smaller button for mobile */
        font-size: 1rem;
    }
    
    /* Ensure all interactive elements are properly spaced */
    .quick-contact {
        gap: 1rem; /* Reduced gap for mobile */
    }
    
    .contact-info-detailed {
        gap: 1rem; /* Reduced gap for mobile */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ordering-info {
        grid-template-columns: 1fr;
    }
/* Desktop footer fix - ensure proper layout on larger screens */
@media (min-width: 769px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
    }
    
    .contact-bottom-layout {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
    }
    
    .social-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1rem !important;
    }
}
/* Tablet and small desktop responsive footer */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
        justify-items: center !important;
        text-align: center !important;
    }
    
    .footer-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-section h4 {
        text-align: center !important;
    }
    
    .footer-section p {
        text-align: center !important;
    }
    
    .footer-section ul {
        text-align: center !important;
        padding: 0 !important;
    }
    
    .footer-section ul li {
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-social {
        justify-content: center !important;
    }
}
/* Small screens and mobile responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .footer-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-section h4 {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section p {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-section ul {
        text-align: center !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .footer-section ul li {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-section ul li a {
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-social {
        justify-content: center !important;
        margin-top: 1rem !important;
    }
}