/* Page-specific CSS for site/locations/downtown-atlanta.html. .tag and
   .menu-card were staged during Task 6 (see notes on each below). The
   remaining rules were added during Task 11 to carry the rest of the
   page's inline <style> block: the partial .hero/.hero__headline/
   .hero__sub overrides (recorded in docs/intentional-differences.md),
   and the details/neighborhood/menu-section/catering-callout sections
   and their responsive breakpoints, none of which exist in
   components.css. Copied verbatim from
   site/locations/downtown-atlanta.html. */

body {
    font-size: 1.05rem;
}

/* ===== Hero (partial override; see docs/intentional-differences.md) ===== */
.hero {
    min-height: 50vh;
    max-height: 600px;
}

/* Was an opaque var(--char) fill (no photo existed for this slot yet).
   Task: wire in the real Downtown storefront photo (see downtown-atlanta.njk's
   new .hero__image), so this becomes a translucent scrim over that photo
   instead of an opaque background. Documented in
   docs/intentional-differences.md. */
.hero__bg {
    position: absolute;
    inset: 0;
    background: rgba(16, 25, 33, 0.55);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(125, 39, 45, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 164, 13, 0.08) 0%, transparent 50%);
}

.hero__headline {
    font-size: 3.5rem;
}

.hero__sub {
    font-size: 1.15rem;
    max-width: 560px;
}

/* ===== Location Details ===== */
.details {
    padding: 100px 3rem;
}

.details__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.details__info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.details__row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.details__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--turmeric);
}

.details__value {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.details__value a {
    color: var(--chipotle);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.details__value a:hover {
    opacity: 0.7;
}

.details__ctas {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.details__map {
    width: 100%;
    height: 360px;
    background: var(--mist);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 25, 33, 0.06);
}

.details__map-placeholder {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* ===== Neighborhood ===== */
.neighborhood {
    background: var(--cream);
    padding: 100px 3rem;
}

.neighborhood__inner {
    max-width: 900px;
    margin: 0 auto;
}

.neighborhood__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.neighborhood__headline {
    font-family: Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--char);
}

.neighborhood__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.neighborhood__item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(16, 25, 33, 0.06);
}

.neighborhood__item-name {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--char);
    margin-bottom: 0.3rem;
}

.neighborhood__item-detail {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== Menu Preview ===== */
.menu-section {
    padding: 120px 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-section__headline {
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--char);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* .tag: differs from site/index.html and site/menu.html's .tag
   (font-size 0.68rem here vs 0.65rem there). Per the task-6 brief's
   escape hatch, not promoted to components.css; kept page-specific.
   Copied verbatim from site/locations/downtown-atlanta.html. */
.tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    background: var(--mist);
    color: var(--text-secondary);
}

/* .menu-card: identical to site/index.html's version except
   .menu-card__name (1.2rem here vs 1.15rem there) and .menu-card__desc
   (0.92rem here vs 0.85rem there). Bodies differ, so kept page-specific
   per the same escape hatch. Copied verbatim from
   site/locations/downtown-atlanta.html. */
.menu-card {
    text-align: center;
}

.menu-card__image-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    aspect-ratio: 1 / 1;
    background: var(--mist);
}

.menu-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-card__image-wrap img {
    transform: scale(1.04);
}

.menu-card__name {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
    color: var(--char);
}

.menu-card__desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.menu-card__tags {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-section__cta {
    text-align: center;
    margin-top: 3.5rem;
}

.link-arrow {
    font-size: 1rem;
    font-weight: 500;
    color: var(--turmeric);
    transition: opacity 0.2s ease;
}

.link-arrow:hover {
    opacity: 0.75;
}

/* ===== Catering Callout ===== */
.catering-callout {
    background: var(--char);
    padding: 100px 3rem;
    text-align: center;
}

.catering-callout__inner {
    max-width: 680px;
    margin: 0 auto;
}

.catering-callout__headline {
    font-family: Georgia, serif;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.catering-callout__body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* ===== Responsive - Location Page ===== */
@media (max-width: 1024px) {
    .hero__headline {
        font-size: 2.8rem;
    }

    .neighborhood__headline,
    .menu-section__headline,
    .catering-callout__headline {
        font-size: 2.2rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .neighborhood__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }

    .hero__content {
        padding: 0 1.5rem;
        padding-top: 72px;
    }

    .hero__headline {
        font-size: 2.2rem;
    }

    .hero__sub {
        font-size: 1rem;
    }

    .details {
        padding: 80px 1.5rem;
    }

    .details__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .neighborhood {
        padding: 80px 1.5rem;
    }

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

    .menu-section {
        padding: 80px 1.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .catering-callout {
        padding: 80px 1.5rem;
    }

    .neighborhood__headline,
    .menu-section__headline,
    .catering-callout__headline {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 1.85rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .details__ctas {
        flex-direction: column;
    }

    .details__ctas .btn {
        text-align: center;
    }

    .neighborhood__headline,
    .menu-section__headline,
    .catering-callout__headline {
        font-size: 1.8rem;
    }
}
