/* Scroll Animation - Desktop */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    cursor: pointer;
    z-index: 3;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 12px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateX(-50%) rotate(45deg);
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator:hover::before {
    animation-play-state: paused;
}

.scroll-indicator:hover::after {
    animation-play-state: paused;
}

/* Solo posizione modificata per mobile */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 15vh;
        border-color: #fff;
    }

    .scroll-indicator::before {
        background-color: #fff;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 18vh;
        width: 25px;
        height: 45px;
    }
}

@media (max-width: 380px) {
    .scroll-indicator {
        bottom: 20vh;
        width: 22px;
        height: 40px;
    }
}

/* Safe area support solo per mobile */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .scroll-indicator {
            bottom: calc(15vh + env(safe-area-inset-bottom));
        }
    }
    
    @media (max-width: 480px) {
        .scroll-indicator {
            bottom: calc(18vh + env(safe-area-inset-bottom));
        }
    }
    
    @media (max-width: 380px) {
        .scroll-indicator {
            bottom: calc(20vh + env(safe-area-inset-bottom));
        }
    }
}

/* Reset base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #f5f5f5;
    padding: 0;
    margin: 0;
    width: 100%;
}

body.content-loaded {
    opacity: 1;
}

/* Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.page-loader.fade-out {
    opacity: 0;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: pulse 1s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FF4500;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Classe Hidden */
.hidden {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: #fff;
    transition: transform 0.3s ease;
}

/* Logo */
.logo {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 20px;
}

.logo.visible {
    opacity: 1;
}

.logo img {
    height: 50px;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.desktop-menu a {
    color: #015670;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #015670;
    transition: width 0.3s ease;
}

.desktop-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #015670;
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 80px 20px;
    z-index: 1000;
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    padding: 15px 0;
    text-align: center;
}

/* Central Content */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.main-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #015670;
}

.main-title .highlight {
    color: #FF9900;
}

.countdown-title .highlight {
    color: #FF9900;
}

/* Parallax Container */
.parallax-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%; /* Più alto del container per l'effetto parallax */
    background-image: url('./images/Background.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.parallax-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .parallax-container {
        height: 100vh;
        width: 100vw;
    }
    
    .parallax-container video {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
    }
}

.parallax-container .background {
    display: none;
}

.trapezoid-top {
    position: absolute;
    top: -10vh;
    left: -20vw;
    width: 1200px;
    height: 300px;
    background-color: #FF4500;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
    transform: rotate(-5deg);
    opacity: 0.8;
    z-index: 1;
    position: relative;
}

