/* General Layout */
body {
  font-family: 'Nunito', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/Computer\ Network\ Internet\ GIF\ by\ Butlerm.gif') center center/cover no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}


/* Navbar */
.navbar {
  height: 56px;
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
}

.navbar-nav .nav-link {
  position: relative;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00FFF0;
  text-shadow: 0 0 2px #00FFF0, 0 0 4px #00FFF0, 0 0 6px rgba(0, 255, 240, 0.4);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #00FFF0;
  transition: width 0.3s ease-in-out;
  box-shadow: 0 0 4px #00FFF0;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.nav-logo {
  height: 80px;
  width: auto;
  margin-top: 30px;
  transition: transform 0.3s ease-in-out;
}

.nav-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 998px) {
  .nav-logo {
    margin-top: -10px;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.hero-img {
  height: 75vh;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 240, 0.3);
  transition: all 0.3s ease-in-out;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #00FFF0;
  font-family: 'Share Tech Mono', monospace;
  text-shadow: 0 0 4px rgba(0, 255, 240, 0.4);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-img {
    height: 50vh;
  }

  .hero-tagline {
    font-size: 1rem;
  }
}

.btn-primary {
  background-color: #00FFF0;
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #00e0d6;
  color: #000;
}

/* About Section */
.about-section {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(8px);
  padding: 5rem 0;
}

.about-section h2,
.about-section h4 {
  color: #00FFF0;
  font-family: 'Orbitron', sans-serif;
}

.about-section p,
.about-section li {
  color: #ffffff;
}
.carousel-item img {
  max-height: 500px;   /* adjust height as you like */
  width: auto;         /* don’t force full width */
  margin: 0 auto;      /* center horizontally */
  object-fit: contain; /* show full image without cropping */
}

.carousel-inner {
  height: 400px; /* or any fixed height you want */
}

.carousel-inner .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* Scales + crops the image to fill container */
  object-position: center;
}

@media (max-width: 768px) {
  .carousel-inner {
    height: 250px;
  }
}


/*Tiers section*/
.tier-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 3rem;
    }

  h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00FFF0;
  font-size: 2.5rem;
  text-align: center;

  margin-bottom: 2rem;
  z-index: 10;
  position: relative;
}

    .flip-card {
      background-color: transparent;
      width: 320px;
      height: 420px;
      perspective: 1000px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner,
    .flip-card.tapped .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border: 2px solid #00FFF0;
      border-radius: 15px;
      padding: 1rem;
      box-shadow: 0 0 15px rgba(0, 255, 240, 0.2);
    }

    .flip-card-front {
      background: rgba(0, 0, 0, 0.85);
      color: #00FFF0;
    }

    .flip-card-front h4 {
      font-family: 'Orbitron', sans-serif;
    }

    .flip-card-back {
      background: rgba(0, 0, 0, 0.9);
      transform: rotateY(180deg);
      color: #ccc;
      font-size: 0.9rem;
      overflow-y: auto;
    }

    .flip-card-back::-webkit-scrollbar {
      width: 6px;
    }

    .flip-card-back::-webkit-scrollbar-thumb {
      background-color: #00FFF0;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .flip-card {
        width: 90%;
      }
    }

/*time slots */    
.form-check-label {
  font-size: 0.95rem;
  color: #ccc;
}

.form-select option:disabled {
  color: #888;
  font-style: italic;
}

.form-check-input:checked {
  background-color: #00FFF0;
  border-color: #00FFF0;
}


/*Single class pricing*/
.single-class-note {
  background: rgba(0, 0, 0, 0.92); /* strong dark background */
  box-shadow: 0 0 15px rgba(0, 255, 240, 0.2);
  border-top: 2px solid #00FFF0;
  border-bottom: 2px solid #00FFF0;
  margin-top: 3rem;
  padding: 2rem 1rem;
  z-index: 2;
  position: relative;
  font-family: 'Orbitron', sans-serif; 
  color: #00FFF0;
  text-shadow: 0 0 6px rgba(0, 255, 240, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 240, 0.1);
  text-align: center;
}

.note-text {
  color: #00FFF0;
  font-size: 1.15rem;
  font-weight: 400;
}


