@font-face {
    font-family: 'Montserrat'; /* A name you choose to use later in your CSS */
    src: url("../../main/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}

@font-face {
    font-family: 'Labor Union'; /* A name you choose to use later in your CSS */
    src: url("../../main/fonts/LaborUnion-Regular.otf") format("truetype");
}

body {
    margin: 0;
}

::selection {
  background-color: #ff400c;
  color: #ffffff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 17px 0 17px;
    /* display: none; */
}


.age-req {
    font-family: 'Labor Union';
    font-size: 60px;
    color: #121212;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-info .line1 {
    display: flex;
    gap: 32px;
}

.event-info {
    padding-left: 30px;
}

.date, .time {
    font-family: 'Montserrat';
    color: white;
    font-weight: 300 !important;
    font-size: 48px;
    margin: 0;
}

.title {
    font-family: 'Labor Union';
    color: white;
    font-size: 60px;
    margin-bottom: 10px;
    margin-top: 0;
}

.main {
    background-color: #121212;
}

.interaction, .interaction a {
    font-family: 'Montserrat';
    cursor: pointer;
    display: flex;
    gap: 40px;
    font-weight: 400;
    list-style: none;
    font-size: 25px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    text-decoration-color: #FF383C;
    color: #ffffff;
}
.interaction button {
  all: unset;              /* 🔥 полностью убирает стили кнопки */
  cursor: pointer;

  font-family: 'Montserrat';
  display: flex;
  gap: 40px;
  font-weight: 400;
  font-size: 25px;

  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: #FF383C;

  color: #ffffff;
}

.divider {
    width: 100%;
    height: 3px;
    background: #FF383C;
}

.ticket-line {
    background: #121212;
    padding: 40px 20px;
}
.ticket-line {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: #121212;
    justify-content: center;
    align-items: flex-start;
}
.ticket-line img {
    width: auto;
    height: 600px;
}

.tc-widget-inline-box,
.ticket-line span {
    width: 50%;
    max-width: 1000px;
}
.tc-widget-inline-box iframe {
    height: 600px !important;
}



.footer p, span, div, h3 {
    font-family: "Montserrat";
    font-weight: 500;
    color: #ffffff;
}

.footer {
    background-color: #121212;
    font-size: 24px;
}
.footer span {
    font-style: normal;
}
.footer .container {
    display: grid;
    grid-template-columns: auto auto;
    padding: 36px 124px 30px 124px;
}
.accent {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.6;
    font-weight: 400 !important;
    font-style: normal;
}
.nonaccent {
    opacity: 0.2;
    font-weight: 400 !important;
}
.flexible {
    display: flex;
    gap: 16px;
}

.quickinfo .bspace {
    margin-top: 56px;
}

.element-foot {
    padding-top: 19px;
}
.legal p {
    margin-bottom: 9px;
    margin-top: 0;
}

.legal {
    margin-top: 56px;
}

.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
    gap: 105px;
}

.gov {
    font-size: 20px;
    opacity: 0.1;
}

.soc-reff img:first-child {
    margin-right: 20px;
}



@media (max-width: 920px) {
    .hero {
        height: 92vh;
    }
    .title {
        font-size: 40px;
    }
    .date, .time {
        font-size: 28px;
    }
    .interaction, .interaction a {
        display: flex;
        flex-direction: column;
        padding-left: 10px;
        gap: 10px;
        font-size: 20px;
    }
    .interaction button {
        display: flex;
        flex-direction: column;
        padding-left: 10px;
        gap: 10px;
        font-size: 20px;
    }
    .ticket-line img {
        width: 70vw;
        height: auto;
        margin-bottom: 40px;
    }


    .ticket-line {
        display: block;
        justify-items: center;
        justify-content: center;
        align-items: center;
    }
    .tc-widget-inline-box,
    .ticket-line span {
        width: 70vw;
        max-width: 700px;
    }
    .tc-widget-inline-box iframe {
        height: 600px !important;
    }

    .footer {
        font-size: 22px;
    }

    .footer .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* центр блоков */
        padding: 36px 0 10px 0;
        justify-content: center;
    }
    .element-foot {
        padding-top: 6px;
    }
    .social {
        gap: 25px;
    }
    .legal {
        font-size: 16px;
    }
    .gov {
        font-size: 14px;
    }
    
}