/* CREATE A COLOR PALET */
:root {
    --green-megadark: #051614;
    --green-dark: #0A3B36;
    --green-med2: #444F4D;
    --green-med: #38514D;
    --teal: #67b1a4;
    --red: #FA574F;
    --white: #FFFFFF;
    --black: #041614;

    /* Font Sizes */
    --fs-hero-title: clamp(22px, 8vw, 44px);
    --fs-hero-sub: clamp(16px, 2vw, 23px);
    --fs-section-title: clamp(30px, 6vw, 60px);
    --fs-section-body: clamp(22px, 2vw, 33px);
    --fs-alt-title: clamp(20px, 5vw, 42px);
    --fs-alt-body: clamp(18px, 1.5vw, 22px);
    --fs-roll-title: clamp(32px, 5vw, 64px);
    --fs-roll-body: clamp(12px, 1.5vw, 16px);
    --fs-nav: 12px;
    --fs-btn: 14px;
    --fs-btn-lg: 25px;
    --fs-ticket: clamp(18px, 1.5vw, 22px);
}

@import url("https://use.typekit.net/cxh5ptz.css");

@font-face {
    font-family: 'New Hero ExtraBold';
    src: url('fonts/NewHero-ExtraBold.woff2') format('woff2'),
        url('fonts/NewHero-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

html {
    color: var(--white);
    background-color: var(--green-dark);

    font-family: "new-hero", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

header {
    height: 100vh;
    width: 100%;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
}



.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 200;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.2s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn img {
    width: 100%;
    height: 100%;
}

.container {
    height: 100%;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    pointer-events: none;
}

header nav,
#social-media,
#header-text,
.button,
.week-row,
.faq-header,
.footer-nav a,
.newsletter-input-wrapper,
.footer-legal a {
    pointer-events: auto;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 30px 50px 0 90px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
    background-color: transparent;
    pointer-events: auto;
}

header nav .nav-logo {
    height: 75px;
    transition: height 0.4s ease;
}

header nav.scrolled {
    padding: 15px 50px 15px 90px;
    background-color: rgba(4, 22, 20, 0.5);
    /* Higher transparency as requested */
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

header nav.scrolled .nav-logo {
    height: 60px;
    /* 20% reduction */
}

.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 200;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s ease;
    border-radius: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    padding-left: 0;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--fs-nav);
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    padding-left: 13%;
}

.button,
.button.red,
.button.teal {
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 900;
    font-size: var(--fs-btn);
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-transform: uppercase;
    white-space: nowrap;
    background-color: var(--red);
    color: var(--green-dark);
}

.button:hover,
.button.red:hover,
.button.teal:hover,
.button:active,
.button.red:active,
.button.teal:active {
    transform: translateY(-1px);
    background-color: var(--teal);
}

.nav-buttons a {
    text-decoration: none;
}

#social-media {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

#social-media img {
    width: 42px;
    height: 42px;
    opacity: 1;
    transition: transform 0.2s ease;
}

#gallery {
    padding: 80px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.gallery-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.gallery-item {
    height: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.2;
    filter: blur(4px);
    transition: opacity 1s ease, filter 1s ease;
}

.gallery-item.active {
    opacity: 1;
    filter: blur(0);
}

.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.gallery-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    aspect-ratio: 1 / 1;
    border-left: 1px solid var(--teal);
    border-right: 1px solid var(--teal);
    pointer-events: none;
    z-index: 5;
    background: rgba(103, 177, 164, 0.02);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 40px;
    transition: opacity 0.3s ease;
}

.gallery-nav:hover {
    opacity: 0.5;
}

.gallery-nav.prev {
    left: 5%;
}

.gallery-nav.next {
    right: 5%;
}

#header-text {
    padding-left: 120px;
    margin-top: auto;
    z-index: 1;
}

header h1 {
    font-family: 'New Hero ExtraBold', sans-serif;
    font-size: var(--fs-hero-title);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

header h3 {
    font-size: var(--fs-hero-sub);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

section {
    padding: 60px 40px;
    background-color: var(--black);
    overflow-x: hidden;
}

#buy-tickets {
    background-color: var(--green-dark);
    padding: 100px 20px;
    text-align: center;
}

#buy-tickets .container {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#buy-tickets h2 {
    font-family: 'New Hero ExtraBold', sans-serif;
    color: var(--teal);
    font-size: var(--fs-section-title);
    line-height: 0.9;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

#buy-tickets p {
    color: var(--teal);
    font-size: var(--fs-section-body);
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

#buy-tickets .cta-wrapper {
    margin-top: 10px;
}

.button.large {
    color: var(--green-dark);
    padding: 12px 52px;
    font-size: var(--fs-btn-lg);
    font-weight: 900;
    border-radius: 6px;
}

