/* =============================================
   Josef Heinrich – Bar & Kneipe
   Modern-Berliner Charme, 2026 Edition
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Palette – clean white, deep black, Berliner Rot */
    --wood-dark:    #0a0a0a;
    --wood-medium:  #141414;
    --wood-light:   #222222;
    --brass:        #AF0915;
    --brass-light:  #d4202e;
    --brass-glow:   rgba(175, 9, 21, 0.25);
    --cream:        #ffffff;
    --cream-dark:   #f5f5f5;
    --parchment:    #fafafa;
    --text-dark:    #111111;
    --text-medium:  #555555;
    --text-muted:   #999999;
    --text-light:   #f5f5f5;
    --red-accent:   #8b2020;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body:    'Source Sans 3', 'Segoe UI', Arial, sans-serif;
    --transition:   0.3s cubic-bezier(.4,0,.2,1);
    --radius:       10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--brass);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--brass-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================================
   HEADER – clean, minimal: Logo left, Burger right (always)
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 28px;
    box-shadow: 0 1px 30px rgba(0,0,0,0.15);
}

.header-logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}
.header-logo-img {
    height: 40px;
    width: auto;
    transition: opacity var(--transition);
}
.header-logo:hover .header-logo-img { opacity: 0.8; }


/* ---------- Burger Button ---------- */
.burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ---------- Overlay Menu ---------- */
.overlay-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: safe center;
    gap: 40px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 90px 20px 40px;
    box-sizing: border-box;
}

.overlay-menu.open {
    opacity: 1;
    pointer-events: all;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.overlay-link {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    transition: color var(--transition);
}

.overlay-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brass);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.overlay-link:hover {
    color: var(--brass);
}
.overlay-link:hover::after {
    width: 100%;
}

.overlay-social {
    display: flex;
    gap: 20px;
}

.overlay-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.overlay-social a:hover {
    background: var(--brass);
    color: #fff;
}

.overlay-link--small {
    font-size: clamp(0.85rem, 2vw, 1.1rem) !important;
    letter-spacing: 2px !important;
    opacity: 0.7;
    margin-top: -8px;
}
.overlay-link--small i {
    margin-right: 6px;
}


/* ============================================================
   HERO – fullscreen with Öffnungszeiten Störer
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        url('images/IMG_1856.jpeg') center/cover no-repeat;
    background-color: var(--wood-dark);
    color: var(--text-light);
    overflow: visible;
    margin-bottom: 0;
}

/* Subtle texture overlay */
.hero-texture {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.75) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-pre {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--brass-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-logo {
    max-width: clamp(220px, 40vw, 420px);
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero-rule {
    width: 60px;
    height: 3px;
    background: var(--brass);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--brass-light);
    opacity: 0.9;
}

.hero-age-badge {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 18px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
}


/* ---------- Öffnungszeiten-Störer / Badge (flow-based) ---------- */
.hours-badge-wrapper {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
    padding: 0 48px;
    margin-top: -140px;   /* overlap into hero */
    margin-bottom: 0;
    pointer-events: none; /* let hero clicks pass through */
}

.hours-badge {
    position: relative;
    pointer-events: all;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(175,9,21,0.5);
    border-radius: 14px;
    padding: 44px 50px;
    min-width: 420px;
    max-width: 520px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hours-badge-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brass);
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(175,9,21,0.3);
}

.hours-badge-title i {
    margin-right: 10px;
}

.hours-badge-list {
    list-style: none;
}

.hours-badge-list li {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    padding: 11px 0;
    font-size: 1.15rem;
    color: #e0e0e0;
    border-bottom: 1px dotted rgba(255,255,255,0.08);
}

.hours-badge-list li:last-child {
    border-bottom: none;
}

.hours-badge-list li span:last-child {
    color: var(--brass-light);
    font-weight: 600;
    white-space: nowrap;
}

/* Badge divider & next event */
.badge-divider {
    height: 1px;
    background: rgba(175,9,21,0.3);
    margin: 22px 0;
}

