/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* The navigation bar */
.navbar {
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: right;
    font-weight: 500;
    display: block;
    color: #f9f9f9;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change background on mouse-over */
  .navbar a:hover {
    background: #f9f9f9;
    color: black;
  }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    font-weight: 300;
    background-color: #1b1b1b; /* set #f9f9f9 when not interim */
    color: #333;
}

.interim {
    margin-top: 200px;
    margin-bottom: 200px;
    background-color:#1b1b1b;
    text-align: center;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 5s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
}

/* filter */
.white { filter:invert(100%)}

/* Container */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #1b1b1b;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header p.intro {
    font-size: 1.2rem;
    font-weight: 200;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ccc;
}

/* Video Section */
.video-section {
    padding: 50px 0;
    background-color: #1b1b1b;
    color: #fff;
    text-align: center;
}

.video-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 50px;
}

.video-section p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 30px;
    margin: 0 auto;
    line-height: 1.8;
}

@keyframes fadein{
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.video-wrapper {
    max-width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation-name: fadein;
    animation-duration: 5s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
}

video {
    width: 100%;
    border-radius: 10px;

}

/* About Event Section */
.about-event {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.about-event h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
}

.about-event p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.event-details {
    margin-top: 30px;
}

.event-details p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery p {
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 40px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-images img:hover {
    transform: scale(1.05);
}

/* Tickets Section */
.tickets {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.tickets h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tickets p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-weight: 300;
}

.btn-ticket {
    background-color: #1b1b1b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}

.btn-ticket:hover {
    background-color: #444;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #1b1b1b;
    color: #ccc;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  