
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    overflow-x: hidden;
    height: 200vh;
}

.container {
    position: relative;
    z-index: 1;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.cubes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 200vh; 
    display: flex;
    flex-wrap: wrap;
    z-index: 0;
}

.cube {
    width: 43px;
    height: 43px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 1.5s ease;
    opacity: 0.9;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3), transparent 40%),
                radial-gradient(circle, rgba(255, 0, 0, 0.6), transparent 60%);
    background-size: 100% 100%;
    animation: wave 2s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

.cube:nth-child(odd) {
    animation: rotateCube 5s infinite;
}

@keyframes rotateCube {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}


.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-link {
    color: #fff;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    color: #ff3c41;
}

#parallax-wrapper {
    position: relative;
    top: -10vw;
    left: 10vw;
    width: 64vw;
    height: 64vw;
    overflow: hidden;
    perspective: 1px;
    filter: brightness(80%);
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.491);
    border: 2vh rgba(255, 255, 255, 0.116);
    border-radius: 1vh;
}

.layer-back {
    z-index: 1;
    transform: translateY(0vh);
    transition: transform 0.1s ease-out;
}

/* Hero section */
.hero-section {
    height: 100vh;
    width: 100vw;
    background-image: url('assets/parallax_section_3.png');
    filter: brightness(80%);
    filter: opacity(0.8);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 100;
    border-radius: 2vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.189);
    border-radius: 5vw;
}

.countdown {
    font-size: 2rem;
    margin-top: 20px;
}

#countdown span {
    font-size: 3rem;
    font-weight: bold;
    color: #ff3c41;
}

/* Basic image styles */
.event-content img {
    width: 60%;
    margin-bottom: 15px;
    border: 1vh solid rgba(255, 255, 255, 0.267);
    border-radius: 25% 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.356);
    filter: blur(0.25px);
    transition: 1s;
    transform-style: preserve-3d; /* Enable 3D rotation */
}

.event-content img:hover {
    filter: none;
    transform: scale(1.1);
    border-radius: 5vh;
    transition: 1s;
}

/* Flip animation */
.flip-image {
    transition: transform 1s ease-in-out; /* Smooth flip */
    transform-origin: center; /* Flip from center */
}

/* Flip effect on click */
.flip-image.flip {
    transform: rotateY(90deg); /* Rotate by 180 degrees */
}

/* Hides elements */
.d-none {
    display: none;
}

/* Agenda Section */
.agenda-section {
    background-color: #1212124c;
    color: white;
}

.agenda-timeline {
    position: relative;
    padding-left: 40px; 
    margin-top: 20px;
}

.agenda-item {
    display: flex;
    align-items: center;
    margin-bottom: 5vh; 
    position: relative;
    transition: 1s;
}

.agenda-time {
    flex-shrink: 0;
    text-align: center;
    background-color: #fc11199e;
    padding: 18px;
    border-radius: 50%;
    font-size: 0.9rem; 
    font-weight: bold;
    color: white;
    z-index: 1;
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.7);
    margin: 1vh 0;
}

.agenda-content {
    background-color: #ffffff2d;
    padding: 15px; 
    border-radius: 8px;
    width: 100%;
    position: relative;
    margin-left: 25px; 
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 1s ease;
}

.agenda-item::before {
    content: "";
    position: absolute;
    left: 95px; 
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ff3c41;
}

.agenda-content h5 {
    font-size: 1.2rem; 
    margin-bottom: 8px;
}

.agenda-content p {
    font-size: 0.9rem; 
    margin-bottom: 0;
}

.agenda-item:hover .agenda-content {
    background-color: #333;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.066);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transform: translateY(-5px);
    transition: 1s;
}

/* passes */

#passes {
    color: white;
    padding: 50px 0;
    position: relative;
  }
  
  .rows{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

  h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ff3b3b;
    letter-spacing: 2px;
  }
  
.day1{
    background-color: rgba(255, 255, 255, 0.1);
}

  .pass-card {
    background-image: url(assets/day\ 1.jpg);
    background-size: cover;
    opacity: 0.9;
    padding: 30px;
    border-radius: 15px;
    transition: all 1s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 80vh;
    width: 15vw;
    overflow: auto;
  }
  
  .pass-card h3 {
    margin-bottom: 20px;
    opacity: 0;
    font-size: 28px;
    text-transform: uppercase;
    color: #ff3b3b;
    transition: color 0.4s ease;
  }
  
  .pass-card p {
    opacity: 0;
    margin: 10px 0;
    font-size: 18px;
  }
  
  .price {
    opacity: 0;
    font-size: 22px;
    font-weight: bold;
    color: #ff3b3b;
    margin-bottom: 10px;
  }

    .pass-card h3:hover , .pass-card p:hover, .price:hover {
        opacity: 0;
    }
  
  .pass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 0, 0, 0.5), transparent);
    transition: all 1s ease;
  }
  
  .pass-card:hover::before {
    left: 100%;
  }
  
  .pass-card:hover {
    background-color: rgba(255, 255, 255, 0.066);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transform: translateY(-10px);
    transition: 1s;
    opacity: 1;
  }
  
  .pass-card:hover h3, .pass-card:hover .price {
    color: white;
  }

  /* Footer Styling */
.footer {
    background-color: #111;
    color: #fff;
}

.footer h5 {
    color: #ff3c41;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer p, .footer ul {
    font-size: 0.9rem;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer .social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.9rem;
    margin: 0;
}

.footer .social-icons a:hover {
    filter: drop-shadow( 0 0 10px #ff3c41);
}

/* Preloader wrapper */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Spinner (circle) */
.preloader .spinner {
    position: relative;
    width: 80px;
    height: 80px;
    border: 5px solid rgba(255, 0, 0, 0.3);
    border-top: 5px solid rgba(255, 0, 0, 1);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin-bottom: 20px;
}

/* Inner glow effect */
.preloader .spinner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 5px solid rgba(255, 0, 0, 0.5);
    animation: pulsate 1.5s ease-in-out infinite;
}

/* Counter styling */
.preloader .counter {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

/* Spin animation for the circle */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Pulsating inner circle animation */
@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hides the preloader when the page is loaded */
.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        background-position: top;
        opacity: 1;
    }

    #parallax-wrapper{
        height: 80vh;
        width: 100vw;
        background-position: top;
        opacity: 1;
    }

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

    .hero-section p {
        font-size: 1.2rem;
    }

    .countdown {
        font-size: 1.5rem;
    }

    #countdown span {
        font-size: 2rem;
    }
    
    .agenda-timeline {
        padding-left: 20px;
    }

    .agenda-item {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .agenda-item::before {
        left: 40px;
    }

    .pass-card {
        height: 60vh;
        width: 60vw;
        margin-left: 13vw;
      }

      #parallax-wrapper {
        position: relative;
        top: -35vh;
        left: -3vw;
        width: 100vw;
        height: 250vh;
        overflow: hidden;
        perspective: 1px;
        filter: brightness(80%);
        box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.491);
        border: 2vh rgba(255, 255, 255, 0.116);
        border-radius: 1vh;
    }
    
    .layer-back {
        z-index: 1;
        transform: translateY(0vh);
        transition: transform 0.1s ease-out;
    }
}
