/* ======================
ROOT VARIABLES
====================== */
:root{
    --text:#f6f9a1;
    --accent-purple:#b343cd;
    --accent-pink:#f6425d;
    --bg-dark:#1a1025;
    --bg-mid:#241133;
    --bg-red:#42122f;
    --nav-bg:rgba(20,10,30,.35);
    --card-bg:rgba(255,255,255,.06);
    --button-bg:#f6f9a1;
    --button-text:#1d1028;
    --border-radius:20px;
    --transition:.3s ease;
    --max-width:1300px;
}

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

html{
    scroll-behavior:smooth;
    background: var(--bg-dark);
}

@media (prefers-reduced-motion: reduce){
    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
    }
}

.skip-link{
    position:absolute;
    top:-100%;
    left:1rem;
    z-index:10000;
    padding:.75rem 1.25rem;
    background:var(--button-bg);
    color:var(--button-text);
    font-weight:700;
    border-radius:999px;
}

.skip-link:focus{
    top:1rem;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.tickets-nav-btn:focus-visible,
.primary-btn:focus-visible,
.secondary-btn:focus-visible,
.hamburger:focus-visible,
.dots button:focus-visible,
.lightbox-arrow:focus-visible,
.close-modal:focus-visible,
.cast-card:focus-visible,
.gallery-grid img:focus-visible{
    outline:3px solid var(--accent-purple);
    outline-offset:3px;
}

body{
    font-family:'Montserrat',sans-serif;
    color:var(--text);
    background:linear-gradient(
        180deg,
        var(--bg-dark) 0%,
        var(--bg-mid) 50%,
        var(--bg-red) 100%
    );
    overflow-x:hidden;
}

img{display:block;max-width:100%;}
a{text-decoration:none;}
ul{list-style:none;}

.container{
    width:min(90%,var(--max-width));
    margin:auto;
    box-sizing:border-box;
}

/* ======================
HEADER
====================== */
.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;
}

.site-header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
}

#tickets{
    scroll-margin-top:130px;
}

.navbar{
    height:120px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 4vw;
    backdrop-filter:blur(20px);
    background:var(--nav-bg);
}

.nav-logo{
    opacity:0;
    transition:.25s ease;
}

.nav-logo:hover{
    scale:1.05;
}

.nav-logo.show-logo{opacity:1;}

.nav-logo img,
.nav-logo-alt img{
    width:130px;
    height:auto;
    padding: 0 0 0 2dvh;
}

.nav-logo picture,
.nav-logo-alt picture{
    display:block;
    width:130px;
}

/* NAV LOGO ALT FOR OTHER PAGES*/

.nav-logo-alt{
    transition:.25s ease;
}

.nav-logo-alt:hover{
    scale:1.05;
}

.nav-logo-alt img{
    width:130px;
    height:auto;
    padding: 0 0 0 2dvh;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:2rem;
    margin-left: auto;
}

.nav-links a{
    color:var(--text);
    font-size:1.1rem;
    font-weight:600;
    transition:var(--transition);
}

.nav-links a:hover{color:var(--accent-purple);}

.nav-actions{
    display:flex;
    align-items:center;
    gap:1.5rem;
    margin-left:2rem;
}

.instagram-link{
    width: 30px;
    filter: invert(83%) sepia(38%) saturate(377%) hue-rotate(26deg) brightness(117%) contrast(95%);
}


.instagram-link img{
    transition: filter 0.3s ease;
}

.instagram-link img:hover{
    filter: invert(34%) sepia(69%) saturate(1337%) hue-rotate(36deg) brightness(90%) contrast(100%);
}

.tickets-nav-btn{
    background:var(--button-bg);
    color:var(--button-text)!important;
    padding:.9rem 1.5rem;
    border-radius:999px;
    font-weight:800;
    transition: var(--transition);
}

.tickets-nav-btn:hover{
    background:var(--accent-purple);
    color:#fff!important;
}

/* ======================
HAMBURGER
====================== */
.hamburger{
    display: none;
    position:relative;
    width:28px;
    height:22px;
}

.hamburger span{
    position:absolute;
    left:0;
    width:28px;
    height:2px;
    background:var(--text);
    transition:.3s ease;
}

