/* CSS Custom Properties - Betul's Bakery Theme v1 */
:root {
    /* Colors */
    --cocoa: #5A3D34;
    --strawberry: #E98586;
    --pistachio: #83C5A3;
    --cream: #FFF6EE;
    --sugar: #FBF2F6;
    --dark-chocolate: #2B201C;
    --icing: #FFFFFF;
    --honey: #F4B860;
    --mint: #4FB477;
    --cherry: #D9534F;
    --gradient-highlight: linear-gradient(135deg, #E98586 0%, #83C5A3 100%);
    
    /* Typography Scale (rem) */
    --text-3xl: 3.0rem;
    --text-2xl: 2.25rem;
    --text-xl: 1.75rem;
    --text-lg: 1.5rem;
    --text-md: 1.25rem;
    --text-sm: 1.125rem;
    --text-base: 1.0rem;
    --text-xs: 0.875rem;
    
    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    
    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 28px;
    
    /* Shadows */
    --shadow-card: 0 6px 18px rgba(42, 26, 22, .08);
    --shadow-hover: 0 10px 24px rgba(42, 26, 22, .12);
    
    /* Motion */
    --timing-standard: 200ms;
    --timing-entrance: 350ms;
    --easing: cubic-bezier(.2,.8,.2,1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--cocoa);
    background-color: var(--sugar);
    font-weight: 400;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--dark-chocolate);
}

h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--dark-chocolate);
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark-chocolate);
}

.script-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    color: var(--strawberry);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-8);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--timing-standard) var(--easing);
    border: none;
    cursor: pointer;
    font-size: var(--text-base);
    box-shadow: var(--shadow-card);
}

.btn-primary {
    background: var(--honey);
    color: var(--dark-chocolate);
    font-weight: 600;
}

.btn-primary:hover {
    background: #e0a755; /* Darker honey */
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--strawberry);
    color: var(--icing);
    border: none;
}

.btn-secondary:hover {
    background: #e0696a; /* Darker strawberry */
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn:focus {
    outline: 2px solid var(--honey);
    outline-offset: 2px;
}

/* Navigation */
.navbar {
    background: rgba(255, 246, 238, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-card);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-logo h2 {
    font-family: 'Parisienne', cursive;
    color: var(--strawberry);
    margin: 0;
    font-size: var(--text-2xl);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.nav-link {
    text-decoration: none;
    color: var(--cocoa);
    font-weight: 500;
    transition: color var(--timing-standard) var(--easing);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--strawberry);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--strawberry);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 80px;
    background: linear-gradient(rgba(255, 246, 238, 0.85), rgba(251, 242, 246, 0.85)), url('../images/banner_optimized.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--strawberry);
    font-weight: 600;
}


.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--cocoa);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cake-icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--strawberry);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform var(--timing-entrance) var(--easing), color var(--timing-standard) var(--easing);
    box-shadow: 0 0 40px rgba(233, 133, 134, 0.3);
}

.cake-icon:hover {
    transform: scale(1.05) rotate(5deg);
    color: var(--honey);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: var(--cream);
    position: relative;
}

.section-subtitle {
    display: block;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-md);
    color: var(--strawberry);
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.story-block {
    margin-bottom: 2rem;
    position: relative;
}

.story-block h3 {
    color: var(--cocoa);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-block h3 i {
    color: var(--strawberry);
}

.story-block p {
    color: var(--cocoa);
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    padding-left: 1.8rem;
}

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

.about-quote {
    margin: 3rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--honey);
    background: rgba(244, 184, 96, 0.1);
    border-radius: var(--radius-sm);
}

.about-quote blockquote {
    margin: 0;
}

.about-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.about-quote cite {
    font-style: normal;
    color: var(--cocoa);
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    text-align: right;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 300px;
}

.baker-photo {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    transition: transform var(--timing-entrance) var(--easing);
    border: 8px solid white;
}

.baker-photo:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--honey);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-chocolate);
    box-shadow: var(--shadow-card);
    border: 4px solid white;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Lora', serif;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

/* Menu Section */
.menu {
    padding: 80px 20px;
    background: #fafafa;
}

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

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-card);
    transition: transform var(--timing-standard) var(--easing);
}

.menu-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.cake-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--timing-entrance) var(--easing);
}

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

.menu-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--dark-chocolate);
    font-weight: 600;
}

