/* CSS Variables */
:root {
    --bg-gradient-top: #3b2f26; 
    --bg-gradient-bottom: #141110; 
    --accent-purple: #b378ac; 
    --accent-purple-glow: rgba(179, 120, 172, 0.15);
    --text-primary: #fdfbf7;
    --text-muted: #c2c2c2;
    --font-heading: Georgia, 'Times New Roman', Times, serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

body {
    background: linear-gradient(135deg, var(--bg-gradient-top) 0%, var(--bg-gradient-bottom) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}

/* Ambient Purple Glow in the background */
.purple-glow-bg {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 0;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(30, 25, 23, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 120, 172, 0.1); 
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.accent-text {
    color: var(--accent-purple);
}

/* Header */
.main-header {
    text-align: center;
    padding: 5rem 0 3rem;
    position: relative;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
}

.brand-logo {
    display: block;
    width: min(300px, 68vw);
    height: auto;
    margin: 0 auto 1.25rem;
    filter: brightness(1.18) contrast(1.12) saturate(1.06);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-purple);
    letter-spacing: 1px;
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.4rem;
    margin-top: 1.5rem;
}

.site-nav a {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent-purple);
    text-shadow: 0 0 8px rgba(179, 120, 172, 0.4);
}

/* About / Chef */
.about-section {
    display: flex;
    justify-content: center;
}

.chef-profile {
    text-align: center;
    max-width: 700px;
    padding: 3rem;
    transition: border-color 0.3s ease;
}

.chef-profile:hover {
    border-color: rgba(179, 120, 172, 0.3);
}

.chef-profile h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.chef-profile h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.chef-profile p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Gallery Grid */
.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

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

.product-card {
    overflow: hidden;
    transition: box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Image Styling */
.image-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-bottom: none;
    background-color: transparent;
}

.product-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: none;
}

.let-them-eat-cake-image {
    object-position: center 34%;
}

.product-info {
    padding: 1.8rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Order Info */
.order-info-section {
    text-align: center;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 3rem;
    text-align: left;
}

.order-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.order-info-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem;
}

.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer */
.main-footer {
    margin-top: auto;
}

.glass-panel-footer {
    background: rgba(20, 17, 16, 0.8);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(179, 120, 172, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
    padding: 3rem 0;
}

.footer-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.hover-purple {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hover-purple:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 8px rgba(179, 120, 172, 0.4);
}

.cta-button-group,
.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(179, 120, 172, 0.95), rgba(138, 80, 146, 0.95));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 12px 28px rgba(179, 120, 172, 0.22);
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(179, 120, 172, 0.35);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(179, 120, 172, 0.25);
}

@media (max-width: 768px) {
    .cta-button-group,
    .contact-actions {
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
    }
}

.footer-band {
    height: 8px; 
    background: linear-gradient(90deg, #1f1a18, var(--accent-purple), #1f1a18);
    width: 100%;
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }
    .chef-profile {
        padding: 2rem 1.5rem;
    }
    .faq-grid {
        padding: 2rem 1.5rem;
    }
}

/* Contact form styles */
.contact-form {
    width: 100%;
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
}
.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form input[type="tel"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    color: var(--text-primary);
    font-size: 1rem;
    transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: rgba(179,120,172,0.9);
    box-shadow: 0 6px 24px rgba(179,120,172,0.12);
    transform: translateY(-1px);
}
.contact-form .form-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.6rem;
}
.contact-form .form-actions .cta-button {
    padding: 0.85rem 1.4rem;
}
.contact-form .form-actions .cta-button-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
    .contact-form .form-grid { grid-template-columns: 1fr; }
    .contact-form .form-actions { flex-direction: column; align-items: stretch; }
    .contact-form .form-actions .cta-button { width: 100%; }
}
/* Practical production cleanup */
.service-areas {
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.service-areas-inner {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid rgba(179, 120, 172, 0.2);
    padding-top: 3rem;
}

.service-areas h4 {
    font-family: var(--font-heading);
    color: var(--accent-purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-areas p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-section {
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-panel,
.confirmation-panel {
    padding: 2rem;
}

.hover-purple:focus-visible,
.site-nav a:focus-visible,
.social-info a:focus-visible,
.footer-content a:focus-visible {
    outline: 2px solid var(--accent-purple);
    outline-offset: 4px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