.hamburger span:nth-child(1){
    top:0px;
}

.hamburger span:nth-child(2){
    top:10px;
}

.hamburger span:nth-child(3){
    top:20px;
}

/* HAMBURGER "X" ANIMATION - FIXED */
.hamburger.open span:nth-child(1){
    top:10px;
    transform:rotate(45deg);
}

.hamburger.open span:nth-child(2){
    opacity:0;
}

.hamburger.open span:nth-child(3){
    top:10px;
    transform:rotate(-45deg);
}

.mobile-menu{display:none;}

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

.hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #000;
}

/* --------------------------
Poster Area
-------------------------- */

.hero-poster {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* --------------------------
Background
-------------------------- */

.hero-bg,
.hero-butt {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-butt {
    pointer-events: none;
}

/* --------------------------
Gradient
-------------------------- */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .05),
        rgba(10, 5, 20, .55)
    );
    z-index: 2;
}

/* --------------------------
Logo
-------------------------- */

.hero-logo {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(260px, 40vw, 500px);
    height: auto;
    z-index: 10;
}

/* --------------------------
Characters
-------------------------- */

.hero-shane,
.hero-ilya {
    position: absolute;
    width: clamp(280px, 45vw, 700px);
    height: auto;
    z-index: 5;
}

.hero-shane {
    left: -12%;
    bottom: -15%;
}

.hero-ilya {
    right: -11%;
    bottom: -13%;
}


/* --------------------------
Buttons
-------------------------- */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(
        to bottom,
        rgba(20, 10, 30, .8),
        rgba(20, 10, 30, 1)
    );
    z-index: 50;
}

.primary-btn {
    background: var(--button-bg);
    color: var(--button-text);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 800;
    transition: .3s;
}

.primary-btn:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

/* ======================
ABOUT
====================== */
.about-section{padding:80px 0;}

.about-grid{
    display:flex;
    align-items:center;
    gap:6rem;
}

.about-text{flex:1;}

.about-text h2{
    font-size:clamp(2.8rem,6vw,5rem);
    font-weight:900;
    text-align:center;
    line-height:.95;
    margin-bottom:2rem;
}

.about-text p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:1.4rem;
    font-weight:400;
}

.button-row{
    font-size: 1.5rem;
    display:flex;
    gap:2rem;
    margin-top:4rem;
}

.about-button-container{
    display:flex;
    justify-content:center;
}

.about-image{flex:1;}

.image-slider{
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;   /* keeps it square */
    overflow:hidden;
    border-radius:10px;
    border: 2px solid color-mix(in srgb, var(--accent-purple) 50%, transparent);
}

.slides{
    display:flex;
    height:100%;
    transition:transform 0.6s ease;
}

.slides img{
    width:100%;
    height:100%;
    object-fit:cover;
    flex-shrink:0;
}

.dots{
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.dots button{
    width:8px;
    height:8px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.4);
    cursor:pointer;
}

.dots button.active{
    background:white;
}

/* ======================
TICKETS
====================== */
.tickets-section{
    padding: 120px 0;
    margin-top: -5rem;
}

.section-title{
    text-align:center;
    font-size:clamp(3rem,8vw,6rem);
    font-weight:900;
    margin-bottom:4rem;
}

.section-title-alt{
    text-align:center;
    font-size:clamp(1rem,5vw,2rem);
    font-weight:900;
    margin: 0 2rem 4rem 2rem;
}

.ticket-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
    min-width: 0;
}

.ticket-card{
    background:var(--card-bg);
    backdrop-filter:blur(15px);
    padding:3rem;
    border-radius:30px;
    transition:.35s ease;
}

.ticket-card:hover{
    background:rgba(255,255,255,.08);
}

.ticket-card h3{
    font-size:2rem;
    margin-bottom:2rem;
    font-weight:900;
    text-align:center;
}

.ticket-card p{
    text-align:center;
    margin-bottom:1.5rem;
    line-height:1.8;
}

.ticket-card h2,
.ticket-card .ticket-card-date{
    font-size:1.2rem;
    font-weight:600;
    text-align:center;
}

