:root {
    --red: #630814;     
    --red-alt: #640410;
    --red-light: #fcd4db;
    --gold: #BC9F48;        
    --white: #FFFFFF; 
    --grey: #E8E6E6;
    --black: #000000;
}
@font-face {
    font-family: 'Manrope';
    src: url('/en/css/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/en/css/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--red);
}
html::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
body {
    margin: 0;
    padding: 0;
}
.red {color: var(--red);}
.gold {color: var(--gold);}
.white {color: var(--white);}
.grey {color: var(--grey);}
.black {color: var(--black);}
.red-light {color: var(--red-light);}
.red-b {background-color: var(--red);}
.gold-b {background-color: var(--gold);}
.white-b {background-color: var(--white);}
.grey-b {background-color: var(--grey);}       
.red-light-b {background-color: var(--red-light);} 
.wrapper {
   display: inline;
}
video {
    object-fit: cover;
    width: 100%;
    pointer-events: none;
}
#home {
    position: relative;
    max-height: 110vh;
    width: 100%;
    overflow: hidden;
}
#bgVideo{
    opacity: 0;
    transition: opacity 1.2s ease;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    display: block;
}
#bgVideo.is-loaded {
    opacity: 1;
}
#other-div{
    width: 100%;
    height: 60vh;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to top, transparent 0%, black 15%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}
.grey-opacity {
    font-size: clamp(3.0rem, 3.6vw, 5.0rem);
    color: var(--black);
    opacity: 0.2;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Black */
    font-size: clamp(3.0rem, 3.6vw, 5.0rem);
    padding: clamp(0.9rem, 1vw, 1.0rem);
    margin: clamp(0.3rem, 1vw, 0.6rem);
}
h1 .red {
    color: var(--red);
}
h1 .gold {
    color: var(--gold);
}
h1 span {
    display: block;
    font-family: 'Montserrat', sans-serif;
}
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 2.5vw, 3.0rem);
    padding: clamp(0.5rem, 1vw, 0.6rem);
    margin: clamp(0.3rem, 1vw, 0.6rem);
}
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 2.5vw, 2.4rem);
    padding: clamp(0.3rem, 1vw, 0.6rem);
    margin: clamp(0.3rem, 1vw, 0.6rem);
}
p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(1.0rem, 1.3vw, 2rem);
    padding: clamp(0.3rem, 1.0vw, 0.6rem);
    margin: clamp(0.3rem, 1.0vw, 0.6rem);
    width: 75%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
