#bg-video, header {
  position: fixed;
  top: 0;
  width: 100%;
}

.buttons, nav ul {
  display: flex;
  gap: 20px;
  font-family: "Poppins";
}

.button, nav ul li a {
  text-decoration: none;
  color: #fff;
}

header, section {
  background-color: rgba(0, 0, 0, .7);
}

#about, #themes {
  padding: 80px 20px;
}

#themes, .main-content, .theme-box {
  text-align: center;
}

.button, .spark-text, .theme-box {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

#bg-video {
  object-fit: cover;
  left: 0;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
  z-index: -1;
}

#about, .about-image, .button, .main-content, .slider-container, .theme-box, nav ul li a {
  position: relative;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  z-index: 100;
}

.logo img {
  width: 150px;
}

nav ul {
  list-style-type: none;
}

nav ul li a {
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 5px;
}

nav ul li a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #61daff;
  animation: .3s ease-in-out underline;
}

@keyframes underline {
  0% { width: 0; }
  100% { width: 100%; }
}

.main-content {
  height: 100vh;
  color: #fff;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.text-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.text-overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.dates p {
  font-size: 1.5rem;
  font-weight: 700;
}

.buttons {
  justify-content: center;
}

.button {
  display: inline-block;
  font-size: 1rem;
  padding: 15px 30px;
  border: 2px solid transparent; /* fixed tiny typo */
  text-transform: uppercase;
}

.register, .sponsor {
  color: #fff;
  border-color: #fff;
  font-weight: 700;
  transition: .4s;
}

.register:hover, .sponsor:hover {
  color: #ff6f61;
  border-color: #ff6f61;
}

.register::after, .sponsor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #ff6f61;
  transition: .4s;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
}

.register:hover::after, .sponsor:hover::after {
  width: 0;
  height: 0;
}

section {
  padding: 50px;
  color: #fff;
  margin: 50px 0;
  border-radius: 10px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

section p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Mobile base adjustments (original) */
@media (max-width: 768px) {
  .logo img {
    width: 120px;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: #ff6f61;
    padding: 20px;
    border-radius: 10px;
  }
  nav ul li a {
    font-size: 18px;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle.active + #nav-list {
    display: flex;
  }
  .text-overlay h1 {
    font-size: 2rem;
  }
  .text-overlay p, section p {
    font-size: 1rem;
  }
  .dates p {
    font-size: 1.2rem;
  }
  .buttons {
    flex-direction: column;
  }
  .button {
    padding: 12px 25px;
  }
  section h2 {
    font-size: 1.5rem;
  }
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 200;
}

.menu-toggle .bar {
  width: 30px;
  height: 4px;
  margin: 5px 0;
  background-color: #fff;
  transition: .3s;
}

#about {
  background-color: rgba(201,195,195,.295);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ff6f61;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #a6f876;
  margin-bottom: 20px;
  text-align: justify;
}

.about-image {
  flex: 1;
  max-width: 300px;
  max-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  transition: transform .3s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.05);
}

#themes {
  background-color: rgba(201,195,195,.295);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.themes-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-box {
  background-color: #ffffffc7;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  transition: transform .3s, box-shadow .3s;
  max-width: 250px;
  width: 100%;
  margin: auto;
}

.slider-container {
  max-width: 700px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.slider {
  display: flex;
  transition: transform .5s ease-in-out;
}

.slider img {
  width: 100%;
  border-radius: 12px;
  flex-shrink: 0;
}

.next, .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
}

.about-box, .spark-text {
  background: rgba(0,0,0,.8);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  line-height: 1.6;
  font-size: 16px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.next:hover, .prev:hover {
  background: rgba(0,0,0,.8);
}

.about-box {
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  margin-top: 10px;
}

.spark-text {
  position: relative;
}

.spark-text p {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0, #ffef9f 20%, #ff6f61 40%, #fff 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: 4s linear infinite sparkAnim;
}

@keyframes sparkAnim {
  to {
    background-position: -200% center;
  }
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.theme-box i {
  font-size: 60px;
  color: #333;
  animation: 2s infinite pulse;
}

.theme-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

@keyframes glowing-border {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0,255,255,.5), 0 0 20px rgba(0,255,255,.3), 0 0 30px rgba(0,255,255,.2)
  }
  50% {
    box-shadow: 0 0 10px rgba(0,255,255,.8), 0 0 20px rgba(0,255,255,.6), 0 0 30px rgba(0,255,255,.4)
  }
}