.ticket-card a{
    text-align:center;
    display:block;
    margin: 2rem;
    padding:1rem 2rem;
}

/* ======================
SEE YOU AT THE COTTAGE
====================== */
.cottage-section{padding-top:0;}

.cottage-section h2{
    text-align:center;
    font-size:clamp(2.5rem,9vw,7rem);
    font-weight:900;
    line-height:1;
    margin-bottom:3rem;
    padding: 0 20px;
}

.cottage-image{
    width:100%;
    height:700px;
    object-fit:cover;
    object-position:center;
}

/* ======================
COMPANY SECTION
====================== */
.company-section{
    padding:140px 0;
    text-align:center;
}

.company-section h2{
    font-size:clamp(2.5rem,7vw,5rem);
    font-weight:900;
    margin-bottom:2rem;
}

.company-section p{
    max-width:850px;
    margin:auto;
    line-height:1.9;
    font-size:1.15rem;
    font-weight:400;
}

.secondary-btn{
    font-size:1.3rem;
    display:block;
    margin: 3rem auto;
    max-width: 500px;
    padding:1rem;
    border-radius:999px;
    background:var(--accent-purple);
    color:#fff;
    font-weight:800;
    transition:var(--transition);
}

.secondary-btn:hover{
    background:var(--accent-pink);
    transform:translateY(-3px);
}

/* ======================
FOOTER
====================== */
footer{
    padding:4rem 0;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:2rem;
}

.footer-links a{
    color:var(--text);
    font-weight:600;
    transition:var(--transition);
}

.footer-links a:hover{color:var(--accent-purple);}

.copyright{
    margin-top:2rem;
    text-align:center;
    line-height:1.8;
    opacity:.7;
    font-size:.9rem;
}

/* ======================
SELECTION COLOR
====================== */
::selection{
    background:var(--accent-purple);
    color:#fff;
}

/* ======================
MEDIA PAGE
====================== */

.media-hero{
    padding:180px 0 80px;
    text-align:center;
}

.media-hero h1{
    font-size:clamp(3rem,8vw,6rem);
    font-weight:900;
}

.media-hero p{
    max-width:700px;
    margin:1.5rem auto 0;
    line-height:1.8;
    opacity:.85;
}

/* ======================
GALLERY (ELEGANT GRID)
====================== */

.media-gallery{
    padding:150px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:1rem;
}

.gallery-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
    cursor:pointer;
    transition:.4s ease;
    filter:saturate(1.05);
}

/* varied masonry feel */
.gallery-grid img:nth-child(1){grid-column:span 7; height:320px; object-position: 50% 20%;}
.gallery-grid img:nth-child(2){grid-column:span 5; height:320px; object-position: 50% 10%;}
.gallery-grid img:nth-child(3){grid-column:span 4; height:280px; object-position: 50% 20%;}
.gallery-grid img:nth-child(4){grid-column:span 4; height:280px; object-position: 50% 20%;}
.gallery-grid img:nth-child(5){grid-column:span 4; height:280px;}
.gallery-grid img:nth-child(6){grid-column:span 12; height:480px; object-position: 50% 40%;}
.gallery-grid img:nth-child(7){grid-column:span 7; height:320px; object-position: 50% 40%;}
.gallery-grid img:nth-child(8){grid-column:span 5; height:320px; object-position: 50% 28%;}
.gallery-grid img:nth-child(9){grid-column:span 4; height:280px; object-position: 50% 0;}
.gallery-grid img:nth-child(10){grid-column:span 4; height:280px; object-position: 50% 45%;}
.gallery-grid img:nth-child(11){grid-column:span 4; height:280px; object-position: 50% 35%;}
.gallery-grid img:nth-child(12){grid-column:span 5; height:320px; object-position: 50% 10%;}
.gallery-grid img:nth-child(13){grid-column:span 7; height:320px; object-position: 50% 10%;}
.gallery-grid img:nth-child(14){grid-column:span 12; height:480px; object-position: 50% 20%;}

.gallery-grid img:hover{
    transform:scale(1.02);
    filter:brightness(1.1);
}

/* ======================
LIGHTBOX
====================== */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(5px);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox.active{
    display:flex;
}