.menu-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--strawberry);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.ingredients {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--cocoa);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.pricing {
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    border: 2px solid rgba(232, 133, 134, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-toggle {
    width: 100%;
    background: var(--strawberry);
    color: var(--icing);
    border: none;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--text-xs);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--timing-standard) var(--easing);
}

.pricing-toggle:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
}

.pricing-toggle i {
    transition: transform var(--timing-standard) var(--easing);
}

.pricing-toggle.active i {
    transform: rotate(180deg);
}

.pricing-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--timing-entrance) var(--easing);
    visibility: hidden;
}

.pricing-content.active {
    padding: var(--space-4);
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-highlight);
}

.pricing-grid {
    display: grid;
    gap: var(--space-3);
}

.pricing-row {
    background: var(--icing);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(90, 61, 52, 0.08);
    transition: all var(--timing-standard) var(--easing);
    border-left: 3px solid transparent;
}

.pricing-row:hover {
    transform: translateX(4px);
    border-left-color: var(--cocoa);
    box-shadow: 0 4px 12px rgba(90, 61, 52, 0.12);
}

.pricing-size {
    font-weight: 600;
    color: var(--cocoa);
    font-size: var(--text-xs);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.pricing-size::before {
    content: '🎂';
    font-size: 0.9rem;
}

.pricing-price {
    font-weight: 700;
    color: var(--strawberry);
    font-size: var(--text-sm);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    position: relative;
    background: rgba(233, 133, 134, 0.1);
}

.pricing-price::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cocoa);
    opacity: 0.05;
    border-radius: var(--radius-sm);
    z-index: -1;
}

.pricing p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--cocoa);
}

.custom-order {
    text-align: center;
    background: linear-gradient(135deg, #ff6b9d, #ff8e8e);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
}

/* Order Form Section */
.order-section {
    padding: 80px 20px;
    background: white;
}

@media screen and (max-width: 768px) {
    .order-section {
        padding: 60px 15px;
    }
    
    .order-section h2 {
        margin-bottom: 1.5rem;
    }
}

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

.calendar-widget {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header button {
    background: #ff6b9d;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}
.calendar-header button:hover {
    background: #ff5a8a;
}

/* Order form layout */
.order-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

/* Remove calendar container */
.calendar-container {
    display: none;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.calendar-day:hover {
    background: #ff6b9d;
    color: white;
}

.calendar-day.available {
    background: #e8f5e8;
    color: #2d5a2d;
}

.calendar-day.booked {
    background: #ffe8e8;
    color: #8b2635;
}

.calendar-day.selected {
    background: #ff6b9d;
    color: white;
}

.order-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-chocolate);
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--cocoa);
    transition: border-color var(--timing-standard) var(--easing);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--honey);
    box-shadow: 0 0 0 2px rgba(244, 184, 96, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffeef4, #fff5f8);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
}

/* Social media container to keep items together */
.social-media-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin: 0.5rem 0;
}

/* Social media items should be narrower and stay together */
.contact-item.social-media {
    min-width: 160px;
    flex: 0 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 1.2rem 1.8rem;
}

/* Specific styling for social media icons */
.contact-item.social-media i.fab.fa-instagram {
    color: #E1306C;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contact-item.social-media i.fab.fa-facebook-f {
    color: #1877F2;
}

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

.contact-item i {
    font-size: 1.8rem;
    color: #ff6b9d;
    margin-bottom: 0;
    min-width: 30px;
}

.contact-item h3 {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b9d;
}

/* Mobile Action Buttons */
.mobile-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    display: none; /* Hidden by default, shown on mobile */
}

.mobile-action-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: transform var(--timing-standard) var(--easing);
}

.mobile-action-btn i {
    font-size: 1.7rem;
    margin-bottom: 3px;
}

.mobile-action-btn span {
    font-size: 0.7rem;
    font-weight: 500;
}

.mobile-action-btn:hover,
.mobile-action-btn:focus {
    transform: scale(1.1);
}

.call-btn {
    background-color: var(--honey);
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
}

.facebook-btn {
    background-color: #1877F2; /* Facebook blue */
}

/* Show mobile actions only on smaller screens */
@media screen and (max-width: 768px) {
    .mobile-actions {
        display: flex;
    }
}

/* Footer */
.footer {
    background: #2c1810;
    color: white;
    text-align: center;
    padding: 2rem 20px;
}

