/* 800A Bar & Cabaret - Minimal Stylesheet */

:root {
    --color-bg: #1a1616;
    --color-surface: #252020;
    --color-text: #f5f0f0;
    --color-text-muted: #a09090;
    --color-accent: #b83a5a;
    --color-accent-light: #d44a6a;
    --color-curtain: #8a2a45;
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --max-width: 800px;
    --spacing: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

/* Accessibility - Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing);
    background:
        linear-gradient(180deg,
            rgba(13, 10, 10, 0.85) 0%,
            rgba(26, 20, 21, 0.7) 50%,
            rgba(13, 10, 10, 0.85) 100%),
        url('stage-with-singer.avif');
    background-size: cover, cover;
    background-position: center, 60% top;
    border-bottom: 2px solid var(--color-accent);
    position: relative;
}

/* Hero logo */
.hero-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}


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

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-accent-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--color-text-muted);
    font-style: italic;
}

/* Social links in hero */
.social-hint {
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.social-links-hero {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links-hero a {
    color: var(--color-text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links-hero a:hover {
    color: var(--color-accent-light);
    transform: scale(1.1);
}

.social-links-hero svg {
    display: block;
}

.hero-cta {
    margin-top: 1.5rem;
}

.hero-credit {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    z-index: 2;
}

.hero-credit a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

.hero-credit a:hover {
    color: var(--color-text);
}

/* Secondary Hero (Events) */
.hero-secondary {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing);
    background:
        linear-gradient(180deg,
            rgba(13, 10, 10, 0.8) 0%,
            rgba(26, 20, 21, 0.6) 50%,
            rgba(13, 10, 10, 0.8) 100%),
        url('stage-with-lights.avif');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--color-accent);
}

.hero-secondary-content {
    max-width: var(--max-width);
}

.hero-secondary h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.hero-secondary p {
    margin-bottom: 1.5rem;
}

.hero-secondary .social-links {
    margin-top: 1.5rem;
    justify-content: center;
}

/* Sections */
.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing);
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-surface);
}

.section:last-child {
    border-bottom: none;
}

/* Section with image layout */
.section-with-image {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.section-text {
    flex: 1;
}

.section-image {
    flex-shrink: 0;
}

.section-image img {
    width: 220px;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    border: 1px solid var(--color-surface);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.section h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.section p {
    margin-bottom: 1rem;
}

.tdc-logo {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
    max-width: 200px;
    height: auto;
}

.section ul {
    list-style: none;
    margin-bottom: 1rem;
}

.section ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.section ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Opening Hours Table */
.hours-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-surface);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-text-muted);
}

.note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Buttons & Links */
a {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-text);
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.btn:hover {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    box-shadow: 0 0 12px rgba(184, 58, 90, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-light);
    box-shadow: 0 0 18px rgba(212, 74, 106, 0.4);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-links a:hover {
    color: var(--color-accent-light);
}

/* Address */
address {
    font-style: normal;
    margin-bottom: 1rem;
}

/* Map */
.map-container {
    margin: 1.5rem 0;
    border: 1px solid var(--color-surface);
}

.map-container iframe {
    display: block;
}

.transport {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Footer */
footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-nav {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--color-text-muted);
    margin: 0 1rem;
}

.footer-nav a:hover {
    color: var(--color-accent-light);
}

/* Legal Pages */
.legal-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing);
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent-light);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    :root {
        --spacing: 1.25rem;
    }

    .hero {
        min-height: 100dvh;
        padding-bottom: 3rem;
        background:
            linear-gradient(180deg,
                rgba(13, 10, 10, 0.85) 0%,
                rgba(26, 20, 21, 0.7) 50%,
                rgba(13, 10, 10, 0.85) 100%),
            url('stage-with-singer.avif');
        background-size: cover, cover;
        background-position: center, center;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-credit {
        bottom: 1.25rem;
    }

    .hero-secondary {
        min-height: 40vh;
    }

    .hero-secondary .social-links {
        flex-direction: row;
    }

    .section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .tdc-logo {
        float: none;
        display: block;
        margin: 1.5rem auto;
    }

    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .section-with-image {
        flex-direction: column;
    }

    .section-image img {
        max-width: 100%;
    }

    footer .footer-dot {
        display: none;
    }

    footer .footer-tech {
        display: block;
        margin-top: 0.25rem;
    }
}