.lightbox-img{
    max-width:90%;
    max-height:85%;
    border-radius:12px;
    -webkit-user-drag:none;
}

.lightbox-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:white;
    font-size:2rem;
    cursor:pointer;
    transition:.3s;
    backdrop-filter:blur(10px);
}

.lightbox-arrow:hover{
    background:rgba(255,255,255,.16);
}

.lightbox-prev{
    left:30px;
}

.lightbox-next{
    right:30px;
}

.lightbox-close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:3rem;
    cursor:pointer;
    color:white;
}

.close-modal{
    position:absolute;
    top:18px;
    right:22px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:white;
    font-size:2rem;
    cursor:pointer;
    transition:.3s;
}

.close-modal:hover{
    transform:rotate(90deg);
    background:rgba(255,255,255,.16);
}

/* ======================
TIKTOK SECTION
====================== */

.media-tiktok{
    margin-bottom: 3rem;
}

.tiktok-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

.tiktok-embed{
    background:rgba(255,255,255,.06);
    border-radius:20px;
    padding:1rem;
    backdrop-filter:blur(12px);
    transition: 0.3s ease;
}

.tiktok-embed:hover{
    transform:translateY(-3px);
}

.tiktok-embed iframe{
    width:100%;
    height:520px;
    border:none;
    border-radius:14px;
}

/* ==========================================
PRESS PAGE
========================================== */

.press-section {
    margin: 6rem auto -6rem;
    padding: 50px 0;
}

/* =====================
FEATURE CARD
===================== */

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 2rem;
    padding-bottom: 3rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
    transition: .35s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .08);
}

.feature-label {
    display: inline-block;
    color: var(--accent-pink);
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.feature-card p {
    opacity: .85;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* =====================
TESTIMONIALS
===================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    padding: 2.5rem;
    border-radius: 24px;
    transition: .3s;
    position: relative;
    margin: 0;
    border: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -18px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent-purple);
    opacity: .3;
    font-weight: 900;
}

.testimonial-card.featured {
    margin-top: 40px;
}

