:root {
    --gold: #C9A84C;
    --gold-light: #FFD060;
    --gold-glow: rgba(201,168,76,0.25);
    --dark: #0c0c0c;
    --dark-2: #141414;
    --dark-3: #1c1c1c;
    --white: #ffffff;
    --white-70: rgba(255,255,255,0.7);
    --white-40: rgba(255,255,255,0.4);
    --white-20: rgba(255,255,255,0.2);
    --white-10: rgba(255,255,255,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

ul { list-style: none; }
a { text-decoration: none; }
img { display: block; }

/* ── SR ONLY ── */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── PROMO BAR ── */
.promo-bar {
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.promo-bar a {
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.promo-bar a:hover { opacity: 0.85; }

/* ── SITE HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(12,12,12,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--white-10);
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.site-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.site-nav a {
    color: var(--white-70);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.site-nav a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    background: url('./assets/david-hermoso-standup-comedy-1.webp') center 30% / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12,12,12,0.25) 0%,
        rgba(12,12,12,0.55) 50%,
        rgba(12,12,12,0.92) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.hero__label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.hero__name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4.5rem, 14vw, 11rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 60px rgba(0,0,0,0.9);
    margin-bottom: 2rem;
}

.btn-gold {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--white-40);
    animation: bounce 2s infinite;
    transition: color 0.2s;
}
.hero__scroll:hover { color: var(--gold); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION SHARED ── */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0.8rem auto 0;
}

/* ── ABOUT ── */
.about {
    padding: 5rem 2rem;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    font-size: 1.05rem;
    color: var(--white-70);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* ── SOCIAL ── */
.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social__links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social__links a {
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.15s;
}
.social__links a:hover { opacity: 1; transform: translateY(-2px); }

.mail {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}
.mail:hover { opacity: 0.8; }

/* ── GALLERY ── */
.gallery {
    padding: 4rem 2rem;
    background: var(--dark-2);
}

.gallery__masonry {
    columns: 2;
    column-gap: 6px;
}

.gallery__masonry img {
    width: 100%;
    margin-bottom: 6px;
    break-inside: avoid;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
}
.gallery__masonry img:hover {
    opacity: 0.88;
    transform: scale(1.01);
}

.photo__credits {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--white-40);
}
.photo__credits a {
    color: var(--white-40);
    border-bottom: 1px solid var(--white-20);
    transition: color 0.2s;
}
.photo__credits a:hover { color: var(--gold); }

/* ── SHOWS ── */
.shows-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.shows__subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* featured upcoming card */
.show-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--white-20);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    background: var(--dark-3);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.show-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
}

.show-card--featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, var(--dark-3) 60%);
}

.show-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.5rem;
    text-align: center;
}
.show-card__day {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}
.show-card__month {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--white-70);
    text-transform: uppercase;
}

.show-card__info { flex: 1; }

.show-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.show-card__location {
    font-size: 0.9rem;
    color: var(--white-70);
    margin-bottom: 0.2rem;
}
.show-card__time {
    font-size: 0.8rem;
    color: var(--white-40);
}

.show-card__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.show-card__lang {
    font-size: 1.5rem;
}
.show-card__ticket {
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
}

/* past shows list */
.shows__past { margin-top: 3.5rem; }

.shows-past__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.show-past {
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--white-10);
    gap: 1rem;
    opacity: 0.55;
    transition: opacity 0.2s;
}
.show-past:first-child { border-top: 1px solid var(--white-10); }
.show-past:hover { opacity: 0.85; }

.show-past__date {
    font-size: 0.78rem;
    color: var(--white-40);
    min-width: 5.5rem;
    flex-shrink: 0;
}
.show-past__name {
    font-size: 0.95rem;
    font-weight: 400;
    flex: 1;
}
.show-past__location {
    font-size: 0.8rem;
    color: var(--white-40);
    flex-shrink: 0;
}
.show-past__lang {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-section {
    padding: 5rem 2rem;
    background: var(--dark-2);
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    color: var(--white-70);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form__label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
    font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--dark-3);
    border: 1px solid var(--white-20);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-form select option {
    background: var(--dark-3);
    color: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    font-family: 'Roboto', sans-serif;
}

.contact-form__success {
    font-size: 0.9rem;
    color: var(--gold);
    min-height: 1.2rem;
}

@media (max-width: 540px) {
    .contact-form__row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.site-footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--white-10);
    background: var(--dark-2);
}

.site-footer small {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--white-40);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 520px;
    background: var(--dark-3);
    color: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--white-20);
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    display: none;
    z-index: 9999;
    font-size: 0.85rem;
}
.cookie-banner a { color: var(--gold); }
.cookie-buttons {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.6rem;
}
.cookie-buttons button {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}
#accept-cookies { background: var(--gold); color: var(--dark); font-weight: 700; }
#reject-cookies { background: var(--dark); color: var(--white-70); border: 1px solid var(--white-20); }

/* ── RESPONSIVE ── */
@media (min-width: 600px) {
    .gallery__masonry { columns: 3; }
}

@media (min-width: 768px) {
    .gallery__masonry { columns: 4; }

    .site-nav { display: flex; }

    .shows-section { padding: 5rem 0; }
}

@media (max-width: 480px) {
    .site-nav { display: none; }
    .show-card { flex-wrap: wrap; }
    .show-card__right { flex-direction: row; width: 100%; justify-content: space-between; }
    .show-past__location { display: none; }
}
