
/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
    font-family: 'montserrat', sans-serif;
    line-height: 1.6;
}


/* =========================================
   FUENTES
========================================= */

@font-face {
    font-family: 'montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'geologica';
    src: url('../fonts/Geologica.ttf');
}

@font-face {
    font-family: 'aston';
    src: url('../fonts/Aston.ttf');
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --red: #c8102e;
    --red-dark: #990b21;
    --black: #080808;
    --dark: #101010;
    --gray: #a8a8a8;
    --light: #f5f5f5;
    --border: rgba(255, 255, 255, 0.12);
    --max-width: 1200px;
}


/* =========================================
   GENERAL
========================================= */

.section {
    width: 100%;
    padding: 120px 24px;
}

.section-label {
    display: inline-block;
    margin-bottom: 20px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;

    color: var(--red);
}

h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.04em;
}

a {
    color: inherit;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image: url('../img/background.webp');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.65) 48%,
            rgba(0, 0, 0, 0.25) 100%
        );
}

.hero-content {
    width: min(1200px, 100%);
    padding: 80px 24px;
}

.hero-kicker {
    margin-bottom: 65px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;

    color: #ddd;
}

.hero h1 {
    max-width: 760px;
    font-family: 'aston', sans-serif;
    font-size: clamp(3.6rem, 7.5vw, 6.7rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--red);
}

.hero-description {
    max-width: 500px;
    margin-top: 55px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #ddd;
}

.hero-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 40px;
    padding: 16px 30px;

    background: var(--red);

    color: #fff;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.hero-button:hover,
.cta-button:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;

    left: 24px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: #aaa;
}

.scroll-line {
    display: block;

    width: 70px;
    height: 1px;

    background: #aaa;
}


/* =========================================
   ABOUT
========================================= */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: clamp(50px, 8vw, 120px);

    max-width: var(--max-width);
    margin: auto;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';

    position: absolute;

    left: -20px;
    bottom: -20px;

    width: 100%;
    height: 100%;

    border: 1px solid var(--red);

    z-index: -1;
}

.about-image img {
    display: block;

    width: 100%;
    max-height: 700px;

    object-fit: cover;
}

.about-content p:not(.section-label):not(.about-intro) {
    max-width: 550px;

    margin-top: 22px;

    color: #aaa;
    font-size: 1rem;
}

.about-intro {
    margin-top: 30px;

    font-size: 1.35rem;
    font-weight: 600;
}


/* =========================================
   SHOWS
========================================= */

.shows {
    background: #111;
}

.shows > * {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading > p:last-child {
    max-width: 550px;
    margin-top: 30px;

    color: var(--gray);
}

.show-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.show-card {
    background: #181818;

    border: 1px solid var(--border);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.show-card:hover {
    transform: translateY(-8px);

    border-color: rgba(200, 16, 46, 0.6);
}

.show-card.featured {
    border-color: rgba(200, 16, 46, 0.7);
}

.show-image {
    position: relative;
    aspect-ratio: 4 / 5;

    overflow: hidden;
}

.show-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.show-card:hover .show-image img {
    transform: scale(1.04);
}

.show-content {
    padding: 30px;
}

.show-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;

    color: var(--red);
}

.show-content h3 {
    margin-top: 8px;

    font-size: 1.8rem;
    font-weight: 500;
}

.show-content ul {
    margin-top: 25px;
    padding-left: 18px;

    color: #aaa;
}

.show-content li {
    margin-bottom: 10px;
}

.show-button {
    display: block;

    margin-top: 30px;
    padding: 14px 18px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.show-button:hover {
    background: var(--red);
    border-color: var(--red);
}


/* =========================================
   EVENTS
========================================= */

.events {
    background: #080808;
}

.events-inner {
    max-width: var(--max-width);
    margin: auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.events-list {
    border-top: 1px solid var(--border);
}
.events-list li{
    list-style-type: square;
    font-size: 1.2em;
}

.event-item {
    display: flex;
    align-items: center;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.event-item span {
    width: 55px;

    font-size: 0.65rem;
    color: var(--red);
}

.event-item strong {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 500;
}


/* =========================================
   CTA
========================================= */

.cta {
    position: relative;

    background:
        linear-gradient(
            rgba(200, 16, 46, 0.08),
            rgba(200, 16, 46, 0.08)
        );
}

.cta-content {
    max-width: 750px;
    margin: auto;

    text-align: center;
}

.cta-content h2 {
    margin-top: 10px;
}

.cta-content > p:not(.section-label) {
    max-width: 500px;

    margin: 30px auto 0;

    color: #aaa;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 50px 24px 25px;

    background: #050505;

    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--max-width);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-small {
    font-size: 0.6rem;
    letter-spacing: 0.3em;

    color: var(--red);
}

.footer-name {
    margin-top: 5px;

    font-family: 'aston', sans-serif;
    font-size: 2.5rem;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border: 1px solid var(--border);

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.socials a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 40px auto 0;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    font-size: 0.65rem;
    color: #666;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

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

    .about-image {
        max-width: 650px;
        margin: auto;
    }

    .about-content {
        max-width: 700px;
        margin: auto;
    }

    .show-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .events-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .section {
        padding: 85px 20px;
    }

    .hero {
        min-height: 95svh;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero h1 {
        max-width: 340px;
        font-size: clamp(3rem, 13vw, 4.6rem);
        line-height: 0.9;
    }

    .hero-description {
        margin-top: 35px;
    }

    .hero-button {
        width: 100%;
    }

    .hero-scroll {
        left: 20px;
        bottom: 22px;
    }

    .about-image::before {
        left: -10px;
        bottom: -10px;
    }

    .show-content {
        padding: 25px;
    }

    .show-content h3 {
        font-size: 1.6rem;
    }

    .event-item {
        padding: 18px 0;
    }

    .event-item span {
        width: 45px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-name {
        font-size: 2rem;
    }

    .socials {
        width: 100%;
    }

    .socials a {
        flex: 1;
    }

}