/* BigHeroLight Theme CSS - Light Color Scheme */
:root {
    --c1: #22c55e;
    --c2: #7c3aed;
    --bg-light: #faf8f5;
    --bg-cream: #f5f1eb;
    --bg-beige: #ebe5db;
    --text-dark: #2d2a26;
    --text-muted: #6b6560;
    --border-light: rgba(45, 42, 38, 0.1);
}

body.theme-bigherolight {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.95) 0%, transparent 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--c1);
}

.brand img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.site-nav {
    display: flex;
    gap: 24px;
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--c2);
}

/* Header Social Icons */
.header-socials {
    display: flex;
    gap: 12px;
}

.header-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-beige);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.header-social-icon:hover {
    background: var(--c2);
    color: white;
}

.header-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Hero - Full viewport with centered swiper background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero background swiper */
.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Light scrim overlay */
.hero-scrim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.45);
    z-index: 2;
    pointer-events: none;
}

/* Fallback when no images */
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-beige) 100%);
}

/* Swiper */
.bighero-swiper {
    width: 100%;
    height: 100%;
}

.bighero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
}

.bighero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bighero-swiper .swiper-pagination {
    bottom: 24px !important;
    z-index: 20;
}

.bighero-swiper .swiper-pagination-bullet {
    background: rgba(45, 42, 38, 0.3);
    opacity: 1;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.bighero-swiper .swiper-pagination-bullet-active {
    background: var(--c1);
}

/* Hero overlay content - centered over swiper */
.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 24px;
    max-width: 800px;
    pointer-events: none;
}

.hero-overlay * {
    pointer-events: auto;
}

.hero-overlay h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px;
    text-shadow: 0 2px 16px rgba(250, 248, 245, 0.8);
}

.hero-actions {
    margin-bottom: 48px;
}

.cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--c1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

/* Info cards - side by side under title */
.hero-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.overlay-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 24px 32px;
    min-width: 200px;
    text-align: left;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.overlay-card strong {
    display: block;
    color: var(--c2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.overlay-card p {
    margin: 0 0 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.overlay-card a {
    color: var(--text-dark);
    text-decoration: none;
}

.overlay-card a:hover {
    color: var(--c1);
}

.info-link {
    display: inline-block;
    margin-top: 4px;
    color: var(--c1) !important;
    font-weight: 500;
    font-size: 0.85rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

/* Email Button in overlay card */
.email-btn {
    display: inline-block;
    margin-top: 4px;
    color: var(--c1);
    font-weight: 500;
    font-size: 0.85rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

/* Sections */
.about,
.hours,
.map-section {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.about h2,
.hours h2,
.map-section h2 {
    font-size: 2rem;
    color: var(--c1);
    margin: 0 0 24px;
    text-align: center;
}

.about-content {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

.about-content p {
    margin: 0 0 1em;
}

/* Hours Grid */
.hours-grid {
    max-width: 500px;
    margin: 0 auto;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row strong {
    color: var(--text-dark);
}

.hours-row span {
    color: var(--text-muted);
}

.hours-row .closed {
    color: var(--c2);
    font-style: italic;
}

/* Map */
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#map {
    height: 350px;
    width: 100%;
}

.map-actions {
    text-align: center;
    margin-top: 24px;
}

.directions-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--c1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

/* Footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    padding: 24px 32px;
    background: var(--bg-beige);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--c1);
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 16px 20px;
    }

    .site-nav {
        display: none;
    }

    .header-socials {
        gap: 8px;
    }

    .hero-overlay {
        padding: 120px 16px 60px;
    }

    .hero-overlay h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .hero-cards {
        flex-direction: column;
        align-items: center;
    }

    .overlay-card {
        width: 100%;
        max-width: 300px;
    }

    .about,
    .hours,
    .map-section {
        padding: 48px 20px;
    }

    .site-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}