.trapezoid-bottom {
    position: absolute;
    bottom: -10vh;
    right: -20vw;
    width: 1200px;
    height: 350px;
    background-color: #015670;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
    transform: rotate(5deg);
    opacity: 0.8;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-info {
    color: white;
    font-family: 'Dreamy Notes Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    transform: rotate(-5deg) translateY(-20px);
    padding: 0 20px;
    position: relative;
    left: -50px;
}

@media (max-width: 768px) {
    .event-info {
        display: none;
    }

    .trapezoid-top {
        width: 150%;
        right: -20%;
        padding-left: 40px;
        height: 280px;
    }

    .trapezoid-bottom {
        width: 100%;
        right: -3%;
        margin: 0;
        padding: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    }
}

.svg-container {
    position: absolute;
    top: 8%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.svg-container svg {
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

.svg-container path {
    fill: none;
    stroke: #FF4500;
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.7;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s forwards;
    animation-timing-function: ease-in-out;
}

@media (max-width: 768px) {
    .svg-container {
        left: -15%;
    }

    .svg-container svg {
        width: 100%;
        height: 100%;
        transform: scale(1.3);
    }

    .svg-container path {
        stroke-width: 10;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.features-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.features-text {
    flex: 1;
    padding: 20px;
    text-align: justify;
}

.features-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #015670;
    text-align: left;
}

.features-text p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    border: 2px solid #015670;
    box-shadow: 5px 5px 0 #94b6ff;
    padding: 20px;
    background-color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: justify;
}

.feature-box:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #7597f6;
}

.feature-box h3 {
    font-size: 1.2rem;
    color: #015670;
    margin-bottom: 10px;
    text-align: left;
}

.feature-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Countdown Section */
.countdown-section {
    padding: 100px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.countdown-title {
    font-size: 3rem;
    font-weight: 700;
    color: #015670;
    margin-bottom: 50px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    position: relative;
    width: 120px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-circle {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.countdown-circle circle {
    fill: none;
    stroke-width: 8;
}

.countdown-circle .bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.countdown-circle .progress {
    stroke: #FF9900;
    transition: stroke-dashoffset 0.5s ease;
}

.countdown-value {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 700;
    color: #015670;
}

.countdown-item p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #015670;
}

/* Agenda Section */
.agenda-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

.agenda-title {
    font-size: 3rem;
    font-weight: 700;
    color: #015670;
    margin-bottom: 20px;
    position: relative;
}

.agenda-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF4500;
    margin: 10px auto 0;
}

.agenda-dates {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.agenda-date {
    background-color: transparent;
    border: 2px solid #015670;
    padding: 10px 20px;
    font-size: 16px;
    color: #015670;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 5px 5px 0 #94b6ff;
}

.agenda-date:hover,
.agenda-date.active {
    background-color: #015670;
    color: #fff;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #7597f6;
}

.agenda-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.agenda-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.agenda-time {
    background: #ff6150;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agenda-details {
    padding: 20px;
    background: white;
    flex-grow: 1;
}

.agenda-details h3 {
    color: #015670;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.agenda-details p {
    display: inline-block;
    padding: 5px 12px;
    background: #015670;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .agenda-item {
        flex-direction: column;
    }
    
    .agenda-time {
        width: 100%;
        padding: 15px;
    }
}

/* Speaker Section */
.speaker-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.speaker-title {
    font-size: 3rem;
    font-weight: 700;
    color: #015670;
    margin-bottom: 20px;
    position: relative;
}

.speaker-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF4500;
    margin: 10px auto 0;
}

.speakers-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.carousel-button {
    display: none;
}

@media (max-width: 768px) {
    .speakers-container {
        position: relative;
        padding: 0 50px;  
        overflow: hidden;
    }

    .speakers-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        -ms-overflow-style: none;  
        scrollbar-width: none;  
        gap: 0;
    }

    /* Hide scrollbar */
    .speakers-grid::-webkit-scrollbar {
        display: none;
    }

    .speaker-card {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .carousel-button {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 69, 0, 0.9);
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 2;
        align-items: center;
        justify-content: center;
    }

    .prev-button {
        left: 10px;  
    }

    .next-button {
        right: 10px;  
    }

    .carousel-button::before {
        content: '';
        width: 10px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        display: inline-block;
    }

    .prev-button::before {
        transform: rotate(135deg);
        margin-left: 5px;
    }

    .next-button::before {
        transform: rotate(-45deg);
        margin-right: 5px;
    }
}

.speaker-card {
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #FF4500;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #015670;
    padding: 3px;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-info {
    width: 100%;
}

.speaker-name {
    color: #015670;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.speaker-role {
    color: #FF4500;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.speaker-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.speaker-social a {
    color: #015670;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.speaker-social a:hover {
    color: #FF4500;
}

.speaker-skills {
    display: none;
}

.speaker-description {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 15px 0;
    height: 60px;
    overflow: hidden;
}

.view-profile-btn {
    background: #015670;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.view-profile-btn:hover {
    background: #FF4500;
    transform: translateY(-2px);
}

/* Speakers Carousel Styles */
.speakers-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(1, 86, 112, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(1, 86, 112, 1);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

@media (max-width: 768px) {
    .speakers-carousel-container {
        overflow: hidden;
    }

    .speakers-grid {
        display: flex;
        scroll-snap-type: x mandatory;
        overflow-x: scroll;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
    }

    .speaker-card {
        flex: 0 0 90%;
        margin: 0 5%;
        scroll-snap-align: center;
    }

    .carousel-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hide scrollbar */
    .speakers-grid::-webkit-scrollbar {
        display: none;
    }
    
    .speakers-grid {
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

/* Freelance Badge */
.freelance-badge {
    background: #2ecc71;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Media Queries for Speaker Section */
@media (max-width: 1024px) {
    .speaker-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .speaker-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .speaker-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .speaker-title {
        font-size: 2rem;
    }
    
    .speaker-card {
        padding: 15px;
    }
}

/* Speaker Cards Navigation */
.speaker-nav-prev,
.speaker-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #015670;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(1, 86, 112, 0.2);
}

.speaker-nav-prev {
    left: -20px;
}

.speaker-nav-next {
    right: -20px;
}

.speaker-nav-prev:hover,
.speaker-nav-next:hover {
    background-color: #013e50;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(1, 86, 112, 0.3);
}

.speaker-nav-prev i,
.speaker-nav-next i {
    color: white;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .speaker-nav-prev,
    .speaker-nav-next {
        width: 35px;
        height: 35px;
    }

    .speaker-nav-prev {
        left: -15px;
    }

    .speaker-nav-next {
        right: -15px;
    }

    .speaker-nav-prev i,
    .speaker-nav-next i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .speaker-nav-prev,
    .speaker-nav-next {
        width: 30px;
        height: 30px;
    }

    .speaker-nav-prev {
        left: -10px;
    }

    .speaker-nav-next {
        right: -10px;
    }
}

/* Location Section */
.location-section {
    position: relative;
    overflow: hidden;
    background-color: white;
}

.location-section .container {
    display: flex;
    align-items: stretch;
    background-color: #ff6150; /* Colore di sfondo per la sezione di testo */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.image-section {
    flex: 0 0 auto; /* Impedisce all'immagine di espandersi troppo */
    position: relative;
    overflow: hidden;
    max-width: 50%; /* Limita la larghezza dell'immagine al 50% del contenitore */
}

.image-section img {
    width: 100%;
    height: auto; /* Mantiene il rapporto d'aspetto dell'immagine */
    object-fit: cover;
    /*filter: brightness(0.8) hue-rotate(220deg);*/
}

.text-section {
    flex: 1;
    color: white;
    padding: 80px 40px;
    text-align: left;
    background-color: #ff6150;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-section h1 span {
    color: #0047FF; /* Accento blu */
    font-weight: bold;
}

.text-section p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.text-section a {
    color: #0047FF; /* Accento blu */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
}

.text-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .location-section {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    .location-section .container {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        clip-path: none;
    }

    .image-section {
        width: 100%;
        height: 300px;
        margin: 0;
        padding: 0;
        overflow: hidden;
        position: static;
    }

    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .text-section {
        width: 100%;
        padding: 40px 20px;
        margin: 0;
        background-color: #ff6150;
        color: white;
        position: static;
        display: block;
    }

    .location-section iframe {
        width: 100% !important;
        height: 300px !important;
        margin: 0;
        padding: 0;
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .location-section {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        left: -15px;
        box-sizing: border-box;
    }

    .location-section * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    .location-section .container {
        flex-direction: column;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        clip-path: none;
    }

    .image-section {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }

    .text-section {
        width: 100vw;
        max-width: 100vw;
        padding: 40px 20px;
        margin: 0;
    }

    .location-section iframe {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0;
        padding: 0;
    }
}

/* Partners Section */
.partners-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}

.partners-title {
    font-size: 3rem;
    font-weight: 700;
    color: #015670;
    margin-bottom: 40px;
    position: relative;
}

.partners-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF4500;
    margin: 10px auto 0;
}

.partner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.partner-logo {
    max-width: 300px;
    height: 120px;
    padding: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partners-title {
        font-size: 2.5rem;
    }
    
    .partner-logo {
        max-width: 250px;
    }
}

/* Responsive styles for partners section */
@media (max-width: 768px) {
    .partner-logo {
        flex: 0 0 150px;
        padding: 0 15px;
    }
    
    .partners-track {
        width: calc(150px * 10);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 5));
        }
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 2rem;
    }
    
    .partner-logo {
        flex: 0 0 120px;
        padding: 0 10px;
    }
    
    .partners-track {
        width: calc(120px * 10);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 5));
        }
    }
}

