/* ===== WARM ARTISANAL ELEGANCE FOUNDATION ===== */

:root {
    /* Typography Scale */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --font-ui: 'Inter', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    
    /* Warm Color Palette */
    --warm-cream: #faf8f5;
    --soft-cream: #f5f1eb;
    --warm-brown: #b48f62;
    --rich-brown: #ad926e;
    --accent-gold: #d4af37;
    --soft-gold: #f0e0bb;
    --warm-white: #fefcf9;
    --text-primary: #2c251e;
    --text-secondary: #6b5d4f;
    --text-muted: #8b7d70;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Elegant Shadows */
    --shadow-warm: 0 4px 20px rgba(180, 143, 98, 0.15);
    --shadow-elegant: 0 8px 32px rgba(44, 37, 30, 0.08);
    --shadow-soft: 0 2px 12px rgba(180, 143, 98, 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

/* Smooth animations for all elements */
* {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--warm-cream);
    letter-spacing: 0.01em;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    font-weight: 400;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f0e0bb;
}

::-webkit-scrollbar-thumb {
    background: #b48f62;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ad926e;
}

/* ===== ARTISANAL TYPOGRAPHY SYSTEM ===== */

/* Display Headings - Warm & Elegant */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(44, 37, 30, 0.1);
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
}

h3 {
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: var(--text-2xl);
    font-weight: 500;
}

/* Body Text - Warm & Readable */
p {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

/* Special Text Styles */
.accent-text {
    font-family: var(--font-accent);
    color: var(--warm-brown);
    font-weight: 600;
    font-size: var(--text-2xl);
    line-height: 1.4;
}

.ui-text {
    font-family: var(--font-ui);
    letter-spacing: 0.02em;
}

/* Duplicate removed - using system above */

/* ===== ARTISANAL BUTTON SYSTEM ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: var(--text-lg);
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 56px;
    box-shadow: var(--shadow-warm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--rich-brown) 100%);
    color: var(--warm-white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
    background: linear-gradient(135deg, var(--rich-brown) 0%, var(--warm-brown) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--warm-brown);
    border: 2px solid var(--warm-brown);
}

.btn-secondary:hover {
    background: var(--warm-brown);
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(180, 143, 98, 0.75);
    backdrop-filter: blur(30px) saturate(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(1.2);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(180, 143, 98, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Static header - no scrolled state needed */

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
}

.logo-img {
    height: 180px;
    width: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block !important;
    object-fit: contain;
    max-width: 500px;
    min-width: 180px;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

.logo:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}



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

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

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #b48f62, #ad926e);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f1eac9;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section with Cake Topping Header */
/* ===== ELEGANT HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(180, 143, 98, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-cream) 30%, var(--soft-gold) 60%, var(--warm-cream) 100%);
    overflow: hidden;
    padding: var(--space-lg);
}













/* ===== ELEGANT HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: var(--space-xl) var(--space-lg);
    margin: 0 auto;
    text-align: center;
}



.hero-title-container {
    margin-bottom: 2rem;
    width: 100%;
}

.hero-title {
    display: block;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #b48f62;
    text-shadow: 0 4px 8px rgba(180, 143, 98, 0.3);
}



@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-5px) rotateX(5deg); }
}

.hero-subtitle {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-description {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2xl);
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
}







/* ===== INTERACTIVE ANIMATIONS ===== */

/* Particle explosion animation */
@keyframes explosion {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Temporary sparkle animation */
@keyframes tempSparkle {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Cake confetti animation */
@keyframes cakeConfetti {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg);
    }
}

/* Title pulse animation */
@keyframes titlePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Button particle animation */
@keyframes buttonParticle {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) translateY(-20px);
    }
}

/* Button ripple animation */
@keyframes buttonRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Sections */
section {
    padding: 5rem 2rem;
    position: relative;
}

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

/* ===== REDESIGNED ABOUT SECTION ===== */
.about {
    background: 
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(180, 143, 98, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-cream) 100%);
    padding: 5rem 0;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story {
    text-align: left;
}

.lead-text {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-story p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(180, 143, 98, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elegant);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--warm-brown), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.value-content h4 {
    color: var(--text-primary);
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin: 0;
    line-height: 1.5;
}

