/* Reset and base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* ── Header / Nav Bar ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1b5e20;
    color: #fff;
    padding: 0 2rem;
}

.site-nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-book-now {
    background: #FFC107;
    color: #1b5e20;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s;
}

.nav-book-now:hover {
    background: #FFB300;
    transform: translateY(-1px);
}

/* ── Hero Section ── */
.hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-cta {
    display: inline-block;
    background: #fff;
    color: #1b5e20;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.85rem 2.5rem;
    border-radius: 6px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Section shared ── */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-inner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* ── Our Story Section ── */
.story {
    background: #f9f9f9;
}

.story p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 650px;
}

/* ── Location Section ── */
.location {
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.info-card-home {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-home h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

.info-card-home p {
    color: #555;
    line-height: 1.6;
}

.info-card-home a {
    color: #1b5e20;
    text-decoration: none;
}

.info-card-home a:hover {
    text-decoration: underline;
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #eee;
}

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

.hours-table td {
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.day-name {
    font-weight: 500;
    color: #333;
    width: 120px;
}

.day-hours {
    color: #555;
}

.closed-row {
    opacity: 0.6;
}

.closed-text {
    font-style: italic;
    color: #999;
}

/* ── Footer ── */
.site-footer {
    background: #1b5e20;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-contact {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-sep {
    margin: 0 0.5rem;
}

.footer-book-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    transition: background 0.2s, border-color 0.2s;
}

.footer-book-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.footer-copy {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-tagline {
        font-size: 1.75rem;
    }

    .section-inner {
        padding: 3rem 1.5rem;
    }

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

    #shop-map {
        height: 250px;
    }

    .site-nav {
        height: 56px;
    }

    .site-logo {
        font-size: 1.25rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
}
