/* GENERAL */
html,body,div,span,object,iframe,pre,a,abbr,acronym,address,code,del,dfn,em,img,q,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline}
*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;;outline:0}

html{scroll-behavior: smooth;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:10px;font-display:swap;outline:0;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-feature-settings:kern 1;font-feature-settings:kern 1;-webkit-font-kerning:normal;font-kerning:normal;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}

body {
    background-color: var(--blue-light);
    overflow-x: clip !important;
}
p, h1, h2, h3, h4, h5, h6{margin:0}

html {
    overflow-x: clip;
}
a {
    text-decoration: none;
}
.full-width {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
}

.maxgridrow {
    width:100%;
    max-width: 1884px;
    margin-inline:auto;
    padding-inline:30px;
    margin: auto !important;
}
@media (max-width:1550px) {
.maxgridrow {
    padding-inline:30px;
}
}

@media (max-width: 992px) {
.maxgridrow {
    padding-inline: 20px;  
    width: 100%;
}
}

button {
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid var(--white);
    padding: 8px 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    cursor: pointer;
    transition: .3s all ease-in-out;
}
button:hover {
    background-color: var(--white);
    color: var(--blue-light);
    transition: .3s all ease-in-out;
}

/* HERO SECTION HERE */
#hero {
    position: relative;
    height: 100vh;
    padding-top: 100px;
}
#hero .inner {
    display: flex;
    flex-direction: column;
}
#hero .inner .white {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-52);
    font-style: normal;
    font-weight: 500;
    line-height: 110%; 
}
#hero .inner .main_title {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-89);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
    margin: var(--space-12) 0 var(--space-40) 0;
}
#hero .inner .yellow {
    color: var(--yellow);
    font-family: var(--font);
    font-size: var(--size-52);
    font-style: normal;
    font-weight: 500;
    line-height: 110%; 
    margin-bottom: var(--space-48);
}
#hero video {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}
@media (max-width: 992px) {
#hero {
    overflow: hidden;
}
#hero video {
    width: 180vw;     
    max-width: none;
    left: 0;
    animation: heroPan 14s ease-in-out infinite alternate;
}
}

@keyframes heroPan {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-80vw); 
    }
}

/* PROGRAMMA SECTION HERE */
#programma {
    width: 100%;
    max-width: 1100px;
    padding: var(--space-128) 0 0 0;
    position: relative;
    /* overflow: hidden; */
}

#programma .main_title {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-89);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: var(--space-64);
}
#programma .events {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}
#programma .event {
    padding: var(--space-32);
    border-radius: 4px;
    background: var(--blue-dark);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#programma .event .date_and_time {
    display: flex;
    gap: var(--space-12);
    align-items: baseline;
}
#programma .event .date_and_time .date {
    color: var(--yellow);
    text-align: center;
    font-family: var(--font);
    font-size: var(--size-30);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
}
#programma .event .date_and_time .time {
    color: var(--yellow);
    text-align: center;
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
}
#programma .event .title {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-52);
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    margin: 8px 0;
}
#programma .event .title span {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-24);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
#programma .event .sub {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-24);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
}

#programma .event .info {
    display: flex;
    gap: var(--space-16);
    border-left: 1px solid var(--grey);
    padding-left: var(--space-16);
    /* margin-top: var(--space-32); */
    margin: auto 0 0 0;
}
#programma .event .price p, #programma .event .transport p {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-24);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
}
#programma .event .price span, #programma .event .transport span {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
}
#programma .event .transport {
    border-left: 1px solid var(--grey);
    padding-left: var(--space-16);
}
#programma .programma_bg {
    position: absolute;
    bottom: -10%;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

#programma .programma_bg svg {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 1200px) {
#programma {
    max-width: calc(100% - 32px);
    /* padding: var(--space-128) 0 0 0; */
}
}
@media (max-width: 992px) {
#programma .event {
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 4px;
}
#programma .event .title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#programma .event .sub {
    padding-bottom: var(--space-40);
}
#programma .event .info {
    flex-direction: column;
    padding-top: var(--space-40);
    gap: var(--space-24);
    border-left: none;
    border-top: 1px solid var(--grey);
    padding-left: 0;
}
#programma .event .price {
    display: flex;
    align-items: center;
    gap: 8px;
}
#programma .event .transport {
    border-left: none;
    padding-left: 0;
}
#programma .programma_bg {
    bottom: auto;
    transform: translate(-50%, -50%);
    top: 50%;
}
}

/* DIORGANWSH HERE */
#diorganvsh {
    width: 100%;
    max-width: 600px;
    padding: var(--space-250) 0 0 0;
}
#diorganvsh .main_title {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-89);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
    margin-bottom: var(--space-64);
}
#diorganvsh .text {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}
#diorganvsh .text h3 {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-24);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
}
#diorganvsh .text p {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
@media (max-width: 992px) {
#diorganvsh {
    max-width: 100%;
    padding-inline: 16px;
}
}


/* SLIDER SECTION HERE */
#gallery {
    position: relative;
    padding: var(--space-128) 0 var(--space-64) 0;
}
#gallery img {
    width: 100%;
    height: 100%;
}
#gallery .swiper-slide {
    position: relative;
}
#gallery .swiper-slide::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--blue-light);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
#gallery .swiper-slide .play_btn {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: none;
}
#gallery .swiper-button-next {
    transform: rotate(180deg);
}
#gallery .btns {
    display: flex;
    align-items: center;
    /* gap: 50px; */
    width: 100%;
    max-width: 280px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
