/* CSS Variables generated for theme: bakery */
:root {
    --primary-color: #fdfcf7;
    --secondary-color: #b45309;
    --text-color: #1c1917;
    --text-muted: #6b6661;
    --accent-hover: #d97706;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(180, 83, 9, 0.12);
    --transition-speed: 0.3s;
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    --hero-bg-url: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1200&q=80');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(15, 23, 42, 0.4);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo-accent {
    display: inline-block;
    animation: rotateSparkle 4s linear infinite;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 18px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.cta-button-nav {
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Hero Section with Ken Burns Drift */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hero-bg-url);
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: heroDrift 30s ease-in-out infinite alternate;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.btn {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    opacity: 0.95;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.award-pill {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 600;
    background: rgba(0,0,0,0.4);
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-section, .services-section, .contact-section {
    padding: 100px 0;
}

h2 {
    font-size: 2.3rem;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.hours-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 35px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
}

.hours-box p {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.hours-box p:last-child {
    margin-bottom: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.service-card p {
    line-height: 1.65;
    color: var(--text-muted);
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 45px 35px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.contact-phone {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.contact-phone:hover {
    opacity: 0.85;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes rotateSparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heroDrift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1.5%, -0.8%); }
}

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

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
}


            /* Warm theme overrides */
            body { background-color: #fdfcf7 !important; color: #1c1917 !important; }
            .navbar { background-color: #fffdec !important; border-bottom: 1px solid rgba(180, 83, 9, 0.15) !important; }
            .navbar a { color: #3c3024 !important; }
            .navbar a:hover { color: #b45309 !important; }
            .logo-accent { color: #b45309 !important; }
            .service-card { background-color: #ffffff !important; border: 1px solid rgba(180, 83, 9, 0.1) !important; }
            .hours-box { background-color: #fffdec !important; border: 1px solid rgba(180, 83, 9, 0.15) !important; color: #3c3024 !important; }
            .contact-card { background-color: #ffffff !important; border: 1px solid rgba(180, 83, 9, 0.1) !important; }
            .cta-button-nav { color: #ffffff !important; }
            footer { border-top: 1px solid rgba(180, 83, 9, 0.15) !important; color: #6b6661 !important; }
            .hero-bg-overlay { background: linear-gradient(135deg, rgba(60, 48, 36, 0.85) 0%, rgba(60, 48, 36, 0.5) 100%) !important; }
            h2 { color: #3c3024 !important; }
            .about-lead { color: #574c42 !important; }
            .service-card p { color: #574c42 !important; }
            .service-card h3 { color: #3c3024 !important; }
        