/* About Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story {
        text-align: center;
    }
}



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

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

/* ===== REDESIGNED SERVICES SECTION ===== */
.services {
    background: 
        radial-gradient(circle at 30% 100%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 0%, rgba(180, 143, 98, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-cream) 100%);
    padding: 5rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--warm-brown);
    font-weight: 600;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--warm-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 143, 98, 0.1);
    height: fit-content;
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--warm-brown), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: var(--text-primary);
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    margin: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: rgba(180, 143, 98, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

/* ===== ARTISANAL GALLERY SHOWCASE ===== */
.gallery {
    background: 
        radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-cream) 50%, var(--soft-gold) 100%);
    padding: var(--space-2xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 350px;
    background: var(--warm-white);
    border: 1px solid rgba(180, 143, 98, 0.1);
    opacity: 1;
    visibility: visible;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-elegant);
    border-color: rgba(180, 143, 98, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
    min-height: 350px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Item Overlay */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(180, 143, 98, 0.1) 0%, 
        rgba(212, 175, 55, 0.05) 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(180, 143, 98, 0.8), rgba(255, 142, 142, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* How to Order Section */
.how-to-order {
    background: linear-gradient(135deg, #f0e0bb 0%, #faf8f5 100%);
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(180, 143, 98, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(180, 143, 98, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b48f62, #ad926e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.step h3 {
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    padding: 5rem 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    animation: fadeInLeft 1s ease-out;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(180, 143, 98, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #b48f62, #ad926e);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(180, 143, 98, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #b48f62;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.contact-item div {
    flex: 1;
    min-width: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b48f62;
    margin: 0 0 0.25rem 0;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #b48f62, #ad926e);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(180, 143, 98, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(180, 143, 98, 0.4);
}

.feature-item i {
    font-size: 1rem;
}

.contact-form {
    animation: fadeInRight 1s ease-out;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(180, 143, 98, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(180, 143, 98, 0.1);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    animation: rainbow 3s ease infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group label i {
    color: #b48f62;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #f0e0bb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b48f62;
    box-shadow: 0 0 0 3px rgba(180, 143, 98, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #b48f62, #ad926e);
    transition: width 0.3s ease;
    z-index: 2;
}

.form-group input:focus + .input-decoration,
.form-group select:focus + .input-decoration,
.form-group textarea:focus + .input-decoration {
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #f0e0bb;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #b48f62, #ad926e);
    border-color: #b48f62;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(180, 143, 98, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(180, 143, 98, 0.4);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateY(-50%) translateX(5px);
}

.btn-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.btn-sparkles::before,
.btn-sparkles::after {
    content: '✨';
    position: absolute;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-sparkles::before {
    top: 20%;
    left: 20%;
}

.btn-sparkles::after {
    bottom: 20%;
    right: 20%;
}

.submit-btn:hover .btn-sparkles::before {
    opacity: 1;
    transform: translate(-10px, -10px) rotate(45deg);
}

.submit-btn:hover .btn-sparkles::after {
    opacity: 1;
    transform: translate(10px, 10px) rotate(-45deg);
}

/* Form Loading State */
.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Form Success Animation */
.form-success {
    animation: formSuccess 0.6s ease-out;
}

@keyframes formSuccess {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced Form Animations */
.form-group {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }
.form-group:nth-child(9) { animation-delay: 0.9s; }
.form-group:nth-child(10) { animation-delay: 1s; }

/* Floating Labels Effect */
.form-group {
    position: relative;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-25px) scale(0.8);
    color: #b48f62;
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #b48f62;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .contact-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0.75rem;
    }
    
    .contact-content {
        gap: 1.5rem;
        padding: 0;
        max-width: 100%;
    }
    
    .contact-info {
        padding: 0;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 15px;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
        margin-left: 0;
        margin-right: 0;
        border-radius: 10px;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        margin-right: 0;
        width: 30px;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }
    
    .contact-item div {
        flex: 1;
        min-width: 0;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
        color: #b48f62;
        font-weight: 600;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #666;
        margin: 0;
        word-break: break-word;
    }
    
    .contact-features {
        margin-top: 1rem;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .feature-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b48f62, #ad926e);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(180, 143, 98, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(180, 143, 98, 0.4);
}

.scroll-to-top.show {
    display: flex;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.lightbox.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2) rotate(90deg);
}

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



/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
        align-items: center;
        justify-content: center;
        height: 150px;
        flex-direction: column;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(180, 143, 98, 0.95);
        backdrop-filter: blur(20px) saturate(1.2);
        -webkit-backdrop-filter: blur(20px) saturate(1.2);
        width: 320px;
        height: auto;
        min-height: 400px;
        max-height: 80vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 
            0 15px 40px rgba(180, 143, 98, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border-right: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 0 15px 15px 0;
        padding: 2rem 1.5rem;
        overflow-y: auto;
        margin-top: 100px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInMenu 0.5s ease forwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.7s; }

    .nav-menu li a {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 25px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        color: white;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu li a:hover {
        background: rgba(255, 255, 255, 0.25);
        color: white;
        transform: scale(1.05);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    }

    /* Typography */
    h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Hero Section - Mobile Optimized */
    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
        perspective: 500px;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: var(--text-3xl);
        line-height: 1.3;
    }

    .hero-description {
        font-size: var(--text-lg);
        padding: 0 1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    /* Passionate Decorative Elements - Mobile Optimized */
    .decorative-element {
        width: 15px;
        height: 15px;
    }

    .particle {
        width: 3px;
        height: 3px;
    }

    .sparkle {
        width: 4px;
        height: 4px;
    }

    .cake-topping-header {
        height: 150px;
    }

    .sprinkle {
        width: 2px;
        height: 8px;
    }

    /* Layout Adjustments */
    .about {
        padding: 3rem 1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
    }

    .about-text {
        padding: 0;
        text-align: center;
    }

    .about-text h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }

    .feature {
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(180, 143, 98, 0.1);
        font-size: 0.9rem;
        min-width: 150px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 2rem;
        width: 100%;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 20px;
        min-height: 200px;
        width: 100%;
        display: block;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .step {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    /* Contact Section */
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-item i {
        font-size: 1.4rem;
        margin-right: 1rem;
        width: 40px;
    }

    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }

    .feature-item {
        padding: 1rem 1.5rem;
        text-align: center;
        font-size: 0.9rem;
    }

    /* Form Optimizations */
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.1rem;
        font-size: 1rem;
        border-radius: 15px;
    }

    .submit-btn {
        width: 100%;
        padding: 1.3rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        border-radius: 50%;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Lightbox */
    .lightbox {
        padding: 1rem;
    }

    .lightbox img {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }


}

@keyframes slideInMenu {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0 0.5rem;
    }

    .logo {
        font-family: var(--font-display);
        font-size: 0;
        gap: 0.5rem;
        padding: 0.5rem 0;
        display: flex !important;
        align-items: center;
        letter-spacing: 0.01em;
    }
    
    /* Hide logo text on mobile, only show image */
    .logo::after {
        content: "";
    }

    .logo-img {
        height: 150px;
        min-width: 150px;
        max-width: 450px;
        border-radius: 10px;
        display: block !important;
        object-fit: contain;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hamburger {
        width: 35px;
        height: 35px;
    }

    .hamburger span {
        height: 3px;
    }

    /* Typography */
    h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    h3 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Layout */
    section {
        padding: 2rem 0.5rem;
    }

    .section-container {
        padding: 0 0.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 8rem 0.5rem 2rem 0.5rem;
    }

    .hero-content {
        padding: 1rem 0.5rem;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
    }

    /* Cake Decorations */
    .cake-decoration {
        font-size: 1.5rem;
    }

    /* About Section */
    .about {
        padding: 2.5rem 0.75rem;
    }
    
    .about-text {
        padding: 0;
        text-align: center;
    }

    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .about-features {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }

    .feature {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        min-width: 200px;
        max-width: 250px;
    }

    .feature i {
        font-size: 1rem;
    }

    /* Services */
    .service-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-grid {
        gap: 0.8rem;
        padding: 0 0.5rem;
        margin-top: 1.5rem;
    }

    .gallery-item {
        border-radius: 15px;
        min-height: 200px;
    }

    .gallery-overlay i {
        font-size: 1.5rem;
    }

    /* How to Order */
    .step {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-item {
        padding: 1.25rem;
        margin: 0 0 1rem 0;
    }

    .contact-item i {
        font-size: 1.3rem;
        margin-right: 0.75rem;
        width: 35px;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .contact-features {
        gap: 0.75rem;
        justify-content: center;
    }

    .feature-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .feature-item i {
        font-size: 1rem;
    }

    /* Form */
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .form-group label i {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 25px;
    }

    .btn-text {
        font-size: 1rem;
    }

    .btn-icon {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0.5rem;
    }

    .footer h3 {
        font-size: 1.3rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Lightbox */
    .lightbox {
        padding: 0.5rem;
    }

    .lightbox img {
        max-width: 98vw;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    /* Success Message */
    .success-message {
        left: 0.5rem;


    /* Logo */
    .logo {
        font-family: var(--font-display);
        font-size: 1rem;
        gap: 0.6rem;
        letter-spacing: 0.01em;
    }
    
    .logo-img {
        height: 130px;
        min-width: 130px;
        max-width: 400px;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .service-card,
    .step,
    .contact-item {
        padding: 1rem;
        margin: 0 0 0.75rem 0;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 0.5rem;
        width: 30px;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.25rem 0.75rem;
        margin: 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .logo {
        font-family: var(--font-display);
        font-size: 0.8rem;
        gap: 0.4rem;
        letter-spacing: 0.01em;
    }

    .logo-img {
        height: 120px;
        min-width: 120px;
        max-width: 350px;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Touch-Friendly Interactions */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Disable complex animations on mobile for better performance */
    .hero-bg-layer {
        animation: none !important;
    }
    
    .particle {
        animation: none !important;
        opacity: 0.3;
    }
    
    .decorative-element {
        animation: none !important;
        opacity: 0.4;
    }
    
    .topping-layer {
        animation: none !important;
    }
    
    .sprinkle {
        animation: none !important;
    }
    
    /* Keep essential animations but reduce complexity */
    .btn, .nav-menu li a {
        transition-duration: 0.2s !important;
    }
    
    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Improve touch targets */
    .btn, .submit-btn, .nav-menu li a, .social-links a, .scroll-to-top {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Optimize form fields for mobile */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        border-radius: 8px;
        padding: 12px 16px;
    }
    
    /* Mobile-friendly spacing */
    .section-container {
        padding: 0 1rem;
    }
    
    /* Optimize gallery for mobile */
    .gallery-item {
        aspect-ratio: 1;
        overflow: hidden;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    /* Mobile scroll optimizations */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* Mobile form focus states */
    .form-group.focused input,
    .form-group.focused textarea,
    .form-group.focused select {
        border-color: #b48f62;
        box-shadow: 0 0 0 3px rgba(180, 143, 98, 0.1);
    }
}

input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Touch Feedback */
.btn:active,
.service-card:active,
.gallery-item:active,
.step:active,
.contact-item:active,
.feature-item:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .service-card,
    .gallery-item,
    .step,
    .contact-item {
        animation: none;
        transform: none;
    }

    .service-card:hover,
    .gallery-item:hover,
    .step:hover,
    .contact-item:hover {
        transform: translateY(-5px);
        transition: transform 0.3s ease;
    }

    /* Optimize cake decorations for mobile */
    .cake-decoration {
        animation-duration: 4s;
        animation-iteration-count: infinite;
    }

    /* Reduce shadow complexity on mobile */
    .service-card,
    .step,
    .contact-item,
    .gallery-item {
        box-shadow: 0 5px 15px rgba(180, 143, 98, 0.15);
    }

    /* Optimize form interactions */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        transform: none;
        box-shadow: 0 0 0 3px rgba(180, 143, 98, 0.2);
    }

    /* Touch-friendly button sizes */
    .btn,
    .submit-btn,
    .scroll-to-top,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Optimize gallery for touch */
    .gallery-item {
        cursor: pointer;
    }

    .gallery-overlay {
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .gallery-item:active .gallery-overlay {
        opacity: 1;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Sparkle Animation */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f0e0bb;
    border-radius: 50%;
    animation: sparkle 2s linear infinite;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Heartbeat Animation for Logo */
.logo {
    animation: heartbeat 2s ease-in-out infinite;
}

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

/* Floating Animation for Service Cards */
.service-card {
    animation: float 6s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: 1s;
}

.service-card:nth-child(3) {
    animation-delay: 2s;
}

/* Rainbow Border Animation */
.rainbow-border {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.rainbow-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #b48f62, #ad926e, #f0e0bb, #f0e0bb, #b48f62);
    background-size: 400% 400%;
    animation: rainbow 3s ease infinite;
    z-index: -1;
    border-radius: 20px;
    padding: 3px;
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Terms & Conditions Page */
.terms-section {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, #f0e0bb 0%, #faf8f5 50%, #f0e0bb 100%);
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideInDown 1s ease-out;
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(180, 143, 98, 0.3);
}

.terms-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.intro-text {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(180, 143, 98, 0.1);
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    animation: rainbow 3s ease infinite;
}

.terms-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-left: 4px solid #b48f62;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.terms-item:nth-child(1) { animation-delay: 0.1s; }
.terms-item:nth-child(2) { animation-delay: 0.2s; }
.terms-item:nth-child(3) { animation-delay: 0.3s; }
.terms-item:nth-child(4) { animation-delay: 0.4s; }
.terms-item:nth-child(5) { animation-delay: 0.5s; }
.terms-item:nth-child(6) { animation-delay: 0.6s; }
.terms-item:nth-child(7) { animation-delay: 0.7s; }
.terms-item:nth-child(8) { animation-delay: 0.8s; }
.terms-item:nth-child(9) { animation-delay: 0.9s; }
.terms-item:nth-child(10) { animation-delay: 1s; }
.terms-item:nth-child(11) { animation-delay: 1.1s; }
.terms-item:nth-child(12) { animation-delay: 1.2s; }

.terms-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(180, 143, 98, 0.2);
    border-left-width: 6px;
}

.terms-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-item h3 i {
    color: #b48f62;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.terms-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.terms-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.terms-item ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.terms-item ul li:last-child {
    margin-bottom: 0;
}

.terms-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(180, 143, 98, 0.1);
    animation: fadeInUp 1s ease-out 1.5s both;
}

.terms-footer p {
    margin-bottom: 0.5rem;
    color: #666;
}

.terms-footer a {
    color: #b48f62;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-footer a:hover {
    color: #ad926e;
    text-decoration: underline;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-section {
        padding: 6rem 1rem 3rem;
    }
    
    .terms-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .terms-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .terms-content {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .terms-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .terms-item h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .terms-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .terms-item ul li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .terms-footer {
        padding: 1.5rem;
        margin: 2rem 1rem 0 1rem;
    }

    .terms-footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 1.5rem 1rem;
    }
    
    .terms-item {
        padding: 1rem;
    }
    
    .terms-item h3 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Allergy Disclaimer Page */
.allergy-section {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 50%, #faf8f5 100%);
    min-height: 100vh;
}

.allergy-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideInDown 1s ease-out;
}

.allergy-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(180, 143, 98, 0.3);
}

.allergy-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.warning-icon {
    font-size: 3rem;
    color: #b48f62;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

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

.allergy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(180, 143, 98, 0.1);
    position: relative;
    overflow: hidden;
}

.allergy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    animation: rainbow 3s ease infinite;
}

.allergy-warning {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border: 2px solid #b48f62;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.allergy-warning h3 {
    color: #b48f62;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.allergy-warning h3 i {
    font-size: 1.3rem;
}

.allergy-warning p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
}

.allergy-info {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-left: 4px solid #ad926e;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.allergy-info h3 {
    color: #ad926e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.allergy-info h3 i {
    font-size: 1.2rem;
}

.allergy-info p {
    color: #555;
    line-height: 1.7;
}

.ingredients-list {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-left: 4px solid #f0e0bb;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ingredients-list h3 {
    color: #f0e0bb;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ingredients-list h3 i {
    font-size: 1.2rem;
}

.ingredients-list p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ingredients-list ul {
    list-style: none;
    padding: 0;
}

.ingredients-list ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #333;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0e0bb;
}

.ingredients-list ul li:last-child {
    border-bottom: none;
}

.ingredients-list ul li i {
    color: #b48f62;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.coloring-notice {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-left: 4px solid #f0e0bb;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.coloring-notice h3 {
    color: #b48f62;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coloring-notice h3 i {
    font-size: 1.2rem;
}

.coloring-notice p {
    color: #555;
    line-height: 1.7;
}

.customer-responsibility {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-left: 4px solid #b48f62;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.customer-responsibility h3 {
    color: #b48f62;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.customer-responsibility h3 i {
    font-size: 1.2rem;
}

.customer-responsibility p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.customer-responsibility ul {
    list-style: none;
    padding: 0;
}

.customer-responsibility ul li {
    padding: 0.5rem 0;
    color: #333;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.customer-responsibility ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b48f62;
    font-weight: bold;
}

.allergy-footer {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(180, 143, 98, 0.1);
    text-align: center;
}

.contact-info h3 {
    color: #b48f62;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-info h3 i {
    font-size: 1.2rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.contact-details a {
    color: #b48f62;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #ad926e;
    text-decoration: underline;
}

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

.back-links .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Allergy Page */
@media (max-width: 768px) {
    .allergy-section {
        padding: 6rem 1rem 3rem;
    }
    
    .allergy-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .allergy-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .warning-icon {
        font-size: 2.5rem;
    }
    
    .allergy-content {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .allergy-warning,
    .allergy-info,
    .ingredients-list,
    .coloring-notice,
    .customer-responsibility {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .allergy-warning h3,
    .allergy-info h3,
    .ingredients-list h3,
    .coloring-notice h3,
    .customer-responsibility h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .allergy-warning p,
    .allergy-info p,
    .ingredients-list p,
    .coloring-notice p,
    .customer-responsibility p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .ingredients-list ul li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .allergy-footer {
        padding: 1.5rem;
        margin: 2rem 1rem 0 1rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
    
    .back-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .back-links .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .allergy-header h1 {
        font-size: 2rem;
    }
    
    .allergy-content {
        padding: 1.5rem 1rem;
    }
    
    .allergy-warning,
    .allergy-info,
    .ingredients-list,
    .coloring-notice,
    .customer-responsibility {
        padding: 1rem;
    }
    
    .ingredients-list ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-details {
        align-items: flex-start;
    }
}

/* ===== REDESIGNED MENU PAGE ===== */
.menu-section {
    padding: 8rem 0 6rem;
    background: 
        radial-gradient(circle at 30% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 0%, rgba(180, 143, 98, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-cream) 100%);
    min-height: 100vh;
}

.menu-hero {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.menu-hero h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.menu-hero .accent-text {
    font-size: var(--text-3xl);
    margin-bottom: 1.5rem;
}

.menu-description {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* ===== MENU SHOWCASE DESIGN ===== */
.menu-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Featured Section */
.featured-section {
    margin-bottom: 6rem;
}

.section-title {
    text-align: center;
    color: var(--text-primary);
    font-size: var(--text-4xl);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--warm-brown), var(--accent-gold));
    border-radius: 2px;
}

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

.featured-card {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 
        0 15px 40px rgba(180, 143, 98, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(180, 143, 98, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--warm-brown), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.featured-card.highlight {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-cream) 100%);
    border: 3px solid var(--warm-brown);
    box-shadow: 
        0 20px 50px rgba(180, 143, 98, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.featured-card.highlight::before {
    height: 6px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-brown), var(--rich-brown));
}

.featured-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(180, 143, 98, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--warm-brown);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--warm-brown), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    color: var(--text-primary);
    font-size: var(--text-2xl);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-description {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(180, 143, 98, 0.1);
    color: var(--warm-brown);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid rgba(180, 143, 98, 0.2);
}

.price-range {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--warm-brown);
    text-align: right;
}

/* Detailed Menu */
.detailed-menu {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-cream) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(180, 143, 98, 0.2);
    box-shadow: 
        0 20px 60px rgba(180, 143, 98, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin: 2rem 0;
}

.menu-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.menu-section {
    background: var(--warm-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(180, 143, 98, 0.1);
}

.menu-section.special {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-cream) 100%);
    border: 2px solid rgba(180, 143, 98, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(180, 143, 98, 0.1);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--warm-brown), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-info h3 {
    color: var(--text-primary);
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-info p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

.section-note {
    font-size: var(--text-sm);
    color: var(--warm-brown);
    font-style: italic;
    background: rgba(180, 143, 98, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(180, 143, 98, 0.15);
    box-shadow: 
        0 8px 25px rgba(180, 143, 98, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--warm-brown), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover {
    background: var(--warm-white);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(180, 143, 98, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(180, 143, 98, 0.3);
}

.item-content h4 {
    color: var(--text-primary);
    font-size: var(--text-lg);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.item-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin: 0;
    line-height: 1.4;
}

.item-price {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--warm-brown);
    flex-shrink: 0;
    margin-left: 1.5rem;
    background: linear-gradient(135deg, rgba(180, 143, 98, 0.1), rgba(212, 175, 55, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(180, 143, 98, 0.2);
    text-align: center;
    min-width: 80px;
}

/* Celebration Cards */
.celebration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.celebration-card {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-cream) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 2px solid rgba(180, 143, 98, 0.2);
    box-shadow: 
        0 12px 35px rgba(180, 143, 98, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.celebration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--warm-brown), var(--accent-gold), var(--rich-brown));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.celebration-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(180, 143, 98, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--warm-brown);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(180, 143, 98, 0.2);
}

.card-header h4 {
    color: var(--text-primary);
    font-size: var(--text-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header i {
    color: var(--warm-brown);
}

.price-tag {
    background: linear-gradient(135deg, var(--warm-brown), var(--rich-brown));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: var(--text-lg);
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(180, 143, 98, 0.15);
    color: var(--warm-brown);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid rgba(180, 143, 98, 0.3);
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--warm-brown);
    font-weight: bold;
}

/* Mobile responsiveness for beautiful boxes */
@media (max-width: 768px) {
    .menu-section {
        padding: var(--space-md);
    }
    
    .detailed-menu {
        padding: 1.5rem;
        margin: 0;
        border-radius: var(--radius-md);
    }
    
    .menu-sections {
        gap: 2.5rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.5rem;
        border-radius: var(--radius-md);
    }
    
    .item-price {
        font-size: var(--text-xl);
        padding: 0.4rem 0.8rem;
        min-width: 70px;
        margin-left: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-card {
        padding: 2rem;
        border-radius: var(--radius-lg);
    }
    
    .celebration-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .celebration-card {
        padding: 2rem;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .menu-section {
        padding: var(--space-sm);
    }
    
    .detailed-menu {
        padding: 1rem;
        margin: 0 -1rem;
        border-radius: var(--radius-sm);
    }
    
    .menu-hero {
        padding: 2rem 1rem;
    }
    
    .menu-hero h1 {
        font-size: var(--text-3xl);
    }
    
    .menu-item {
        padding: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .item-price {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .featured-card {
        padding: 1.5rem;
    }
    
    .celebration-card {
        padding: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideInDown 1s ease-out;
}

.pricing-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(180, 143, 98, 0.3);
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.intro-text {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.menu-categories {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(180, 143, 98, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

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

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #b48f62, #ad926e, #f0e0bb);
    animation: rainbow 3s ease infinite;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-header h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.category-header h3 i {
    color: #b48f62;
    font-size: 1.8rem;
}

.flavors {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.note {
    font-size: 0.9rem;
    color: #b48f62;
    font-weight: 600;
}

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

.price-item {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #b48f62;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(180, 143, 98, 0.1), rgba(255, 142, 142, 0.1));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.price-item:hover::before {
    transform: translateX(0);
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(180, 143, 98, 0.2);
    border-left-width: 6px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.price-header h4 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b48f62;
    background: linear-gradient(135deg, #b48f62, #ad926e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

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

.occasion-cake {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #b48f62;
    transition: all 0.3s ease;
}

.occasion-cake:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(180, 143, 98, 0.2);
}

.occasion-cake h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.occasion-cake h4 i {
    color: #b48f62;
    font-size: 1.3rem;
}

.cake-details ul {
    list-style: none;
    padding: 0;
}

.cake-details ul li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0e0bb;
}

.cake-details ul li:last-child {
    border-bottom: none;
}

.cake-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b48f62;
    font-weight: bold;
}

.pricing-footer {
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.order-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(180, 143, 98, 0.1);
    text-align: center;
}

.order-info h3 {
    color: #b48f62;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.order-info h3 i {
    font-size: 1.3rem;
}

.order-info p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.contact-details a {
    color: #b48f62;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #ad926e;
    text-decoration: underline;
}

.important-notes {
    background: linear-gradient(135deg, #faf8f5 0%, #f0e0bb 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #ad926e;
}

.important-notes h3 {
    color: #ad926e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.important-notes h3 i {
    font-size: 1.2rem;
}

.important-notes ul {
    list-style: none;
    padding: 0;
}

.important-notes ul li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.important-notes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b48f62;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.back-links .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-section {
        padding: 6rem 1rem 3rem;
    }
    
    .pricing-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .pricing-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .menu-category {
        padding: 2rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .flavors {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .note {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .price-header h4 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .price {
        font-size: 1.5rem;
    }

    .price-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .occasion-cakes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .occasion-cake {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .occasion-cake h4 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .cake-details ul li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pricing-footer {
        padding: 1.5rem;
        margin: 2rem 1rem 0 1rem;
    }

    .order-info h3,
    .important-notes h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .order-info p,
    .important-notes ul li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .back-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .menu-category {
        padding: 1.5rem 1rem;
    }
    
    .price-item {
        padding: 1rem;
    }
    
    .occasion-cake {
        padding: 1.5rem;
    }
    
    .order-info,
    .important-notes {
        padding: 1.5rem;
    }
}




