/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ===== NAVBAR ===== */
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #111;
  color: white;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img{
  width: 40px;
}

/* nav links */
.nav-links{
  display: flex;
  gap: 20px;
}

.nav-links li{
  list-style: none;
}

.nav-links a{
  text-decoration: none;
  color: white;
}

/* hamburger */
.menu-toggle{
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== MOBILE MENU FIX ===== */
.menu-toggle{
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* MOBILE VIEW */
@media(max-width:768px){

  .menu-toggle{
    display: block;
  }

  .nav-links{
    position: absolute;
    top: 60px;
    left: -100%;
    width: 100%;
    background: #111;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

  .nav-links.active{
    left: 0;
  }

  .nav-links li{
    margin: 15px 0;
  }

}

/* ===== HERO (FINAL FIX) ===== */
.hero {
  position: relative;
  height: 100vh;
  background: url("images/hero.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 50px;
}

/* overlay (dark effect) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* text */
.hero-content {
  position: relative;
  color: white;
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  margin: 10px 0;
}

/* button FIX (important 👇) */
.btn {
  background: #ff3c3c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

/* ===== SECTION ===== */
.section {
  padding: 40px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* ===== ABOUT PREMIUM UI ===== */

.about-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-card{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.3s;
  cursor: pointer;
}

/* hover effect */
.about-card:hover{
  transform: translateY(-5px) scale(1.02);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(255,0,0,0.2);
}

/* icon circle */
.about-icon{
  width: 60px;
  height: 60px;
  min-width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  border-radius: 50%;

  background: linear-gradient(135deg, #ff3c3c, #ff7b00);
  color: white;
}

/* text */
.about-text h3{
  margin: 0;
  color: #ff4d4d;
  font-size: 18px;
}

.about-text p{
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
}

/* mobile responsive */
@media(max-width:768px){
  .about-grid{
    grid-template-columns: 1fr;
  }

  .about-card{
    flex-direction: row;
  }
}
/* ===== GRID (Gallery & Achievements) ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card p {
  padding: 10px;
}

.card:hover {
  transform: scale(1.05);
}

/* ===== FORM ===== */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  background: #ff3c3c;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #aaa;
}

/* ===== INSTAGRAM FLOAT ===== */
.insta-float {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 999;
}

.insta-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .nav-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero img {
    height: 250px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    flex-direction: row;
  }
}
/* ===== TRAINING OVAL BUTTONS ===== */

.training-list{
  margin-top: 30px;
}

.train-item{
  background: linear-gradient(135deg,#111,#222);
  padding: 15px;
  margin: 12px 0;
  border-radius: 50px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.train-item:hover{
  background: linear-gradient(135deg,#ff3c3c,#ff7b00);
  transform: scale(1.05);
}

/* ===== MODAL POPUP ===== */

.modal{
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  padding: 20px;
}

.modal-content-box{
  max-width: 400px;
  margin: auto;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.modal img{
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.modal-text-box{
  color: white;
}

.modal-text-box h3{
  color: #ff3c3c;
  margin-bottom: 10px;
}

.modal-text-box p{
  font-size: 14px;
  line-height: 1.6;
}

.close{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* animation */
@keyframes fadeIn{
  from{
    opacity: 0;
    transform: scale(0.9);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}