.slot-note {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 0 4px rgba(0, 255, 240, 0.4);
  margin-top: 1rem;
  text-align: center;
}

/* Team Section */
.team-section {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.75));
  backdrop-filter: blur(6px);
}

.neon-text {
  color: #00FFF0;
  text-shadow: 0 0 8px rgba(0, 255, 240, 0.6), 0 0 12px rgba(0, 255, 240, 0.4);
}

.player-card {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #00FFF0;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 240, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 240, 0.3);
}

.player-avatar {
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00FFF0;
  box-shadow: 0 0 10px rgba(0, 255, 240, 0.5);
}

.player-name {
  font-family: 'Orbitron', sans-serif;
}

.player-role {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: #00FFF0;
}

.player-stats li {
  font-size: 0.9rem;
  color: #cccccc;
}

.founder-socials a.social-icon {
  color: #00FFF0;
  font-size: 1.6rem;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  transition: color 0.3s ease;
}

.founder-socials a.social-icon:hover {
  color: white;
  text-shadow:
    0 0 5px #00FFF0,
    0 0 10px #00FFF0,
    0 0 20px rgba(0, 255, 240, 0.7);
}

/* SZN Map */
.szn-map-section {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
}

.szn-map {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.szn-node {
  width: 100px;
  height: 100px;
  background: rgba(0, 255, 240, 0.1);
  border: 2px solid #00FFF0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 240, 0.3);
}

.szn-node:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 240, 0.6);
}

.szn-label {
  color: #00FFF0;
  text-shadow: 0 0 6px rgba(0, 255, 240, 0.5);
  line-height: 1.2;
}

.szn-connector {
  width: 40px;
  height: 4px;
  background: #00FFF0;
  box-shadow: 0 0 6px rgba(0, 255, 240, 0.3);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 5px rgba(0, 255, 240, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 240, 0.6); }
  100% { box-shadow: 0 0 5px rgba(0, 255, 240, 0.3); }
}

.programs-section {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(6px);
}

.table td, .table th {
  font-size: 0.85rem;
  padding: 0.5rem;
}

.table {
  width: 50%;
  height: 60%;
  max-width: 900px;
  margin: auto;
}


.szn-card {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #00FFF0;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 240, 0.2);
  transition: 0.3s ease;
}

.szn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 240, 0.4);
}

.szn-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #00FFF0;
  margin-bottom: 0.5rem;
}

.szn-desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.szn-features li {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 0.4rem;
}

.join-section {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.75));
  backdrop-filter: blur(8px);
}

.join-form .form-label {
  color: #00FFF0;
  font-weight: 600;
}

.join-form .form-control,
.join-form .form-select {
  color: #fff; /* Default text color in dark mode */
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #00FFF0;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.join-form .form-control::placeholder,
.join-form .form-select option {
  color: #222; /* Darker text inside dropdown */
  background-color: #fff;
  font-size: 1rem;
  padding: 0.5rem;
  font-family: 'Nunito', sans-serif;
}

.join-form .form-control:focus,
.join-form .form-select:focus {
 color: #222; /* Dark text for better contrast in expanded view */
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 255, 240, 0.6);
  border: 2px solid #00FFF0;
}

.join-form .form-select option::before {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Ensure mobile-friendly tap targets */
@media (max-width: 768px) {
  .join-form .form-select,
  .join-form .form-select option {
    font-size: 1rem;
  }
}


.footer {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  border-top: 2px solid #00FFF0;
  box-shadow: 0 0 10px rgba(0, 255, 240, 0.3);
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.footer img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer h5 {
  font-family: 'Orbitron', sans-serif;
  color: #00FFF0;
  font-weight: bold;
}

.footer-link {
  color: #00FFF0;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-link:hover {
  color: white;
  text-shadow: 
    0 0 5px #00FFF0,
    0 0 10px #00FFF0,
    0 0 20px rgba(0, 255, 240, 0.7);
}

.footer p {
  font-family: 'Share Tech Mono', monospace;
  color: #ccc;
  font-size: 0.95rem;
  margin: 0.3rem 0;
}




