:root {
    --orange: #FF5E00;
    --orange-deep: #D93800;
    --green: #1A7A38;
    --green-bright: #218A43;
    --yellow: #FFCA00;
    --blue: #1B75BC;
    --black: #111111;
    --cream: #FFF9F2;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: #333;
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}
.nav__logo {
    height: 40px;
    width: auto;
}
.nav__links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav__links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.nav__links a:hover { color: var(--yellow); }
.nav__cta {
    background: var(--green-bright);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s;
    line-height: 1;
}
.nav__cta:hover { background: var(--green) !important; color: white !important; }

/* Mobile nav */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 20px;
        gap: 16px;
    }
    .nav__toggle { display: block; }
}

/* ── HERO ── */
.hero {
    background:
        linear-gradient(170deg, rgba(17,17,17,0.50) 0%, rgba(17,17,17,0.60) 40%, rgba(17,17,17,0.80) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 70px 20px 60px;
    }
}
.hero > * { position: relative; z-index: 1; }

.hero__logo {
    display: block;
    margin: 0 auto 28px auto;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
}
.hero__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ── COUNTRY MARKET PARALLAX ── */
.store-section {
    background:
        linear-gradient(rgba(17,17,17,0.62), rgba(17,17,17,0.70)),
        url('../images/store-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    padding: 80px 20px;
    color: var(--white);
    position: relative;
}
@media (max-width: 768px) {
    .store-section { background-attachment: scroll; padding: 56px 20px; }
}
.store-section__heading {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}
.store-section__text {
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.store-section .btn--yellow {
    font-size: 1.1rem;
    padding: 14px 36px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn--green { background: var(--green-bright); color: var(--white); }
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--white { background: var(--white); color: var(--black); }

/* ── SECTIONS ── */
.section {
    padding: 64px 20px;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--black); color: var(--white); }
.section__inner {
    max-width: 1080px;
    margin: 0 auto;
}
.section__heading {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--black);
}
.section--dark .section__heading { color: var(--white); }
.section__subheading {
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 36px;
}
.section--dark .section__subheading { color: var(--yellow); }

/* ── INFO CARDS ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: 2px solid transparent;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--orange);
}
.card__icon {
    font-size: 3rem;
    margin-bottom: 14px;
    display: block;
}
.card__title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}
.card__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* ── HOURS + MAP SIDE-BY-SIDE ── */
.side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
@media (max-width: 768px) {
    .side-by-side { grid-template-columns: 1fr; }
}

.hours-box {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.hours-box__header {
    background: var(--black);
    color: var(--white);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 20px;
    text-align: center;
}
.hours-box table {
    width: 100%;
    border-collapse: collapse;
}
.hours-box td {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}
.hours-box td:last-child { text-align: right; font-weight: 600; }
.hours-closed { color: #D93800; }
.hours-today {
    background: #FFF3E0;
    border-left: 3px solid var(--orange);
}

.map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 3px solid var(--orange);
}
#dasher-map { height: 340px; width: 100%; }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--black), #1a1a1a);
    color: var(--white);
    text-align: center;
    padding: 52px 20px;
}
.cta-banner__title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-banner .btn--green {
    background: var(--green-bright);
    color: var(--white);
    font-size: 1.2rem;
    padding: 16px 40px;
}

/* ── FOOTER ── */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 28px 20px;
    font-size: 0.9rem;
}
.footer__logo {
    height: 36px;
    margin-bottom: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .hero { padding: 48px 16px 40px; background-attachment: scroll; }
    .hero__logo { max-width: 220px; }
    .section { padding: 44px 16px; }
    .cards { grid-template-columns: 1fr; }
    .btn { padding: 12px 24px; font-size: 1rem; }
}