.quote {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.author {
    opacity: .8;
    line-height: 1.6;
}

.author span {
    font-size: .95rem;
}

/* =====================
MEDIA CONTACT
===================== */

.media-contact {
    padding: 120px 0;
    text-align: center;
}

.media-contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.media-contact p {
    max-width: 650px;
    margin: auto;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.media-contact-card {
    max-width: 900px;
    margin: auto;
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 3rem;
}

.media-contact-card p {
    line-height: 1.9;
    margin-bottom: 2rem;
}

.media-contact-card p:last-child {
    margin-bottom: 0;
}

/* =====================
LINKS
===================== */

.accent-link {
    color: var(--accent-purple);
    font-weight: 700;
    transition: .3s;
}

.accent-link:hover {
    color: var(--accent-pink);
}

/* =====================
Hero Large Display
===================== */

@media (min-width:1800px){

    .hero-logo{
        width:650px;
        margin-top: -5rem;
    }

    .hero-shane{
        width:900px;
        left: -6%;
    }
    .hero-ilya{
        width:900px;
        right: -6%;
    }

}

/* =====================
RESPONSIVE
===================== */

@media (max-width: 900px) {
    .testimonial-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        margin-top: 0;
    }

    .feature-card {
        padding: 2rem;
        padding-bottom: 3rem;
    }
}

/* responsive */
@media(max-width:1000px){
    .tiktok-grid{grid-template-columns:1fr;}
    .gallery-grid{grid-template-columns: repeat(2, 1fr); gap: 10px;}
    .gallery-grid img:nth-child(n){
        grid-column:span 1 !important;
        aspect-ratio:1 / 1;
        height:auto !important;
    }
}

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

@media (max-width: 1000px) {
    .hero-logo {
        width: clamp(260px, 52vw, 350px);
        top: 20%;
    }

    .hero-shane {
        left: -22%;
        width: clamp(300px, 55vw, 650px);
        bottom: -15%;
    }

    .hero-ilya {
        right: -22%;
        width: clamp(300px, 55vw, 650px);
        bottom: -13%
    }
}

/* ==========================================
PHONE
========================================== */

@media (max-width: 768px) {
    .hero {
        min-height: 900px;
    }

    .hero-logo {
        width: 50vw;
    }

    .hero-shane {
        width: 50vw;
        left: -10%;
        bottom: -7%;
    }

    .hero-ilya {
        width: 50vw;
        right: -10%;
        bottom: -5%;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 1.5rem;
    }

}

/* ==========================================
On Mobile, lightbox
========================================== */


@media (max-width:768px){

    .lightbox{
        padding:1rem;
    }

    .lightbox-arrow{
        width:48px;
        height:48px;
        font-size:1.5rem;
    }

    .lightbox-prev{
        left:12px;
    }

    .lightbox-next{
        right:12px;
    }

}

/* ==========================================
SMALL PHONE
========================================== */

@media (max-width: 550px) {
    .hero {
        min-height: 820px;
    }

    .hero-logo {
        width: 60vw;
        top: 22%;
    }

    .hero-shane {
        width: 75vw;
        left: -30%;
    }

    .hero-ilya {
        width: 75vw;
        right: -30%;
    }
}

/* ======================
TABLET
====================== */
@media (max-width:1000px){
    .about-grid{
        flex-direction:column;
        gap:4rem;
    }
    .ticket-cards{grid-template-columns:1fr;}
}

/* ======================
MOBILE NAV
====================== */
@media (max-width:850px){

    #tickets{
        scroll-margin-top:100px;
    }

    .navbar{
        position:relative;
        height:90px;
        padding:0 1.25rem;
    }

    /* Hide desktop links */
    .nav-links{
        display:none;
    }

    /* Smaller logo */
    .nav-logo img,
    .nav-logo-alt img,
    .nav-logo picture,
    .nav-logo-alt picture{
        width:95px;
        padding:0;
    }

    /* Center Tickets button */
    .tickets-nav-btn{
        position:absolute;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
        padding:.75rem 1.25rem;
        font-size:.95rem;
        z-index:10;
    }

    /* Right-side icons */
    .nav-actions{
        margin-left:auto;
        gap:.85rem;
    }

    .instagram-link{
        display:flex;
        align-items:center;
        justify-content:center;
        width:26px;
        flex-shrink:0;
    }

    .instagram-link img{
        width:26px;
        display:block;
    }

    .hamburger{
        display:block;
        background:none;
        border:none;
        padding:0;
        margin:0;
        z-index:2000;
    }

    /* Mobile dropdown */

    .mobile-menu{
        position:fixed;
        top:90px;
        left:0;
        width:100%;

        background:rgba(20,10,30,.95);
        backdrop-filter:blur(25px);

        display:flex;
        flex-direction:column;
        align-items:center;

        gap:2rem;

        padding:3rem 0;

        transform:translateY(-130%);
        transition:.4s ease;

        opacity:0;
    }

    .mobile-menu.active{
        transform:translateY(0);
        opacity:1;
    }

    .mobile-menu a{
        color:var(--text);
        font-size:1.1rem;
        font-weight:700;
    }

}

/* ======================
PHONE
====================== */
@media (max-width:768px){
    .hero-content{padding-bottom:60px;}
    .button-row{flex-direction:column;}
    .primary-btn{text-align:center;}
    .about-section{padding:100px 0 0 0;}
    .about-text h2{line-height:1.2;}
    .ticket-card{padding:1rem;}
    .company-section{padding:100px 0;}
    .cottage-section h2{margin-top: -50px;}
}

/* ======================
SMALL PHONE
====================== */
@media (max-width:480px){
    .navbar{padding:0 1.5rem;}
    .section-title{margin-bottom:2.5rem;}
    .ticket-card h3{font-size:1.5rem;}
    .about-text p{font-size:1rem;}
    .company-section p{font-size:1rem;}
}

/* ======================
FADE-IN ANIMATION
====================== */
@keyframes fadeUp{
    from{opacity:0;transform:translateY(40px);}
    to{opacity:1;transform:translateY(0);}
}

.about-section,
.tickets-section,
.company-section{
    animation:fadeUp .8s ease;
}