/* Navigation Links */
.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    color: #015670;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #FF9900;
}

/* Footer */
.footer {
    background-color: #015670;
    color: #fff;
    padding: 30px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    padding: 0 10px;
    box-sizing: border-box;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-info {
    text-align: center;
    max-width: 800px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-info a {
    color: white;
    text-decoration: none;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.footer-social img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 20px 15px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-logo {
        width: 35px;
    }
    
    .footer-info p {
        font-size: 0.75rem;
        margin: 4px 0;
    }
    
    .footer-social {
        width: 15px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 15px 10px;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    .footer-logo {
        width: 25px;
    }
    
    .footer-info p {
        font-size: 0.65rem;
        margin: 3px 0;
    }
    
    .footer-social {
        width: 12px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.modal.show {
    display: block;
}

.modal-content {
    background: white;
    margin: 8% auto;
    padding: 25px;
    width: 90%;
    max-width: 550px;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-modal {
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-modal:hover {
    color: #015670;
    transform: scale(1.2);
}

.modal-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.modal-header img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 25px;
    border: 3px solid #015670;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-header-text h2 {
    margin: 0;
    color: #015670;
    font-size: 1.6rem;
    font-weight: 600;
}

.modal-header-text p {
    margin: 8px 0 0;
    color: #666;
    font-size: 1.1rem;
}

.modal-body {
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
    padding: 0 5px;
    max-height: 50vh;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #015670;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #013e50;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 15% auto;
        padding: 20px;
    }

    .modal-header {
        padding-bottom: 12px;
    }

    .modal-header img {
        width: 70px;
        height: 70px;
        margin-right: 20px;
        border-width: 2px;
    }

    .modal-header-text h2 {
        font-size: 1.4rem;
    }

    .modal-header-text p {
        font-size: 1rem;
    }

    .modal-body {
        font-size: 1rem;
        line-height: 1.6;
        max-height: 45vh;
        padding-right: 10px;
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    text-align: center;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-popup p {
    margin-bottom: 15px;
    color: #333;
    font-size: 0.9rem;
}

.cookie-popup .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-popup button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-popup .accept-btn {
    background-color: #015670;
    color: white;
}

.cookie-popup .accept-btn:hover {
    background-color: #013e50;
}

.cookie-popup .decline-btn {
    background-color: #f0f0f0;
    color: #333;
}

.cookie-popup .decline-btn:hover {
    background-color: #e0e0e0;
}

/* Privacy Policy Page */
.privacy-policy-content {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy-content h1 {
    color: #015670;
    margin-bottom: 30px;
}

.privacy-policy-content section {
    margin-bottom: 40px;
}

.privacy-policy-content h2 {
    color: #015670;
    margin-bottom: 20px;
}

.privacy-policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-policy-content li {
    margin-bottom: 10px;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Effetti Parallax */
[data-speed] {
    will-change: transform;
}

/* Media Queries */

/* Tablet */
@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .features-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-title {
        font-size: 10rem;
        text-align: left;
    }

    .header {
        height: 80px;
    }

    .logo img {
        height: 70px;
    }

    .custom-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .location-section .container {
        flex-direction: column;
        clip-path: none;
    }

    .image-section {
        max-width: 100%; /* L'immagine occupa tutta la larghezza */
    }

    .text-section {
        padding: 40px 20px;
        text-align: center;
    }

    .text-section h1 {
        font-size: 2.5rem;
    }

    .text-section p,
    .text-section a {
        font-size: 1rem;
    }

    .countdown-section {
        padding: 60px 15px;
    }

    .countdown-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    #countdown {
        gap: 30px;
    }

    .countdown-item {
        width: 130px;
        height: 180px;
    }

    .countdown-circle {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .countdown-circle .bg,
    .countdown-circle .progress {
        stroke-width: 8;
    }

    .countdown-value {
        font-size: 2.2rem;
    }

    .countdown-item p {
        font-size: 1.1rem;
    }

    .agenda-content {
        width: 100%;
    }

    .agenda-item {
        flex-direction: column;
    }

    .agenda-time {
        width: auto;
        margin-bottom: 10px;
    }

    .text-section h1 {
        font-size: 2rem;
    }

    .text-section p,
    .text-section a {
        font-size: 0.9rem;
    }

    .image-section {
        height: auto;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-box {
        width: 150px;
        height: auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .center-content {
        padding: 0 20px;
        text-align: left;
    }

    .main-title {
        margin-top: 30%;
        font-size: 4.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .countdown-section {
        padding: 50px 10px;
    }

    .countdown-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    #countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .countdown-item {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .countdown-item:nth-child(1) { order: 1; } /* Giorni */
    .countdown-item:nth-child(2) { order: 2; } /* Ore */
    .countdown-item:nth-child(3) { order: 3; } /* Minuti */
    .countdown-item:nth-child(4) { order: 4; } /* Secondi */

    .countdown-circle {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .countdown-circle .bg,
    .countdown-circle .progress {
        stroke-width: 8;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-item p {
        font-size: 1rem;
    }

    .agenda-content {
        width: 100%;
    }

    .agenda-item {
        flex-direction: column;
    }

    .agenda-time {
        width: auto;
        margin-bottom: 10px;
    }

    .text-section h1 {
        font-size: 2rem;
    }

    .text-section p,
    .text-section a {
        font-size: 0.9rem;
    }

    .image-section {
        height: auto;
    }

    .partners-grid {
        flex-direction: column;
        align-items: center;
    }

    .partner-box {
        width: 80%;
        height: auto;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-social img {
        width: 25px;
        height: 25px;
    }

    .header {
        justify-content: center;
        padding: 10px 20px;
    }

    .logo {
        position: absolute;
        left: 15px;
    }

    .logo img {
        height: 35px;  /* Dimensione ridotta per mobile */
    }

    .mobile-menu-btn {
        position: absolute;
        right: 20px;
    }

    .header {
        transform: translateY(-100%);
    }

    .header.scrolled {
        transform: translateY(0);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-title {
        margin-top: 30%;
        font-size: 4.5rem;
    }

    .features-text h2 {
        font-size: 1.5rem;
    }

    .features-text p,
    .feature-box p {
        font-size: 0.9rem;
    }

    .feature-box h3 {
        font-size: 1rem;
    }

    .countdown-section {
        padding: 40px 5px;
    }

    .countdown-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    #countdown {
        gap: 15px;
        max-width: 300px;
    }

    .countdown-circle {
        width: 100px;
        height: 100px;
    }

    .countdown-circle .bg,
    .countdown-circle .progress {
        stroke-width: 6;
    }

    .countdown-value {
        font-size: 1.6rem;
    }

    .countdown-item p {
        font-size: 0.9rem;
        margin-top: 5px;
    }

    .agenda-title {
        font-size: 2rem;
    }

    .agenda-date {
        padding: 8px 12px;
        font-size: 14px;
    }

    .agenda-time,
    .agenda-details h3 {
        font-size: 1rem;
    }

    .text-section h1 {
        font-size: 1.8rem;
    }

    .text-section p,
    .text-section a {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .background {
        object-position: right center;
    }
}

/* Assicurarsi che la parallax-container abbia sempre l'altezza della viewport */
.parallax-container {
    height: 100vh;
}

/* Assicurarsi che le immagini parallax nella sezione agenda siano visibili */
.agenda-parallax-image {
    display: block;
}

/* Info Button */
.info-btn {
    background: #015670;
    color: white;
    padding: 8px 25px;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
}

.info-btn:hover {
    background: #FF4500;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .event-info {
        font-size: 1.5rem;
        transform: none;
        left: 20px;
        top: 180px;
        position: absolute;
        z-index: 5;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .features-section,
    .speaker-section,
    .agenda-section,
    .location-section {
        padding: 40px 20px;
        width: 100%;
    }

    .features-container,
    .speakers-carousel-container,
    .agenda-content,
    .location-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    h2, h3, p {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .speaker-description,
    .agenda-description,
    .location-description {
        padding: 0 10px;
        margin: 15px auto;
        max-width: 90%;
        text-align: justify;
    }
}

@media (max-width: 768px) {
    .features-section p {
        text-align: justify;
    }
    
    .features-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 20px 0;
    }
    
    .features-section p {
        padding: 0;
        margin: 0;
    }
    
    .features-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .feature-box {
        padding: 15px;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .features-section p {
        text-align: justify;
        padding: 0;
        margin: 0;
    }
    
    .features-container {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        padding: 15px;
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 20px 0;
    }
    
    .features-section h2 {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .features-section > p {
        text-align: justify;
        padding: 0 15px;
        margin: 0 0 20px 0;
    }
    
    .features-container {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
    }

    .feature-box {
        padding: 15px;
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-text {
        padding: 0;
        margin: 0 15px 20px 15px;
        transform: translateY(0) !important;
    }
    
    .features-text[data-speed] {
        transform: none !important;
    }

    .features-section {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .location-section {
        width: 100vw;
        margin: 0;
        position: relative;
        left: 0;
    }

    .location-section .container {
        flex-direction: column;
        width: 100vw;
        margin: 0;
        padding: 0;
        clip-path: none;
    }

    .image-section {
        max-width: 100%;
        width: 100vw;
        margin: 0;
        padding: 0;
    }

    .text-section {
        width: 100vw;
        padding: 40px 20px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .location-section {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        min-height: 500px;
    }

    .location-section .container {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        clip-path: none;
    }

    .image-section {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text-section {
        width: 100%;
        padding: 20px;
        background-color: #ff6150;
        color: white;
    }

    .location-section iframe {
        width: 100% !important;
        height: 200px !important;
    }

    .partners-section {
        margin-top: 500px;
        position: relative;
        z-index: 1;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .trapezoid-bottom {
        width: 100%;
        right: -3%;
        margin: 0;
        padding: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    }
}

@media (max-width: 768px) {
    .parallax-container .background {
        content: url('images/Sfondo_Nuovo_mobile_Bianco.webp');
        width: 130%;
        height: 130%;
        left: 0;
        top: -8%;
    }
}

.ragazza-image {
    position: absolute;
    bottom: 0;
    left: 3vw;
    height: 60vh;
    width: auto;
    z-index: 1;
    transition: all 0.3s ease;
    content: url('./images/Ragazza.png');
}

@media (max-width: 1440px) {
    .ragazza-image {
        height: 59.8vh;
        left: 2.5vw;
    }
}

@media (max-width: 1200px) {
    .ragazza-image {
        height: 59.6vh;
        left: 2vw;
    }
}

@media (max-width: 992px) {
    .ragazza-image {
        height: 59.4vh;
        left: 1.5vw;
    }
}

@media (max-width: 768px) {
    .ragazza-image {
        height: auto;
        width: 130vw;
        max-height: 90vh;
        left: 0;
        transform: none;
        bottom: 0;
        object-fit: contain;
        object-position: bottom left;
        content: url('./images/Ragazza2.png');
    }
}

@media (max-width: 650px) {
    .ragazza-image {
        width: 135vw;
        max-height: 87vh;
    }
}

@media (max-width: 576px) {
    .ragazza-image {
        width: 140vw;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .ragazza-image {
        width: 150vw;
        max-height: 80vh;
    }
}

@media (max-width: 380px) {
    .ragazza-image {
        width: 160vw;
        max-height: 75vh;
    }
}

.l1-image {
    position: absolute;
    top: 15vh;
    left: 3vw;
    height: 7vh;
    width: auto;
    z-index: 2;
    transition: all 0.3s ease;
}

@media (max-width: 1440px) {
    .l1-image {
        height: 6vh;
        top: 14vh;
        left: 2.5vw;
    }
}

@media (max-width: 1200px) {
    .l1-image {
        height: 5vh;
        top: 13vh;
        left: 2vw;
    }
}

@media (max-width: 992px) {
    .l1-image {
        height: 4vh;
        top: 12vh;
        left: 1.5vw;
    }
}

@media (max-width: 768px) {
    .l1-image {
        height: 4vh;
        width: auto;
        top: 5vh;
        left: 5vw;
        z-index: 2;
    }

    .l2-image {
        height: 4vh;
        width: auto;
        top: 5vh;
        right: 5vw;
        z-index: 2;
    }
}

@media (max-width: 576px) {
    .l1-image {
        height: 3.5vh;
        top: 4vh;
        left: 4vw;
    }

    .l2-image {
        height: 3.5vh;
        top: 4vh;
        right: 4vw;
    }
}

@media (max-width: 480px) {
    .l1-image {
        height: 3vh;
        top: 3vh;
        left: 3vw;
    }

    .l2-image {
        height: 3vh;
        top: 3vh;
        right: 3vw;
    }
}

.testo-image {
    position: absolute;
    top: 25vh;
    left: 10vw;
    height: 25vh;
    width: auto;
    z-index: 2;
    transition: all 0.3s ease;
}

@media (max-width: 1440px) {
    .testo-image {
        height: 23vh;
        top: 22vh;
        left: 8vw;
    }
}

@media (max-width: 1200px) {
    .testo-image {
        height: 21vh;
        top: 20vh;
        left: 6vw;
    }
}

@media (max-width: 992px) {
    .testo-image {
        height: 19vh;
        top: 18vh;
        left: 4vw;
    }
}

@media (max-width: 768px) {
    .testo-image {
        height: 15vh;
        width: auto;
        top: 15vh;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
}

@media (max-width: 650px) {
    .testo-image {
        height: 13vh;
        top: 12vh;
    }
}

@media (max-width: 480px) {
    .testo-image {
        height: 11vh;
        top: 10vh;
    }
}

@media (max-width: 380px) {
    .testo-image {
        height: 10vh;
        top: 8vh;
    }
}

.l2-image {
    position: absolute;
    top: 15vh;
    right: 3vw;
    height: 7vh;
    width: auto;
    z-index: 2;
    transition: all 0.3s ease;
}

@media (max-width: 1440px) {
    .l2-image {
        height: 6vh;
        top: 14vh;
        right: 2.5vw;
    }
}

@media (max-width: 1200px) {
    .l2-image {
        height: 5vh;
        top: 13vh;
        right: 2vw;
    }
}

@media (max-width: 992px) {
    .l2-image {
        height: 4vh;
        top: 12vh;
        right: 1.5vw;
    }
}

@media (max-width: 768px) {
    .l2-image {
        height: 4vh;
        width: auto;
        top: 5vh;
        right: 5vw;
        z-index: 2;
    }
}

@media (max-width: 576px) {
    .l2-image {
        height: 3.5vh;
        top: 4vh;
        right: 4vw;
    }
}

@media (max-width: 480px) {
    .l2-image {
        height: 3vh;
        top: 3vh;
        right: 3vw;
    }
}

.testo2-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8vw;
    height: 22vh;
    width: auto;
    z-index: 2;
    transition: all 0.3s ease;
}

@media (max-width: 1440px) {
    .testo2-image {
        height: 20vh;
        right: 7vw;
    }
}

@media (max-width: 1200px) {
    .testo2-image {
        height: 18vh;
        right: 6vw;
    }
}

@media (max-width: 992px) {
    .testo2-image {
        height: 16vh;
        right: 5vw;
    }
}

@media (max-width: 768px) {
    .testo2-image {
        height: 14vh;
        right: 3vw;
    }
}

@media (max-width: 576px) {
    .testo2-image {
        height: 12vh;
        right: 2vw;
    }
}

@media (max-width: 480px) {
    .testo2-image {
        height: 10vh;
        right: 1vw;
    }
}

.testo3-image {
    position: absolute;
    bottom: 8vh;
    right: 8vw;
    height: 12vh;
    width: auto;
    z-index: 2;
    transition: all 0.3s ease;
}

@media (max-width: 1440px) {
    .testo3-image {
        height: 11vh;
        bottom: 7vh;
        right: 7vw;
    }
}

@media (max-width: 1200px) {
    .testo3-image {
        height: 10vh;
        bottom: 6vh;
        right: 6vw;
    }
}

@media (max-width: 992px) {
    .testo3-image {
        height: 9vh;
        bottom: 5vh;
        right: 5vw;
    }
}

@media (max-width: 768px) {
    .testo2-image {
        height: 15vh;
        width: auto;
        top: 45vh;
        right: 50%;
        transform: translateX(50%);
        z-index: 2;
    }

    .testo3-image {
        height: 8vh;
        width: auto;
        bottom: 35vh;
        right: 50%;
        transform: translateX(50%);
        z-index: 2;
    }
}

@media (max-width: 650px) {
    .testo2-image {
        height: 13vh;
        top: 48vh;
    }

    .testo3-image {
        height: 7vh;
        bottom: 32vh;
    }
}

@media (max-width: 480px) {
    .testo2-image {
        height: 11vh;
        top: 50vh;
    }

    .testo3-image {
        height: 6vh;
        bottom: 30vh;
    }
}

@media (max-width: 380px) {
    .testo2-image {
        height: 10vh;
        top: 52vh;
    }

    .testo3-image {
        height: 5vh;
        bottom: 28vh;
    }
}

/* Ticket Pass Section */
.ticket-pass-section {
    background-color: white;
    padding: 0 20px;
    margin-top: -1px;
    position: relative;
}

.ticket-pass-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 86, 112, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.ticket-pass-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 0 40px 0;
    position: relative;
}

.ticket-pass-content {
    flex: 1;
    text-align: left;
}

.ticket-pass-title {
    font-size: 3rem;
    color: #015670;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.ticket-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.ticket-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.ticket-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #015670;
}

.ticket-feature i {
    font-size: 1.2rem;
}

.ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #015670;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 86, 112, 0.2);
}

.ticket-button:hover {
    background-color: #013e50;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 86, 112, 0.3);
}

.ticket-button i {
    transition: transform 0.3s ease;
}

.ticket-button:hover i {
    transform: translateX(5px);
}

.ticket-pass-image {
    flex: 1;
    text-align: center;
}

.ticket-pass-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .ticket-pass-container {
        flex-direction: column;
        padding: 0 0 30px 0;
    }
    
    .ticket-pass-content {
        order: 2;
        text-align: center;
    }

    .ticket-pass-image {
        order: 1;
    }

    .ticket-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .ticket-pass-content {
        text-align: center;
    }
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-image: url('./images/Background.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .background-image {
        height: 105%;
        background-position: left center;
        width: 150%;
        left: 0;
    }
}

@media (max-width: 576px) {
    .background-image {
        width: 180%;
        background-position: left center;
    }
}

@media (max-width: 480px) {
    .background-image {
        width: 200%;
        background-position: left center;
    }
}