.footer i {
    color: #ff6b9d;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    /* About section mobile optimization */
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-text {
        flex: 1;
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 3rem;
    }
    
    .experience-badge {
        bottom: -15px;
        right: 0;
    }
    
    /* Mobile order form and calendar optimization */
    .order-form {
        padding: 1rem;
        border-radius: var(--radius-sm);
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .calendar-container {
        gap: 5px;
    }
    
    .calendar-day {
        font-size: 0.8rem;
        height: 35px;
    }
    
    .calendar-header {
        margin-bottom: 1rem;
    }
    
    .calendar-header h3 {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .form-section h4 {
        font-size: 1rem;
    }
    
    .form-section.mobile-optimized {
        background: rgba(255, 246, 238, 0.7);
        border-left: 3px solid var(--strawberry);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-section.mobile-optimized:focus-within {
        background: var(--cream);
        border-left-color: var(--honey);
        box-shadow: var(--shadow-card);
    }
    
    /* Better spacing for mobile form elements */
    .form-section {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .form-section h4 {
        margin-bottom: 1.5rem;
    }
    
    /* Sticky order button for mobile */
    .order-btn {
        position: relative;
        z-index: 10;
    }
    
    /* Larger form inputs for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents iOS zoom */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none; /* Removes default styling on iOS */
        -moz-appearance: none;
        appearance: none;
        border: 1px solid #ddd;
    }
    
    /* Fix select dropdowns on mobile */
    .form-group select {
        background-image: linear-gradient(45deg, transparent 50%, var(--cocoa) 50%),
                          linear-gradient(135deg, var(--cocoa) 50%, transparent 50%);
        background-position: calc(100% - 20px) calc(1em + 2px),
                             calc(100% - 15px) calc(1em + 2px);
        background-size: 5px 5px,
                        5px 5px;
        background-repeat: no-repeat;
    }
    
    /* Larger buttons for touch targets */
    .btn {
        padding: var(--space-4) var(--space-6);
        min-height: 48px; /* Minimum touch target size */
    }
    
    /* Quick scroll to order button */
    .quick-order {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--strawberry);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-hover);
        z-index: 999;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(233, 133, 134, 0.7);
        }
        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 10px rgba(233, 133, 134, 0);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(233, 133, 134, 0);
        }
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cake-placeholder {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .calendar-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .form-section {
        padding: 1rem;
    }

    .form-note {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cake-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .calendar-widget,
    .order-form {
        padding: 1.5rem;
    }
}

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

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

.menu-item,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Order button styles */
.order-btn {
    margin-top: var(--space-4);
    width: 100%;
    font-weight: 600;
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all var(--timing-standard) var(--easing);
}

.order-btn i {
    font-size: 0.8rem;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Enhanced form styles */
.form-section {
    transition: all var(--timing-standard) var(--easing);

    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.form-section h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.order-info {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ff6b9d;
}

.order-info p {
    margin: 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-display {
    background: linear-gradient(135deg, #ff6b9d, #ff8e8e);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.4;
}

/* Success message styles */
.success-message {
    background: rgba(244, 184, 96, 0.15);
    color: var(--dark-chocolate);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border-left: 4px solid var(--honey);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-card);
}

.error-message {
    background: rgba(233, 133, 134, 0.15);
    color: var(--dark-chocolate);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border-left: 4px solid var(--strawberry);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-card);
}

/* Email buttons styles */
.email-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: center;
}

.email-buttons button {
    min-width: 250px;
    transition: all var(--timing-standard) var(--easing);
}

.email-buttons button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.email-buttons button i {
    margin-right: 0.5rem;
}

/* Order confirmation styles */
.confirmation-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--cream);
}

.order-summary {
    background: var(--cream);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.order-summary h4 {
    color: var(--strawberry);
    margin-bottom: var(--space-3);
    text-align: center;
    font-family: 'Lora', serif;
}

.order-summary p {
    margin-bottom: var(--space-2);
    font-family: 'Montserrat', sans-serif;
}

.alternative-instructions {
    margin-top: var(--space-4);
    padding: var(--space-4);
    border-top: 1px dashed var(--honey);
}

.email-note {
    margin-bottom: var(--space-3);
    color: var(--cocoa);
}

.alternative-instructions ol {
    padding-left: var(--space-6);
}

.alternative-instructions li {
    margin-bottom: var(--space-2);
}

.alternative-instructions a {
    color: var(--strawberry);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--timing-standard) var(--easing);
}

.alternative-instructions a:hover {
    color: var(--honey);
    text-decoration: underline;
}

/* Order modal styles */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.order-modal.active .order-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #ff6b9d;
}
