
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  z-index: 2;
  color: #fff;
}

/* Gradient text effect */
.hero-heading .main-text {
  display: inline-block;
  font-size: 100px; /* Big, bold text */
  font-weight: 900;
  background: linear-gradient(90deg, #ffea00, #ff0066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  text-shadow: 0 0 30px rgba(255, 0, 100, 0.5);
  animation: glowText 3s ease-in-out infinite alternate;
}

.hero-content p {
  font-size: 2.5rem;
  color: #f5f5f5;
  margin-top: 15px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 
               0 0 30px rgba(255, 0, 100, 0.3);
  animation: fadeInUp 2s ease forwards;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Glow animation for the heading */
@keyframes glowText {
  from {
    text-shadow: 0 0 20px rgba(255, 0, 100, 0.3),
                 0 0 40px rgba(255, 255, 0, 0.2);
  }
  to {
    text-shadow: 0 0 40px rgba(255, 0, 100, 0.6),
                 0 0 80px rgba(255, 255, 0, 0.4);
  }
}

/* Responsive scaling for smaller screens */
@media (max-width: 768px) {
  .hero-heading .main-text {
    font-size: 60px;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* Subtitle */
.hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #eaeaea;
  animation: fadeInUp 2s ease forwards;
}

/* Button gradient */
.btn-red {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(90deg, #ff0066, #ffea00);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 0, 100, 0.4);
}

.btn-red:hover {
  background: linear-gradient(90deg, #ffea00, #ff0066);
  box-shadow: 0 0 20px rgba(255, 0, 100, 0.6);
}

/* Glow animation */
@keyframes glowText {
  0% {
    text-shadow: 0 0 10px rgba(255, 0, 100, 0.2),
                 0 0 20px rgba(255, 234, 0, 0.2);
  }
  100% {
    text-shadow: 0 0 25px rgba(255, 0, 100, 0.6),
                 0 0 45px rgba(255, 234, 0, 0.4);
  }
}

/* Fade-up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==== HERO SECTION ==== */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.4rem; /* reduced space between items */
  padding-top: 1rem; /* fine-tuned top space */
}

/* Logo styling */
.hero-logo {
  margin-top: 0; /* keep as is */
}

.hero-logo img {
  width: clamp(200px, 30vw, 350px);
  height: auto;
  margin-bottom: -10px; /* move logo closer to text */
  filter: drop-shadow(0 0 12px rgba(255, 234, 0, 0.7));
  animation: glowPulse 3s ease-in-out infinite;
}

/* Optional fine-tune: reduce space below in smaller screens */
@media (max-width: 768px) {
  .hero-logo img {
    margin-bottom: -6px;
  }
}

/* Text adjustments for balance */
.hero-heading {
  margin: 0.2rem 0; /* minimal vertical spacing */
}

.hero-content p {
  margin: 0.3rem 0 0.8rem; /* small space before button */
}

/* Button spacing fix */
.hero-buttons {
  margin-top: 0.2rem; /* reduce space above button */
}



/* Optional subtle glow animation */
@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 8px rgba(255, 234, 0, 0.4)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 234, 0, 1)); }
  100% { filter: drop-shadow(0 0 8px rgba(255, 234, 0, 0.4)); }
}


/* ===== HERO BRANDNAME IMAGE (enlarged for hero section) ===== */
.hero-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* Larger version for desktop hero section */
.hero-brandname {
  height: 50px; /* increased size */
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255, 234, 0, 0.8));
  animation: glowPulse 3s ease-in-out infinite;
}

/* Responsive scaling for tablets */
@media (max-width: 1024px) {
  .hero-brandname {
    height: 55px;
  }
}

/* Responsive scaling for mobile */
@media (max-width: 768px) {
  .hero-brandname {
    height: 35px; /* balanced size for smaller screens */
    filter: drop-shadow(0 0 8px rgba(255, 234, 0, 0.6));
  }
}

/* Soft glow animation */
@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 8px rgba(255, 234, 0, 0.5)); }
  50% { filter: drop-shadow(0 0 18px rgba(255, 234, 0, 1)); }
  100% { filter: drop-shadow(0 0 8px rgba(255, 234, 0, 0.5)); }
}

/* ===== HERO SUBTEXT (Punch Line) ===== */
.hero-content p {
  font-size: 2.2rem !important; /* force larger size on desktop */
  color: #fff;
  margin-top: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 
    0 0 12px rgba(255, 255, 255, 0.8),
    0 0 24px rgba(255, 0, 100, 0.7),
    0 0 48px rgba(255, 234, 0, 0.6);
  animation: glowPulseText 3s ease-in-out infinite;
}

/* 🔥 Glow animation for the subtext */
@keyframes glowPulseText {
  0% {
    text-shadow: 
      0 0 10px rgba(255, 0, 100, 0.4),
      0 0 20px rgba(255, 234, 0, 0.3);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(255, 0, 100, 0.8),
      0 0 40px rgba(255, 234, 0, 0.6);
  }
  100% {
    text-shadow: 
      0 0 10px rgba(255, 0, 100, 0.4),
      0 0 20px rgba(255, 234, 0, 0.3);
  }
}

/* ✨ Mobile view: keep glow, smaller text */
@media (max-width: 768px) {
  .hero-content p {
    font-size: 1.2rem !important;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 0, 100, 0.5);
  }
}




/* Hero heading */
.hero-heading {
  font-size: 3rem;
  margin-top: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-down-arrow span {
  width: 22px;
  height: 22px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  animation: arrowBlink 1.6s infinite;
  opacity: 0.8;
}

@keyframes arrowBlink {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.6;
  }
}



/* ===== FIGHT PAGE ===== */
.page-hero {
  margin-top: 160px;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffea00, #ff0066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 3s ease-in-out infinite alternate;
  text-transform: uppercase;
}

.page-hero p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 15px auto 0;
}

/* ===== SERVICES PAGE ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 60px 8%;
}

.service-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 0, 100, 0.4);
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.service-card .content {
  position: relative;
  z-index: 2;
  padding: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.service-card:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.service-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffea00, #ff0066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 3s ease-in-out infinite alternate;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links.center-links {
    display: none;
  }

  .mobile-toggle-wrapper {
    display: block;
  }

  .hero-heading .main-text {
    font-size: 2.6rem;
  }

  .service-card {
    height: 350px;
  }
}
/* AresQed Fitness Quikpass Section Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}