.theme-box:hover {
  transform: translateY(-10px);
  animation: 1.5s ease-in-out infinite glowing-border;
}

.theme-box:hover i {
  animation: none;
}

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

/* Mobile responsive tweaks (original) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: rgba(0,0,0,.8);
    padding: 20px;
    border-radius: 10px;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li a {
    font-size: 18px;
  }
  .menu-toggle.active .bar:first-child {
    transform: rotate(45deg) translate(5px,5px);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
  }
  .about-container {
    flex-direction: column;
    align-items: center;
  }
  .about-text {
    text-align: center;
    max-width: 100%;
  }
  .about-image {
    max-width: 100%;
    margin-top: 20px;
  }
  .themes-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ---------- SMALL APPEND: mobile spacing safety-fixes (keeps original look + fixes touching on small screens) ---------- */

@media (max-width: 768px) {
  /* ensure breathing room between about text and image */
  .about-container {
    gap: 20px !important;
    padding-bottom: 10px;
  }
  .about-image {
    margin-top: 210px !important;
    max-width: 90% !important;
  }

  /* small slider / themes adjustments so nothing overflows on tiny screens */
  .slider-container {
    max-width: 95% !important;
    margin: 18px auto !important;
  }
  .themes-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .theme-box {
    max-width: 320px;
    width: 100%;
  }
}



















/* Navbar Base */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(10px); /* adds modern glass effect */
}

/* Nav List */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px; /* spacing between items */
  list-style: none;
  flex-wrap: wrap;
}

.nav-left li {
  display: flex;
  align-items: center;
}

/* Nav Links */
.nav-left li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 6px 10px;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

/* Hover underline animation */
.nav-left li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff6f61;
  transition: width 0.3s ease-in-out;
}

.nav-left li a:hover::after {
  width: 100%;
}

.nav-left li a:hover {
  color: #ff6f61;
  transform: translateY(-2px);
}

/* Logo Center */
.logo img {
  width: 140px;
  height: auto;
  margin: 0 40px; /* adds gap around logo */
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-left {
    display: none;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 25px;
    border-radius: 10px;
  }

  .nav-left.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    order: -1; /* logo stays on top in mobile */
    margin: 20px 0;
  }

  .logo img {
    width: 120px;
  }
}



/* Logo Text Style */
.logo-text a {
  font-family: 'Montserrat', sans-serif !important; /* modern geometric font */
  font-size: 26px !important ;          /* bigger than normal nav links */
  font-weight: 800;         /* extra bold */
  letter-spacing: 6px;      /* spaced out like in your screenshot */
  text-transform: uppercase;
  color: #48eff8 !important;              /* white text */
  transition: color 0.3s ease;
}

.logo-text a:hover {
  color: #61f2ff;           /* highlight on hover */
}


/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: rgba(0,0,0,0.7); /* black transparent box */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.5); /* answer box black transparent */
  color: #ddd;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough to show answer */
  padding: 15px 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg); /* turns + into × */
}


/* Contact Section */
#contact {
  background: rgba(0, 0, 0, 0.7); /* dark transparent background */
  padding: 60px 20px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0,0,0,0.5); /* semi-transparent black box */
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: left;
}

.contact-item i {
  font-size: 28px;
  color: #61f2ff; /* your theme blue */
  min-width: 40px;
  text-align: center;
}

.contact-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
  color: #ff6f61; /* theme accent */
}

.contact-item p, 
.contact-item a {
  font-size: 16px;
  color: #ddd;
  text-decoration: none;
}

.contact-item a:hover {
  color: #61f2ff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* Zoom In/Out Animation */
@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.zoom-text {
  display: inline-block;
  animation: zoomPulse 3s ease-in-out infinite;
}


