@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Oswald:wght@400;700&display=swap');


/* ==== Base Reset ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif; /* clean & inviting */
  color: #fff;
  background: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif; /* strong but not blocky */
  font-weight: 700;
  letter-spacing: 1px;
}

h1, h2 {
  text-transform: uppercase;
}

p {
  font-weight: 400;
  line-height: 1.6;
}


/* ==== Navbar ==== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 1001;
  transition: background 0.3s ease;
}

.navbar.transparent {
  background: transparent;
}

.navbar.solid {
  background: rgba(0,0,0,0.85);
  -webkit-backdrop-filter: blur(6px);
   backdrop-filter: blur(6px);
  
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo in navbar */
.navbar .logo {
  height: 40px;
  width: auto;
  display: block;
  cursor: pointer;
}

/* Nav icon images */
.nav-icon {
  width: 28px;
  height: 28px;
  display: block;
  pointer-events: none;
}


/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #dc2626; /* Red hover */
}

/* Mobile toggle button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 20px;
    border-radius: 8px;

    /* Hidden by default */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    margin-bottom: 10px;
  }
}




/* ==== Hero Section ==== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(220,38,38,0.4), rgba(0,0,0,0.9)),
              radial-gradient(circle at 70% 30%, rgba(255,215,0,0.4), transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: bold;
  text-transform: uppercase;
}

/* ==== Buttons ==== */
.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: #dc2626; /* Red */
  color: #fff;
}

.btn-secondary {
  background: #ffd700; /* Gold */
  color: #000;
}

.btn-primary:hover {
  box-shadow: 0 0 15px rgba(220,38,38,0.8), 0 0 30px rgba(220,38,38,0.6);
}

.btn-secondary:hover {
  box-shadow: 0 0 15px rgba(255,215,0,0.8), 0 0 30px rgba(255,215,0,0.6);
}


.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* ==== Animated Background Glow ==== */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(-45deg, #000000, #dc2626, #111111, #ffd700);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  opacity: 0.7;
  z-index: 0;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-content h1 span {
  background: linear-gradient(45deg, #dc2626, #ffd700);
  -webkit-background-clip: text;     /* ✅ Safari/Chrome */
  background-clip: text;             /* ✅ Standard property */
  -webkit-text-fill-color: transparent;
  color: transparent;                /* ✅ fallback */
}


/* Scroll animation base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}




/*-------------------------*/
/*    start About Section */
/*-----------------------*/

.about {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.about .container {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  color: #ffd700; /* Gold accent */
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
/*-------------------------*/
/*    end About Section   */
/*-----------------------*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


/*---------------------------- */
/* start Content Hub Section  */
/*---------------------------*/
.content-hub {
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.content-hub .container {
  max-width: 1100px;
  margin: 0 auto;
}

.content-hub h2 {
  font-size: 2rem;
  color: #dc2626; /* Red accent */
  margin-bottom: 40px;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.video-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  text-align: left;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-card:hover img {
  filter: brightness(1);
  transform: scale(1.1);
}

.video-card:hover .overlay {
  opacity: 1;
}

/* ==== Video Modal ==== */
.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.modal iframe {
  width: 100%;
  height: 500px;
  display: block;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

/* ==== Platform Badge (refined) ==== */
.platform-badge {
  position: absolute;
  bottom: 12px;
  right: 300px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 10;

  /* Glassmorphism support */
  -webkit-backdrop-filter: blur(4px); /* ✅ Safari/iOS */
  backdrop-filter: blur(4px);         /* ✅ Modern browsers */

  opacity: 0.9;
}


.platform-badge.youtube {
  background: rgba(255,0,0,0.75); /* softer YouTube red */
}

.platform-badge.tiktok {
  background: linear-gradient(45deg, rgba(37,244,238,0.8), rgba(254,44,85,0.8));
}

.platform-badge.instagram {
  background: linear-gradient(
    45deg,
    rgba(240,148,51,0.8),
    rgba(230,104,60,0.8),
    rgba(220,39,67,0.8),
    rgba(204,35,102,0.8),
    rgba(188,24,136,0.8)
  );
}


/*---------------------------- */
/* end Content Hub Section    */
/*---------------------------*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


/*--------------------------------*/
/* start Programs Teaser Section  */
/*--------------------------------*/
.programs {
  background: linear-gradient(to bottom, #111, #000);
  padding: 80px 20px;
  text-align: center;
}

.programs .container {
  max-width: 1100px; /* expanded to fit program cards + form */
  margin: 0 auto;
}

.programs h2 {
  font-size: 2rem;
  color: #ffd700; /* Gold */
  margin-bottom: 20px;
  text-transform: uppercase;
}

.programs .tagline {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ==== Program Cards Grid ==== */
.program-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}


/* ==== Program Cards (with background images) ==== */
.program-card {
  position: relative;
  flex: 1 1 280px;
  max-width: 320px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  background: #111; /* fallback */
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
  transform: skewY(-3deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Background images per program */
.program-card.foundations {
  background-image: url("assets/images/program-foundations.jpg");
}
.program-card.strength {
  background-image: url("assets/images/program-strength.jpg");
}
.program-card.elite {
  background-image: url("assets/images/program-elite.jpg");
}

/* Overlay */
.program-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
  z-index: 1;
}

/* Inner content */
.program-card-content {
  position: relative;
  z-index: 2;
  transform: skewY(3deg);
  padding: 20px;
  text-align: left;
}

.program-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700; /* Gold */
}

.program-card p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

.program-card:hover {
  transform: skewY(-3deg) scale(1.05);
  box-shadow: 0 12px 25px rgba(220,38,38,0.6);
}



/* ==== Signup Form (unchanged) ==== */
.signup-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  width: 65%;
  max-width: 300px;
}

.signup-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/*--------------------------------*/
/* end Programs Teaser Section    */
/*--------------------------------*/



/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


/*--------------------------------*/
/* start footer                   */
/*------------------------------  */
.footer {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.footer h2 {
  color: #ffd700; /* Gold */
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer .social-links {
  margin-bottom: 20px;
}

.footer .social-links a {
  color: #fff;
  margin: 0 10px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.footer .social-links a:hover {
  color: #dc2626; /* Red hover */
}

.footer .email {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer .footer-signup {
  margin-bottom: 20px;
  justify-content: center;
}

.footer .footer-signup input[type="email"] {
  width: 60%;
  max-width: 250px;
}

.footer .footer-signup button {
  background: #ffd700; /* Gold button */
  color: #000;
}

.footer .copyright {
  font-size: 0.9rem;
  color: #777;
  margin-top: 20px;
}


/*--------------------------------*/
/* end footer                   */
/*------------------------------  */

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


/* ================================================== */
/* ==== Responsive Breakpoints ==== */
/* ================================================== */

/* Small devices (phones, <600px) */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
    padding: 0 10px;
  }

  .hero {
    height: 90vh; /* shorter hero */
  }

  .logo {
    width: 120px;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .video-grid {
    grid-template-columns: 1fr; /* stack videos */
  }

  .modal iframe {
    height: 280px; /* smaller video height */
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form input[type="email"],
  .signup-form button {
    width: 100%;
    max-width: 100%;
  }
}

/* Medium devices (tablets, <900px) */
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }

  .modal iframe {
    height: 360px;
  }

  .platform-badge {
    right: 20px; /* tuck badge in */
  }
}

/* Large devices (desktop, >=900px) */
@media (min-width: 901px) {
  h1 {
    font-size: 2.5rem;
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal iframe {
    height: 500px;
  }
}


