/* ========================================
   Bee Nice Cream — Brand Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --bee-cream: #F3E6C4;
    --bee-purple: #8764A6;
    --bee-magenta: #E6326F;
    --bee-teal: #24586D;
    --bee-charcoal: #1F1F1F;
    --bee-warm-white: #FDF8F0;
    --bee-amber: #FFA000;
    --bee-honey: #FFCA28;
    --bee-tag-nuts: #C75B39;
    --bee-tag-gluten-free: #9B6BB0;
    --bee-tag-dairy-free: #E8C96A;
    --bee-tag-vegan: #6B9E78;
    --bee-tag-seasonal: #6BA3A8;
    --bee-text-secondary: #555555;
    --bee-text-muted: #777777;
}

/* --- Base --- */
html, body {
    background-color: var(--bee-charcoal);
    font-family: 'Inter', 'Helvetica', 'Arial', sans-serif;
    color: var(--bee-charcoal);
    margin: 0;
}

/* --- Site Wrapper (constrains content width on desktop) --- */
.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bee-cream);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 960px) {
    .site-wrapper {
        max-width: 100%;
        box-shadow: none;
    }
}

/* --- Remove gap between AppBar and content --- */
.mud-main-content {
    padding-top: 0 !important;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    text-align: center;
    padding: 4rem 1rem 3rem;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: clamp(150px, 18vw, 220px);
    height: auto;
    margin: 0 auto 0.75rem;
    display: block;
    border-radius: 50%;
}

.hero-title {
    font-family: 'Bodoni Moda', serif !important;
    font-style: normal;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    border-radius: 24px !important;
    text-transform: none !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.5rem !important;
}

.hero-btn-outline {
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.45) !important;
}

.hero-btn-outline:hover {
    background-color: #fff !important;
    color: var(--bee-charcoal) !important;
    border-color: #fff !important;
}

/* --- Section Headings --- */
.section-heading {
    font-weight: 700;
    text-align: center;
}

/* --- Flavor Card --- */
.flavor-card {
    background-color: var(--bee-warm-white) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* --- Flavor Image --- */
.flavor-image-wrapper {
    position: relative;
}

.flavor-image {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    width: 100%;
    display: block;
}

.flavor-tags {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}

.flavor-card-title {
    font-weight: 300 !important;
    color: var(--bee-purple) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.flavor-tags .mud-chip {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* --- Signature Creations Card --- */
.signature-card {
    background-color: var(--bee-warm-white) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.signature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* --- Honeycomb Divider --- */
.honeycomb-divider {
    text-align: center;
    padding: 2rem 0;
    opacity: 0.35;
}

.honeycomb-divider svg {
    width: 120px;
    height: auto;
}

.honeycomb-divider polygon {
    stroke: var(--bee-teal);
}

/* --- Navbar Brand Text --- */
.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--bee-cream);
    text-decoration: none;
    cursor: pointer;
}

.brand-text:hover {
    color: var(--bee-warm-white);
}

/* --- MudBlazor Typography Overrides --- */
.mud-typography-h1,
.mud-typography-h2,
.mud-typography-h3,
.mud-typography-h5,
.mud-typography-h6 {
    font-family: 'Montserrat', sans-serif;
}

.mud-typography-h4 {
    font-family: 'Dancing Script', cursive;
}

/* --- Responsive Visibility --- */
@media (max-width: 959.98px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 960px) {
    .mobile-only {
        display: none !important;
    }
}

/* --- Utility --- */
.text-center {
    text-align: center;
}

.full-menu-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* --- Experience Pillar Cards --- */
.experience-card {
    background-color: var(--bee-warm-white) !important;
    border-radius: 12px !important;
    padding: 1rem 0.5rem;
    height: 100%;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--bee-purple);
    color: var(--bee-cream);
    border-top: none;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: 3rem;
}

.site-footer a {
    text-decoration: none;
    color: var(--bee-cream);
}

.site-footer a:hover {
    color: var(--bee-warm-white) !important;
}