.badge-next-event {
    text-align: center;
}

.badge-event-label {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brass);
    margin-bottom: 14px;
}

.badge-event-label i {
    margin-right: 8px;
}

.badge-event-loading {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.95rem;
}

.badge-event-none {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.95rem;
    margin: 0;
}

.badge-event-match {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.badge-teams {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-team-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.badge-team-name {
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 600;
}

.badge-vs {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 2px;
}

.badge-event-time {
    color: var(--brass-light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.badge-reserve-hint {
    font-size: 0.82rem;
    color: #ffffff;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Union Berlin highlight in badge */
.badge-event-label--union {
    color: #e5c100;
    font-size: 1.1rem;
    animation: unionPulse 2s ease-in-out infinite;
}

.badge-event-match--union {
    background: rgba(175, 9, 21, 0.15);
    border: 1px solid rgba(175, 9, 21, 0.4);
    border-radius: 6px;
    padding: 12px 14px;
}

@keyframes unionPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Union Berlin highlight in news cards */
.news-card--union {
    border-left: 4px solid #e5c100;
    background: linear-gradient(135deg, #fffde6 0%, #fff 40%);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(229, 193, 0, 0.2);
}

.news-card--union .news-date {
    background: var(--brass);
}

.union-tag {
    display: inline-block;
    background: var(--brass);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Germany national team highlight in news cards */
.news-card--germany {
    border-left: 4px solid #000;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 40%);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.news-card--germany .news-date {
    background: #000;
}

.germany-tag {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Germany highlight in badge */
.badge-event-label--germany {
    color: #fff;
    font-size: 1.1rem;
    animation: unionPulse 2s ease-in-out infinite;
}

.badge-event-match--germany {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px 14px;
}

/* Mobile Störer */
@media (max-width: 640px) {
    .hours-badge-wrapper {
        justify-content: center;
        padding: 0 16px;
        margin-top: -100px;
    }
    .hours-badge {
        min-width: 280px;
        max-width: 100%;
        padding: 28px 24px;
    }
    .hours-badge-title { font-size: 1rem; }
    .hours-badge-list li { font-size: 0.95rem; gap: 20px; padding: 8px 0; }
    .badge-event-label { font-size: 0.9rem; }
    .badge-team-name { font-size: 0.9rem; }
    .badge-team-logo { width: 22px; height: 22px; }
}


/* ============================================================
   SECTIONS – General
   ============================================================ */
.section {
    padding: 90px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-divider {
    width: 40px;
    height: 2px;
    background: var(--brass);
    margin: 0 auto 50px;
    border-radius: 2px;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
    background: var(--parchment);
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.about-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 24px;
    color: var(--text-medium);
}

.about-highlight {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--brass);
    line-height: 1.7;
}


/* ============================================================
   FEATURES
   ============================================================ */
.features {
    background: var(--cream-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--brass);
    margin-bottom: 18px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.6;
}

.features-hint {
    text-align: center;
    margin-top: 36px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sport feature card highlight */
.feature-card--sport {
    border-color: var(--brass);
    border-width: 2px;
    background: linear-gradient(145deg, #fff 0%, #fff5f5 100%);
}

/* ---------- Broadcast Logos (Sky Sport / DAZN) ---------- */
.broadcast-logos {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin: 14px 0 16px;
    flex-wrap: wrap;
}

.broadcast-logo {
    height: 42px;
    width: auto;
    border-radius: 5px;
    object-fit: contain;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.broadcast-logo:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Inline logos inside news intro text */
.broadcast-logo--inline {
    height: 28px;
    vertical-align: middle;
    margin: 0 4px;
    display: inline-block;
}

.news-intro-logos {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    vertical-align: middle;
}


/* ============================================================
   GETRÄNKEKARTE
   ============================================================ */
.drinks {
    background: var(--wood-dark);
    color: var(--text-light);
}

.drinks .section-title {
    color: var(--cream);
}

.drinks-btn-wrapper {
    display: flex;
    justify-content: center;
}

.drinks-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--brass);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
}

.drinks-btn:hover {
    background: var(--brass);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 9, 21, 0.35);
}

.drinks-btn i {
    font-size: 1.15rem;
}


/* ============================================================
   NEWS
   ============================================================ */
.news {
    background: var(--parchment);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.news-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--brass);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    padding: 8px;
    border-radius: 4px;
    background: var(--wood-dark);
    color: var(--cream);
}

.news-day {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.news-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    color: var(--brass-light);
}

.news-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.news-body p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Dynamic sport event styles */
.news-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.news-hint {
    text-align: center;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.news-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--brass);
    font-size: 1.1rem;
}

.news-loading i {
    margin-right: 8px;
}

.match-title {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.team-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.vs {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85em;
    margin: 0 2px;
}


/* ============================================================
   RUSTIC QUOTE
   ============================================================ */
.rustic-quote {
    background:
        linear-gradient(rgba(10,10,10,0.94), rgba(10,10,10,0.94)),
        url('images/quote-bg.jpg') center/cover no-repeat;
    background-color: var(--wood-medium);
    color: var(--text-light);
}

.quote-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.quote-block h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--brass);
}

.quote-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.9;
}

.quote-detail {
    margin-top: 20px;
    color: var(--cream-dark);
    font-size: 0.95rem;
}

/* CTA section – modern asymmetric style */
.cta-section {
    background: #ffffff;
    color: var(--text-dark);
    text-align: center;
    padding: 100px 0;
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 48px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    background: var(--parchment);
    position: relative;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--brass);
    border-radius: 2px;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-inner p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.cta-punchline {
    font-family: var(--font-heading);
    font-size: 1.25rem !important;
    color: var(--brass) !important;
    margin-top: 16px !important;
    font-weight: 600;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    background: var(--cream-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* ============================================================
   MAP
   ============================================================ */
.map-section {
    background: var(--parchment);
    padding-bottom: 0;
}

.map-wrapper {
    width: 100%;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    min-height: 350px;
}


/* ============================================================
   KONTAKT
   ============================================================ */
.contact {
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    text-align: center;
    padding: 28px 20px;
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--brass);
    margin-bottom: 14px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-dark);
    color: #fff;
    font-size: 1.15rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--brass);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--brass-glow);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--wood-dark);
    color: var(--text-light);
    padding: 64px 0 0;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brass);
    margin-bottom: 10px;
}