a {
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    font-size: clamp(0.8rem, 7vw, 1.6rem);
    padding: clamp(0.3rem, 1vw, 0.6rem);
    margin: clamp(0.3rem, 1vw, 0.6rem);
}
span {
    font-family: 'Manrope', sans-serif;
}
li {
    font-family: 'Montserrat', sans-serif;
}
.dropdown a {
    font-size: clamp(0.8rem, 6vw, 1.2rem);
    padding: clamp(0.3rem, 1vw, 0.2rem);
    margin: clamp(0.3rem, 1vw, 0.2rem);
    padding-right: 15px;
}
h2.special {
    font-size: clamp(2.5rem, 2.5vw, 3.0rem);
}
.bot-0 {
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.top-0 {
    padding-top: 0px;
    margin-top: 0px;
}
.title-up {
    margin-top: 0px;
    margin-bottom: 0px;
}
.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-3000px); /* optional for a slide effect */
    transition: opacity 1.0s ease, transform 1.0s ease;
}
#subscribe {
    transition: opacity 1.0s ease, transform 1.0s ease;
}
.slide {
    transform: translateY(-180px); /* optional for a slide effect */
    transition: opacity 1.0s ease, transform 1.0s ease;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 99%;
    z-index: 1000;
    transition: transform 0.7s ease-in-out;
    background-color: rgba(var(--red), 0.0);
    display: flex;
    justify-content: space-between;
}
.navbar.hidden {
    transform: translateY(-100%);
}
.logo {
    height: 75px;
    width: auto;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 5px;
}
.menu-icon {
    cursor: pointer;
    user-select: none;
    font-size: clamp(40px, 40px, 40px);
    color: var(--grey);
    padding-right: 7px;
}
.dropdown {
    position: fixed;
    top: 75px;
    right: 0px;
    background-color: var(--white);
    border-radius: 7px;
    overflow: hidden;
    opacity: 0;
    width: 100%;
    transition: height 0.7s ease, opacity 0.7s ease;
    z-index: 1000;
    pointer-events: none;
}
.dropdown.open {
    height: 100vh;
    opacity: 1;
    pointer-events: auto;
    transition: height 0.7s ease, opacity 0.7s ease;
}
.dropdown a {
    display: block;
    float: right;
    clear: right;
    color: var(--red);
}
.left-a {
    left: 10vw;
}
.right-a {
    right: 10vw;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.center-s {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.solo-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.home-logo {
    padding-top: 50px;
    padding-bottom: 30px;
}
.goandance-tickets {
    width: 50%;
}
.mask{
    mask-image: linear-gradient(to top, var(--grey) 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, var(--grey) 80%, transparent 100%);
}
.mask-bot{
    mask-image: linear-gradient(to bottom, var(--grey) 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, var(--grey) 95%, transparent 100%);
}
.mask-a {
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}
footer {
    padding-top:10px;
    flex-direction: row; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-a {
    font-size: unset;
    padding: unset;
}
.footer-solo-img{
    padding-top: 5px;
    height: 175px;
    width: auto;
}
.btn-nav {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 1.3rem;
    padding: 5px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.btn-gold {
    width: 60%;
    background-color: var(--gold);
    color: var(--white);
    padding: 10px 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    border: none;
    border-radius: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.btn-red {
    width: 25%;
    background-color: var(--red);
    color: var(--white);
    padding: 10px 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    border: none;
    border-radius: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.btn-white {
    width: 35%;
    background-color: var(--white);
    color: var(--red);
    padding: 10px 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    border: none;
    border-radius: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    display: none;
    z-index: 9999;
}
.cookie-consent .cookie-content {
    max-width: 800px;
    margin: 0 auto;
}
.cookie-consent p {
    margin: auto;
    font-size: 16px;
}
.cookie-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
}
.cookie-btn:hover {
    background-color: #45a049;
}
#declineCookies {
    background-color: #f44336;
}
#declineCookies:hover {
    background-color: #e53935;
}
textarea {
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px;
    font-size: 16px;
    width: 30vw;
    resize: none;
}
.form-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 95vh;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: flex-start;
    padding-top:80px;
}
.form-modal.show {
    display: flex;
}
.form-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    animation: zoomIn 0.6s ease;
}
.form-modal .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.hotel{
    display: flex;
    flex-direction: row;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}
.hotel div, .hotel img{
    flex: 1 1 50%;
    box-sizing: border-box;
}
.hotel img{
    width:50%;
}
.logoFooter {
    height: 175px;
    width: auto;
}
.long {
    display: flex;
}
.short {
    display: none;
}

p.slide-in {
    opacity: 1;
    transform: translateY(0);
}
.whatsapp {
    width: 38px;
    padding-bottom: 5px;
}
.cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    flex-wrap: wrap; 
}
.card {
    color: white;
    border-radius: 25px;
    padding: 10px;
    flex: 1 1 350px;
    max-width: 400px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    white-space: normal;
    word-break: break-word;
    margin: 0px 5px 0px 5px;
}
.card-title {
    display: flex;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin: 0px 0;
    padding: 0px 0;
    text-align: center;
    width: 100%;
    justify-content: center;
}
.card-line {
    display: flex;
    align-items: center;
    color: var(--white);;
    font-size: 1rem;
    margin: 2px 0;
    padding: 2px 0;
    text-align: center;
    width: 100%;
    justify-content: center;
}
.card-line::before, .card-line::after {
    content: "";
    flex: 1;
    height: 1px; 
    background-color: var(--white);
    margin: 0 5px;
}
.card-line-gold::before, .card-line-gold::after {
    background-color: var(--gold);
}
.card-line-red::before, .card-line-red::after {
    background-color: var(--red);
}
.icon-fire {
    width: 1em;
    height: 1em;
    vertical-align: -0.1em;
}
.badge {
    padding: 0.3em 0.8em;
    border-radius: 10px;
}
.price {
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-size: clamp(4.2rem, 6.5vw, 6rem);
    padding: 0px 0;
    margin: 0px 0;
}
.currency {
    font-size: 0.5em;
    position: relative;
    top: -0.6em;
}
.sign {
    font-size: 0.5em;
    position: relative;
}
.card-list {
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}
.card-list li {
    display: block;
    text-align: left;
    margin-bottom: 2px;
}
.card-list li::before {
    content: "✔";
    margin-right: 10px;
}
.card-list li.check::before {
    content: none;
    margin-right: 10px;
}
.card-list li.red::before   { color: var(--red); }
.card-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}
.card-btn:hover {
    background-color: var(--gold);
    color: white;
}
.tickets{
    width: 100%;
}
#ticket-offer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 40px 0px;
}
.not-selectable {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default;
    color: var(--grey) !important;
}
.responsive-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 1px;
    box-sizing: border-box;
    width: 100%;
}
.box {
    background-color: rgba(255, 255, 255, 0.0);
    width: 12%;
    min-width: 100px;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.box p {
    margin: 1px 0;
    line-height: 1.4;
    color: var(--white);
    padding: 1px 0;
    flex: 1;
    display: flex;
    justify-content: center; 
    align-items: center;
}
.box p:first-child {
    font-weight: bold;
    font-size: clamp(3.0rem, 3.6vw, 5.0rem);
}
.box p:nth-child(2) {
    margin: 1px 0 0 0;
    padding: 1px 0;
}
.box p:nth-child(3) {
    margin: 1px 0 0 0;
    padding: 1px 0;
}
.map{
    border: 2px solid var(--red);
}
#program{
    padding: 90px 0px 0px 0px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}
