/* Reset & Base */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: #222;
  }
  body.dark {
    background: #121212;
    color: #f0f0f0;
  }
  img {
    max-width: 100%;
  }
  
  /* Header */
  header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #000;
    color: white;
  }

  .logo {
    height: 50px;
  }

.toggle-btn {
  background: #f57c00;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
body.dark .toggle-btn {
  background: #444;
  color: #ffcc80;
}
  
  /* Navigation */
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #f57c00;
    gap: 15px;
    padding: 15px;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Sections */

  p {
    font-size: 1.15rem;
  }
  span {
    font-size: 1.15rem;
  }
  section {
    padding: 60px 20px;
    text-align: center;
  }
  h2 {
    font-size: 35px;
    color: #f57c00;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
/* Home Section Styling */
.home-section {
  padding: 60px 20px;
  background: radial-gradient(circle at center, #ffffff 50%, #ffd79a);
  position: relative;
  overflow: hidden;
}

body.dark .home-section {
  background: radial-gradient(circle, #2a2724 10%, #121212 50%);
}

.home-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}



.home-wrapper p {
  margin-bottom: 30px;
}

.banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
/* YouTube-style Button - More Realistic & Modern */
.youtube-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff4343 0%, #ff0000 60%, #b30000 100%);
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 30px; /* Increased horizontal padding for better width */
  min-width: 180px;   /* Ensures a wider button */
  border: none;
  border-radius: 20px;
  box-shadow:
    0 6px 24px rgba(255,0,0,0.18),
    0 2px 8px rgba(0,0,0,0.18),
    0 1.5px 4px rgba(0,0,0,0.12);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  margin-top: 1px;
  position: relative;
  overflow: hidden;
  outline: none;
}

.youtube-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}

.youtube-btn:hover,
.youtube-btn:focus {
  background: linear-gradient(180deg, #ff5e5e 0%, #e60000 60%, #a00000 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 28px rgba(255,0,0,0.30),
    0 4px 16px rgba(0,0,0,0.22),
    0 2px 8px rgba(0,0,0,0.15);
  color: #fff;
  text-decoration: none;
}

.youtube-btn:active {
  background: linear-gradient(180deg, #b30000 0%, #d20202 100%);
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.floating-mascot {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px auto 0;
  width: auto; /* or remove width property */
  animation: floatUpDown 3s ease-in-out infinite;
}

.floating-mascot img {
  width: 150px; /* Adjust width as needed */
  height: auto;
}

/* Floating Keyframes */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}


  .banner-img {
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    height: 250px; /* Adjust height to control how much to "crop" */
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
  }
  
  /* Video Embed */
  .video-embed iframe {
    width: 90%;
    height: 320px;
    max-width: 640px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  /* Shorts */
  .shorts-slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 20px;
    scroll-snap-type: x mandatory;
  }
  .shorts-slider iframe {
    height: 448px;
    width: 252px;
    border-radius: 12px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  /* Character Gallery */
  .character-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .character-gallery img {
    width: 150px;
    /*border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
    transition: transform 0.3s;
  }
  .character-gallery img:hover {
    transform: scale(1.5);
  }

  .mascot-icon {
    width: 150px;         /* Adjust as needed */
    height: auto;
    border-radius: 50%;
  }

  
  /* Sub-footer */
  .sub-footer {
    background: #fff3e0;
    color: #333;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 15px;
    font-size: 15px;
  }
  .sub-footer a {
    color: #f57c00;
    margin: 0 10px;
    text-decoration: none;
  }
  .sub-footer a:hover {
    text-decoration: underline;
  }
  .sub-footer .social-icons img {
    height: 24px;
    margin: 0 6px;
    vertical-align: middle;
  }
  .sub-footer .character {
    margin-top: 15px;
  }
  
  /* Footer */
  footer {
    background: #f57c00;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
  }
  
  /* === About Section Styling === */
.about-section {
  padding: 60px 20px;
}

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

.about-text {
  flex: 1 1 500px;
  font-size: 1rem;
  text-align: justify;
  
}



.about-text p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.about-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
  padding-left: 24px;
}

.about-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f57c00;
  font-weight: bold;
}

.about-text a {
  color: #f57c00;
  text-decoration: none;
  font-weight: bold;
}

.about-text a:hover {
  text-decoration: underline;
}

.about-image {
  flex: 1 1 200px;
}


.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
  background: linear-gradient(90deg, #f8fafc 60%, #ffe0b2 100%);
  padding: 60px 20px;
  border-radius: 18px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
}

body.dark .mission-section {
    background: linear-gradient(90deg, #000000 60%, #2c271f 100%);
}

.mission-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.mission-text {
  flex: 1 1 400px;
  text-align: justify;
}

.mission-text p {
  margin-bottom: 22px;
  line-height: 1.7;
}

.mission-tagline {
  background: #f57c00;
  color: #fff;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mission-image {
  flex: 1 1 260px;
  text-align: center;
}

.mission-image img {
  max-width: 340px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}


/*Contact*/

/* contact Section */
.contact-section {
  background: linear-gradient(90deg, #f8fafc 60%, #ffe0b2 100%);
  padding: 60px 20px;
  border-radius: 18px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
}

body.dark .contact-section {
    background: linear-gradient(90deg, #2c271f 0%, #121212 40%);
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-text {
  flex: 1 1 400px;
  text-align: justify;
}

.contact-text p {
  margin-bottom: 22px;
  line-height: 1.7;
}

.contact-text a {
  color: #f57c00;
  text-decoration: none;
  font-weight: bold;
}


.contact-image {
  flex: 1 1 260px;
  text-align: center;
}

.contact-image img {
  max-width: 340px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

  
  /* Responsive */
  @media (max-width: 768px) {
    .video-embed iframe,
    .shorts-slider iframe {
      width: 100%;
    }
    .character-gallery img {
      width: 120px;
    }

 

    
  }
  