section#the-hangar {
    min-height: 400px;
    width: 100%;
    background: linear-gradient(to right, transparent 35%, var(--red) 100%), url('assets/the_hangar.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 60px 140px;
    box-sizing: border-box;
    text-align: right;
}





#the-hangar h1 {
    font-family: 'New Hero ExtraBold', sans-serif;
    color: var(--white);
    font-size: var(--fs-alt-title);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

#the-hangar p {
    color: var(--white);
    font-size: var(--fs-alt-body);
    line-height: 1.3;
    max-width: 550px;
    margin: 0;
}

#roll-with-us {
    background-color: var(--black);
    text-align: center;
    padding: 20px 20px 0px 20px;
    overflow: hidden;
}

#roll-with-us h1 {
    font-family: 'New Hero ExtraBold', sans-serif;
    color: var(--white);
    font-size: var(--fs-roll-title);
    margin-bottom: 20px;
    text-transform: uppercase;
}

#roll-with-us p {
    color: var(--red);
    font-size: var(--fs-roll-body);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

#roll-with-us span {
    text-decoration: underline;
    font-weight: 700;
}

#roll-with-us table {
    width: 100%;
}

.tickets {
    position: relative;
    margin-top: 50px;
}

.ticket {
    position: relative;
    margin-bottom: 8px;
    position: relative;
}

.ticket h1 {
    color: var(--black) !important;
    line-height: 1em;
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translateY(-50%);
    text-align: left;
}

.ticket-left,
.ticket-right,
.wide-ticket,
.round-ticket {
    position: relative;
    min-height: 200px;
    display: inline-block;
}

.ticket-left {
    background-color: var(--red);
    width: calc(50% - 4px);
    cursor: pointer;
    position: relative;
}

.ticket-left:hover {
    background-color: var(--teal);
}

.ticket-left .fetii-logo {
    position: absolute;
    bottom: 30px;
    right: 50px;
    text-align: right;
    width: 500px;
}

.ticket-left #rinkside {
    transform: translateY(-57%);
}

.ticket-left .fetii-logo img {
    display: inline-block;
    height: 25px;
    margin-left: 20px;
}

.ticket-left .fetii-logo span {
    text-decoration: none;
    font-weight: normal;
}

.ticket-right {
    background-color: var(--green-med);
    width: calc(50% - 4px);
    float: right;
    box-sizing: border-box;
    position: relative;
}

.ticket-right p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    padding: 20px 100px 20px 60px;
}

.wide-ticket {
    left: 2px;
    min-height: 150px;
    background-color: var(--green-med);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.round-ticket {
    width: calc(100% - 4px);
    left: 2px;
    min-height: 150px;
    background: linear-gradient(100deg, #38514D 0%, #787878 25%, #49B2A3 85%);
    border-radius: 75px;
    padding: 15px 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    gap: 20px;
}

.round-ticket h1,
.round-ticket h2,
.round-ticket h3 {
    color: var(--green-megadark) !important;
}

.circle {
    position: absolute;
    background-color: var(--black);
    width: 70px;
    height: 70px;
    border-radius: 70px;
    z-index: 0;
}

.top-circle {
    top: -35px;
    left: calc(50% - 35px);
}

.bottom-circle {
    bottom: -35px;
    left: calc(50% - 35px);
}

.middle-circle-left {
    top: calc(50% - 35px);
    left: -35px;
}

.middle-circle-right {
    top: calc(50% - 35px);
    right: -35px;
}

.ticket h1,
.ticket h2 {
    font-family: 'New Hero ExtraBold', sans-serif;
    font-size: var(--fs-ticket);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.ticket p {
    color: var(--white) !important;
    font-size: var(--fs-ticket);
    margin: 0;
}

.col3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.col3 h1,
.col3 h2,
.col3 h3 {
    margin: 5px 0;
    text-align: left !important;
    color: var(--green-megadark) !important;
}

.col3 h1 span,
.col3 h2 span,
.col3 h3 span {
    color: rgba(0, 0, 0, 0);
}

.col3 h1 {
    font-size: 38px !important;
    line-height: 1.1;
}

.col3 h2 {
    font-size: 28px;
    margin-bottom: -10px;
}

.col3 h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.8;
}

#programming {
    background-color: var(--black);
    text-align: center;
    padding: 10px 0px 100px 0px;
}

#programming h1 {
    font-family: 'New Hero ExtraBold', sans-serif;
    color: var(--white);
    font-size: var(--fs-section-title);
    margin-bottom: 20px;
    text-transform: uppercase;
}

#programming .week-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.week-row {
    background-color: var(--green-med);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 200px;
    margin: 3px 10px 0px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.week-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.week-row span {
    font-family: 'New Hero ExtraBold', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--white);
    letter-spacing: 1px;
}

.week-row .icon {
    color: var(--red);
    font-size: 32px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.week-row.active .icon {
    transform: rotate(45deg);
    /* Plus to X */
}

.week-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #314a44;
    /* Dark green from mockup */
    margin: 0 10px;
}