.footer-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--brass);
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--brass); }

.footer-hours p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}


/* WhatsApp accent in social links */
.social-link--whatsapp {
    background: #25D366 !important;
}
.social-link--whatsapp:hover {
    background: #1ebe5b !important;
}


/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--brass);
    transform: scale(1.15);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
    color: var(--brass);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    object-fit: contain;
    transition: opacity 0.25s ease;
}

@media (max-width: 640px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ============================================================
   PDF MODAL OVERLAY
   ============================================================ */
.pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.pdf-modal.active {
    opacity: 1;
    pointer-events: all;
}

.pdf-modal-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.2rem;
    color: #fff;
    background: rgba(0,0,0,0.6);
    border: none;
    cursor: pointer;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2001;
}

.pdf-modal-close:hover {
    background: rgba(0,0,0,0.85);
    transform: scale(1.15);
}

.pdf-modal-body {
    width: 90vw;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
}

.pdf-page {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

@media (max-width: 640px) {
    .pdf-modal-body {
        width: 96vw;
        max-height: 88vh;
        border-radius: 10px;
        padding: 4px;
    }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .section { padding: 64px 0; }

    .features-grid { grid-template-columns: 1fr; }



    .news-grid { grid-template-columns: 1fr; }

    .news-card {
        flex-direction: column;
        gap: 14px;
    }
    .news-date {
        flex-direction: row;
        gap: 8px;
        min-width: auto;
        width: fit-content;
    }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-overlay {
        background:
            radial-gradient(ellipse at 30% 50%, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%),
            linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.75) 100%);
    }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