#gallery .btns svg {
    cursor: pointer;
    fill: transparent;
    transition: .3s all ease-in-out;
}
#gallery .btns .swiper-button-next:hover svg, #gallery .btns .swiper-button-prev:hover svg {
    fill: var(--white);
    transition: .3s all ease-in-out;
}
@media (max-width: 992px) {
#gallery {
    padding: var(--space-128) 0;
}
#gallery .btns {
    max-width: 180px;
    bottom: -10px;
}
#gallery .btns svg {
    width: 70%;
}
}


/* VIDEO SECTION HERE */
#video {
    padding: var(--space-128) 0;
    padding-inline: 32px;
}
#video .title {
    color: var(--white);
    text-align: center;
    font-family: var(--font);
    font-size: var(--size-52);
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: var(--space-64);
}
#video .video_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1380px;
    max-height: 780px;
    margin: auto;
    border-radius: 4px;
} 
#video .video_thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; 
}
#video .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all ease-in-out;
    border-radius: 16px;
    background: var(--play-btn);
    width: 155px;
    height: 115px;
}
#video .play_btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}
#video .video_wrapper.playing .video_thumb,
#video .video_wrapper.playing .play_btn {
    display: none;
}

#video .video_wrapper.playing video {
    display: block;
}
@media (max-width: 1200px) {
#video {
    max-width: calc(100% - 32px);
}
}
@media (max-width: 992px) {
#video {
    /* max-width: 100%; */
    padding: var(--space-250) 0;
}
#video .play_btn {
    border-radius: 6px;
    width: 59px;
    height: 44px;
}
#video .play_btn svg {
    width: 38%;
}
}


/* FORM SECTION HERE */
#form {
    width: 100%;
    max-width: 1000px;
    padding-bottom: var(--space-128);
}
#form .inner {
    display: flex;
}
#form .title {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-52);
    font-style: normal;
    font-weight: 500;
    line-height: 110%; 
    margin-bottom: var(--space-64);
}
#form .inner .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 var(--space-32);
    border-left: 1px solid var(--grey-two);
    min-height: 385px;
}
#form .inner .left .top a {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-24);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
}
#form .inner .left .bottom {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-30);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    padding-top: var(--space-32);
}
#form .inner .left .bottom a {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-30);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#form .right {
    flex: 1;
    border-left: 1px solid var(--grey-two);
    padding-left: var(--space-64);
}
#form #contactForm {
    display: flex;
    flex-direction: column;
    min-width: 420px;
}
#form form label, 
#form #formStatus  {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
    margin-top: var(--space-12);
}
#form form input[type="text"]:user-invalid,
#form form input[type="email"]:user-invalid,
#form form textarea:user-invalid {
    background: var(--blue-dark);
    border: 1px solid red;
}

#form form input[type="text"],
#form form input[type="email"],
#form form textarea {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
    border-radius: 4px;
    background: var(--blue-medium);
    height: 40px;
    border: none;
}
#form form input[type="text"]:focus,
#form form input[type="email"]:focus,
#form form textarea:focus {
    background: var(--blue-dark);
    border: none;
}

.field {
    display: flex;
    flex-direction: column;
}
.field:has(input:user-invalid) label, .field:has(textarea:user-invalid) label {
    color: var(--red) !important;
}


#form form textarea {
    min-height: 120px;
    resize: vertical;
}
#form .bottom_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
#form .checkbox_row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-16);
}
#form .checkbox_row input[type="checkbox"] {
    border-radius: 4px;
    background: var(--blue-medium);
    margin-top: 13px;
}
#form .checkbox_row label {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
}
#form .checkbox_row a {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
#form form button {
    align-self: flex-end;
    margin-top: var(--space-16);
}
@media (max-width: 992px) {
#form {
    padding-bottom: 0;
}
#form .inner {
    flex-direction: column;
}
#form .inner .left {
    min-height: 100%;
    border-left: 0;
    padding-left: 0;
    padding-bottom: var(--space-64);
}
#form .right {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--grey-two);
    padding-top: var(--space-64);
}
#form #contactForm {
    min-width: 100%;
}
}


/* TOP FOOTER HERE */
.top_footer {
    margin-bottom: -5px;
    line-height: 0;
}
.top_footer svg {
    display: block;
    width: 100%;
    height: auto; /* keeps the 1920:164 aspect ratio while scaling */
}
@media (max-width: 992px) {
.top_footer {
    padding-top: 130px;
}
}

/* FOOTER HERE */
footer {
    background: var(--blue-medium);
    padding: 16px 0;
}
footer .mobile {
    display: none;
}
footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
footer .inner p, footer .inner a {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
footer .inner .middle {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}
footer .inner .right .right_inner {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}
@media (max-width: 992px) {
footer .desktop {
    display: none;
}
footer .mobile {
    display: block;
    width: 100%;
    text-align: right;
}
footer .inner {
    flex-direction: column;
    gap: var(--space-40);
}
footer .inner .middle {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
}
footer .inner .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}
footer .inner .right .right_inner {
    flex-direction: column;
    width: 100%;
    align-items: start;
    gap: 0;
}
}