/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 20px;
    background-color: var(--bg);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-logo {
    width: min(560px, 100%);
    margin: 0 auto;
}

.hero-tagline {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    padding: 20px;
    text-align: center;
    z-index: 3;
}

.hero-tagline p {
    margin: 0;
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
}

.promo-divider {
    background: var(--primary);
    padding: 16px 20px;
    text-align: center;
}

.promo-divider p {
    margin: 0;
    color: var(--white);
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
}

.hero-description-section {
    padding: 40px 0 0;
}

.hero-description-box {
    background: var(--bg-lighter);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-description-logo {
    height: 76px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 20px;
}

.hero-description-divider {
    width: 60px;
    height: 2px;
    background: var(--white);
    margin-bottom: 30px;
}

.hero-description-box p {
    margin: 0 0 1.5rem;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 100%;
}

.hero-description-box p:last-child {
    margin-bottom: 0;
}

.hero-description-note {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
}

/* Section Page Hero */
.section-hero {
    position: relative;
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 20px 60px;
    background-color: var(--bg);
    background-image:
        linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-hero-inner {
    position: relative;
    z-index: 1;
}

.section-hero-icon {
    width: auto;
    height: min(120px, 25vw);
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Section Page Content */
.section-content {
    background-color: var(--bg);
    padding: 60px 0 40px;
}

.section-content-box {
    background: var(--bg-lighter);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-content-box > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.section-content-box h1,
.section-content-box h2,
.section-content-box h3 {
    padding-top: 8px;
}

.section-content-box p {
    margin: 0 0 1.5rem;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 100%;
}

.section-content-box p:last-child {
    margin-bottom: 0;
}

.page-content {
    padding: 40px 0;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 900px;
}

/* Post Preview */
.post-preview {
    margin-bottom: 40px;
    padding: 24px;
    background: var(--bg-lighter);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.post-preview h2 {
    margin-bottom: 12px;
}

.post-preview a {
    color: var(--accent);
}

.post-preview a:hover {
    color: var(--white);
}

.entry-summary {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Play Page Styles */
.play-page-image {
    text-align: center;
    margin: 40px 0;
}

.play-page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.play-description-box {
    background: var(--bg-lighter);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.play-description-box p {
    margin: 0;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
}

.play-search-box {
    margin: 40px 0;
}

.play-search-box h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

/* Schedule Alert */
.schedule-alert {
    background: var(--primary);
    padding: 24px 0;
}

.schedule-alert-box {
    background: linear-gradient(var(--bg-lighter), var(--bg-lighter)), var(--bg);
    border-radius: 24px;
    padding: 5px 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.schedule-alert-box p {
    margin: 0;
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 700;
}

.schedule-alert-box p + p {
    margin-top: 12px;
}

/* Games Filter Bar */
.games-filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.games-filter-input,
.games-filter-select {
    background: var(--surface);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    padding: 8px 14px;
    outline: none;
    transition: border-color 200ms ease;
}

.games-filter-input {
    flex: 1;
    min-width: 160px;
}

.games-filter-select {
    cursor: pointer;
}

.games-filter-input:focus,
.games-filter-select:focus {
    border-color: var(--primary);
}

.games-filter-select option {
    background: var(--surface);
}

@media (max-width: 600px) {
    .games-filter-bar {
        flex-direction: column;
    }
    .games-filter-input,
    .games-filter-select {
        width: 100%;
    }
}

/* Archive / Single Hero (compact) */
.archive-hero {
    padding: 40px 0;
    text-align: center;
    background: var(--bg);
}

.archive-hero-title {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* Single Post Box */
.single-post-box {
    background: var(--bg-lighter);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.single-post-content {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.single-post-content p {
    margin: 0 0 1.4rem;
}

.single-post-content p:last-child {
    margin-bottom: 0;
}

/* Upcoming Schedule Section */
.upcoming-schedule-box {
    background: var(--bg-lighter);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.upcoming-schedule-heading {
    margin: 0 0 28px;
}

.upcoming-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.schedule-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border-medium);
    border-radius: 14px;
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 200ms ease, background 200ms ease;
}

.schedule-card:hover {
    border-color: var(--primary);
    background: var(--panel);
}

.schedule-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.schedule-card-date {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.schedule-card-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    flex: 1;
}

.schedule-card-type {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2px 10px;
    white-space: nowrap;
}

.schedule-card-desc {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.schedule-card-desc p {
    margin: 0;
}

.schedule-empty {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
}

.all-schedule-link {
    margin: 24px 0 0;
    text-align: center;
}

.all-schedule-link a {
    color: var(--accent);
    font-size: 0.95rem;
    text-decoration: underline;
    transition: color 200ms ease;
}

.all-schedule-link a:hover {
    color: var(--white);
}

.play-search-placeholder {
    background: var(--bg-lighter);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.play-search-placeholder p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

/* Drink Page Styles */
.drink-page-image {
    text-align: center;
    margin: 40px 0;
}

.drink-page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.drink-description-box {
    background: var(--bg-lighter);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.drink-description-box p {
    margin: 0;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
}

.on-tap-section {
    margin: 40px 0;
}

.on-tap-section h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.on-tap-placeholder {
    background: var(--bg-lighter);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.on-tap-placeholder p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

/* Untappd On-Tap Box */
.untappd-box {
    background: var(--bg-lighter);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.untappd-box-heading {
    margin: 0 0 28px;
    text-align: center;
}

.untappd-beer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.untappd-beer-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border-medium);
    border-radius: 14px;
    padding: 16px 20px;
}

.untappd-beer-label {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.untappd-beer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.untappd-beer-name {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

.untappd-beer-brewery {
    color: var(--text);
    font-size: 0.9rem;
}

.untappd-beer-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.untappd-beer-style {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2px 10px;
}

.untappd-beer-abv {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 840px) {
    .untappd-box {
        padding: 24px;
    }
}

/* Events Page Styles */
.events-page-image {
    text-align: center;
    margin: 40px 0;
}

.events-page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.events-description-box {
    background: var(--bg-lighter);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.events-description-box p {
    margin: 0;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
}

.events-description-box a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 220ms ease;
}

.events-description-box a:hover {
    color: var(--white);
}

.events-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.events-feature {
    background: var(--bg-lighter);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
}

.events-feature h3 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: var(--white);
}

.events-feature p {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 840px) {
    .play-description-box {
        padding: 24px;
    }

    .play-search-placeholder {
        padding: 40px 24px;
    }

    .drink-description-box {
        padding: 24px;
    }

    .on-tap-placeholder {
        padding: 40px 24px;
    }

    .events-description-box {
        padding: 24px;
    }

    .events-features {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    .events-feature {
        padding: 24px;
    }
}
