/* Base Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
  }

  /* Parallax Video Setup */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -10;
  pointer-events: none;
}

/* Content scrolls on top */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* Optional: overlay tint to improve text contrast */
.page-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* darkens background slightly */
  z-index: -5;
  pointer-events: none;
}

  
  /* Links & Buttons */
  a {
    color: #fff;
    text-decoration: none;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: turquoise;
    color: #000;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: violet;
    color: #fff;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
    text-align: center;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  #hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    z-index: -1;
    pointer-events: none;
  }
  
  /* .hero-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    box-sizing: border-box;
  } */
  
  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
  
  .hero-content p {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
  
  .scroll-down {
    margin-top: 30px;
    font-size: 2rem;
    color: turquoise;
    animation: bounce 2s infinite;
  }
  
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(10px);
    }
    60% {
      transform: translateY(5px);
    }
  }
  
  
  /* Responsive Adjustments */
  @media screen and (max-width: 768px) {
    .hero-content {
      padding: 20px;
    }
  
    #hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .btn {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  
    .back-button {
      text-align: center;
      padding: 10px 0;
    }
  
    form {
      width: 90%;
      margin: auto;
    }
  
    .store-items {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* Video Section */
  .video-grid, .lesson-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  video {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Contact Form */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
  }
  
  input, textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  /* Footer */
  footer {
    background: #111;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  /* Nav Balls */
  .nav-balls {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    z-index: 1000;
  }
  
  .nav-ball {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    background: turquoise;
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    font-size: clamp(0.6rem, 2vw, 0.9rem);
  }
  
  .nav-ball:hover {
    background: violet;
    color: #fff;
    transform: scale(1.1);
  }
  
  /* Responsive Typography */
  h1, h2, h3, h4 {
    word-wrap: break-word;
    line-height: 1.2;
  }
  
  /* Mobile Adjustments */
  @media screen and (max-width: 768px) {
    .hero-content {
      padding: 20px;
    }
  
    .btn {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  
    .back-button {
      text-align: center;
      padding: 10px 0;
    }
  
    form {
      width: 90%;
      margin: auto;
    }
  
    .store-items {
      grid-template-columns: 1fr;
    }

  }
  /* Store Section Container */
.store {
  padding: 60px 20px;
  text-align: center;
  background: #111;
}

.store h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: turquoise;
}

/* Grid layout for product cards */
.store-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Individual Product Card */
.product {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.product img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  height: auto;
}

.product h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #fff;
}

.product h4 {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 15px;
}

/* Reuse existing .btn class styling */