.note{
    font-size: clamp(0.5rem, 0.7vw, 1.2rem);
}
.artist-desc{
    text-align: center;
    font-size: clamp(1rem, 0.9vw, 1.4rem);
    padding: 0px 0;
    margin: 0px 0;
    width: 95%;
    padding-top: 30px;
}
.carousel-wrapper {
    position: relative;
    width: 100%;
}
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
.carousel-track {
    display: flex;
    transition: transform 0.9s ease-in-out;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}
#media-track {
    justify-content: center;
}
.carousel-item {
    flex: 0 0 100%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: height 0.9s ease;
    scroll-snap-align: start;
}
.carousel-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.info-btn {
    position: absolute;
    bottom: 25px;
    right: 46%;
    background: var(--gold);
    opacity: 0.5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    z-index: 5;
    transition: transform 0.6s ease;
}
.info-btn::after {
    content: "▼";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}
.info-text {
    max-height: 0;
    overflow: hidden;
    color: var(--red);
    padding: 10 0px;
    transition: max-height 1.9s ease, padding 1.9s ease, opacity 1.9s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.carousel-item .info-text {
    opacity: 0;
    pointer-events: none;
}
.carousel-item.show-info .info-text {
    max-height: 550px;
    padding: 10 0px;
    opacity: 1;
    pointer-events: auto;
}
.carousel-item.show-info .info-btn {
    transform: rotate(180deg);
}
.image-wrapper {
    position: relative;
}
.carousel-wrapper .prev, .carousel-wrapper .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 2rem;
    background: rgba(0,0,0,0.0);
    color: var(--gold);
}
#wrapper-media .prev, #wrapper-media .next {
    display: none;
}
.prev {
    left: 10%;
}
.next {
    right: 10%;
}
.newsletter {
    width: 100%;
    background-size: cover;
    background-position: center;
}
.news-map-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;  
    align-items: stretch;
}
.news-map-wrapper .newsletter,
.news-map-wrapper .map {
    flex: 1 1 45%;
    min-width: 300px;
}
.news-map-wrapper .newsletter,
.news-map-wrapper .map {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}     

@media (min-width: 900px) {
    .artist-desc{
        width: 90%;
    }
    .carousel-container {
        width: 75%;
    }
    .carousel-item {
        flex: 0 0 calc(23.333% - 20px); 
    }
    .carousel-item-artist, .carousel-item-dj, .carousel-item-media {
        flex: 0 0 calc(35% - 20px); 
    }
}
        
@media (max-width: 713px) {
    .news-map-wrapper {
        flex-direction: column;
    }
    .news-map-wrapper .newsletter,
    .news-map-wrapper .map {
        flex: 1 1 100%;
        min-width: 0;
    }
    #wrapper-media .prev, #wrapper-media .next {
        display: block;
    }
    #media-track {
        justify-content: unset;
    }
    .carousel-item {
        padding: 0px;
    }
    .box {
        width: 33%;
    }
    .prev {
        left: 1%;
    }
    .next {
        right: 1%;
    }
    .left-a {
        left: 10px;
    }
    .right-a {
        right: 10px;
    }
    #home {
        max-height: 95vh;
    }
    .grey-opacity {
        font-size: clamp(2.5rem, 3.5vw, 6.0rem);
    }
    .long {
        display: none;
    }
    .short {
        display: flex;
    }
    .hotel{
        flex-direction: column;
    }
    textarea {
        width: 80vw;
    }
    
    h1 {
        font-size: clamp(2.0rem, 3.5vw, 5.0rem);
    }
    p {
        width: unset;
    }
    .carousel-img a img {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
    }
    .goandance-tickets {
        width: 100%;
    }
    footer {
        flex-direction: column; 
        display: flex;
    }
    footer .section2 {
        order: 3; 
    }
    footer .section3 {
        order: 2; 
    }
    .btn-gold, .btn-red, .btn-white {
        width: 70%;
        margin-bottom: 30px;
        font-size: 1.4rem;
    }
    .cookie-consent p {
        margin: 0 0 10px;
    }
    .note{
        font-size: clamp(0.5rem, 0.7vw, 1.2rem);
    }
    .hotel img{
        width:100% !important;
    }
}     

@media (max-width: 360px) {
    .box {
        width: 45%;
      }
    .card {
        flex: 1 1 330px;     
        max-width: 400px;    
    }
    h1 {
        font-size: clamp(1.8rem, 3.5vw, 5.0rem);
    }
    .btn-gold, .btn-red {
        width: 50%;
        margin-bottom: 20px;
        font-size: 1.0rem;
    }
}
        
        
        