.week-content.active {
    max-height: 3000px;
}

.week-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 10px 40px;
    color: var(--white);
}

.week-details-header h2 {
    font-family: 'New Hero ExtraBold', sans-serif;
    font-size: 24px;
    margin: 0;
    display: flex;
    gap: 20px;
}

.week-details-header .close-panel {
    color: var(--red);
    font-weight: 900;
    font-size: 40px;
    cursor: pointer;
    line-height: 0;
}

.event-row {
    display: flex;
    align-items: center;
    padding: 40px 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 40px;
    text-align: left;
}

.event-row:last-child {
    border-bottom: none;
}

.event-date {
    min-width: 100px;
    text-align: center;
    color: var(--white);
}

.event-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    opacity: 0.8;
}

.event-date .number {
    display: block;
    font-size: 72px;
    line-height: 0.9;
    font-family: 'New Hero ExtraBold', sans-serif;
}

.event-image {
    width: 170px;
    height: 170px;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-family: 'New Hero ExtraBold', sans-serif;
    font-size: 24px;
    margin: 0 0 10px 0;
    color: var(--white);
    text-transform: uppercase;
}

.event-info p {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: var(--white);
    opacity: 0.9;
}

.see-more {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
}

.event-row .button {
    min-width: 200px;
    text-align: center;
    padding: 5px 0;
    font-family: 'New Hero ExtraBold';
    font-size: 22px;
    border-radius: 10px;
    text-decoration: none;
}

@media (max-width: 850px) {
    .week-row {
        padding: 20px 30px;
    }

    .event-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 20px;
    }

    .event-date {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .event-date .number {
        font-size: 40px;
    }

    .event-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .event-row .button {
        width: 100%;
    }
}

#partners div {
    height: 120px;
    background-color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    box-sizing: border-box;
}

#partners div #BSC-logo,
#partners div #the-hangar-logo {
    height: 70px;
}

#partners div #pdp-logo {
    height: 65px;
}

#partners div #macias-logo {
    height: 30px;
}

#faq {
    background-color: var(--green-dark);
    text-align: center;
    padding-top: 10px;
    /* Padding only at top to allow banner at bottom */
    position: relative;
    overflow: hidden;
}

#faq h1 {
    font-family: 'New Hero ExtraBold', sans-serif;
    color: var(--white);
    font-size: var(--fs-section-title);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-bottom: 80px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--green-med);
    transition: background-color 0.3s ease;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
    padding-right: 20px;
    padding-left: 100px;
}

.faq-column:nth-child(2) .faq-item {
    border-radius: 10px 0 0 10px;
    padding-right: 100px;
    padding-left: 20px;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.faq-header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header span {
    font-family: 'New Hero Bold', sans-serif;
    color: var(--white);
    font-size: clamp(14px, 1.2vw, 18px);
    letter-spacing: 0.5px;
}

.faq-content {
    max-height: 0;
    padding: 0 35px;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    text-align: left;
}

.faq-content p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 35px 25px 35px;
    opacity: 1;
}

.faq-item.active .chevron {
    transform: rotate(225deg);
}

.chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    margin-top: -6px;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

/* Event Banner at bottom */
.faq-banner {
    background-color: var(--red);
    width: 100vw;
    padding: 10px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.banner-content {
    font-family: 'New Hero ExtraBold', sans-serif;
    color: var(--black);
    font-size: clamp(20px, 3.5vw, 42px);
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -1px;
    padding-right: 50px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.star {
    font-size: 0.8em;
    vertical-align: middle;
    margin: 0 15px;
}



footer {
    background-color: var(--black);
    padding: 80px 20px 0;
    text-align: center;
    overflow: hidden;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
    margin-bottom: 60px;
    padding: 0;
    width: 100vw;
}

.footer-nav a {
    color: var(--teal);
    text-decoration: none;
    font-family: 'New Hero ExtraBold', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.newsletter-bar {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.newsletter-input-wrapper {
    font-family: 'new-hero';
    background-color: var(--white);
    border-radius: 15px;
    padding: 8px 8px 8px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-input-wrapper input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 20px;
    color: var(--green-med);
}

.newsletter-input-wrapper input::placeholder {
    color: #999;
}

.newsletter-input-wrapper .button.red {
    border-radius: 10px;
    padding: 12px 35px;
    font-size: 16px;
    color: var(--green-dark);
}

.footer-address {
    font-family: 'New Hero ExtraBold', sans-serif;
    color: var(--teal);
    font-size: clamp(20px, 4vw, 40px);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-legal a {
    color: var(--teal);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 60px;
}

.copyright {
    color: var(--teal);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.powered-by {
    color: var(--teal);
    font-size: 18px;
}

#macias-footer-logo {
    width: 100vw;
    position: relative;
    left: -40px;
    bottom: -10px;
    transform: scale(1.02);
}