/* ---------- Root Variables ---------- */
:root {
  --primary: #1f3b57;       /* Deep navy */
  --accent: #d4a017;        /* Elegant gold */
  --light: #f9f9f9;
  --dark: #222;
  --body-font: 'Segoe UI', Arial, sans-serif;
  --heading-font: 'Merriweather', Georgia, serif;
  /*--max-width: 1200px;*/
   --card-shadow: 0 10px 25px rgba(0,0,0,0.1);
            --hover-shadow: 0 20px 40px rgba(0,0,0,0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}






/* ---------- Reset & Base ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--body-font);
  line-height: 1.6;
  background: var(--light);
  color: var(--dark);
  font-size: 1rem;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--accent);
}
img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--primary);
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: white;
  font-weight: bold;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.main-nav a {
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}
.main-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
.main-nav a.btn {
  background: var(--accent);
  color: var(--primary);
  font-weight: bold;
}
.main-nav a.btn:hover {
  background: white;
  color: var(--primary);
}

/* ---------- Hero Section ---------- */
/*.hero {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  align-items: flex-start;*/
/*  gap: 30px;*/
/*  margin: 50px 0;*/
/*}*/
/*.hero-image {*/
/*  flex: 0 0 320px;*/
/*}*/
/*.hero-image img {*/
/*  border-radius: 8px;*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/
/*.hero-content {*/
/*  flex: 1;*/
/*}*/
/*.intro p {*/
/*  margin-bottom: 12px;*/
/*}*/

.hero-section {
            background:orange;
            color: white;
            position: relative;
            padding: 80px 0 100px;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        
        .hero {
            display: grid;
            grid-template-columns: 1fr 2fr;
            grid-template-rows: auto auto;
            gap: 40px;
            align-items: start;
            position: relative;
            z-index: 2;
        }
        
        .hero-images {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hero-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }
        
        .hero-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.05);
        }
        
        .hero-image h2 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 30px 20px 20px;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content {
            padding: 20px 0;
        }
        
        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .intro {
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .intro p {
            margin-bottom: 20px;
            opacity: 0.95;
        }
        
        .intro p:last-child {
            margin-bottom: 0;
        }
        
        .shape-divider1 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: white;
            clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 80%);
        }
        

/* ---------- Cards & Grid ---------- */
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: var(--transition);
  color: black ;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

  .grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card1 {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .card1:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

/* ---------- Event Highlight ---------- */
.event-section {
  background: white;
  padding: 80px 0;
  position: relative;
}

.event-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.event-flex .card.event {
  flex: 1;
  min-width: 400px;
  background: #d4d0d0;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  /*border-left: 6px solid var(--accent);*/
  position: relative;
  transition: var(--transition);
}

.event-flex .card.event:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.event-flex .card.event h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.event-flex .card.event h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.event-flex .card.event ul {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.event-flex .card.event ul li {
  margin-bottom: 15px;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  /*border-left: 4px solid var(--accent);*/
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  transition: var(--transition);
}

.event-flex .card.event ul li:hover {
  background: #fff4e6;
  transform: translateX(5px);
}

.event-flex .card.event ul li strong {
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  margin-right: 8px;
  min-width: 60px;
}

.event-flex .card.event > p {
  background: var(--primary);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 15px rgba(31, 59, 87, 0.2);
}

.event-flex .card.event .btn {
  background: var(--accent);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.event-flex .card.event .btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 59, 87, 0.4);
}

.event-flyer {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-flyer img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  /*max-height: 500px;*/
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.event-flyer img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(0,0,0,0.2);
}



.announcement-item {
  margin-bottom: 10px;
}

/* ---------- Trainers ---------- */
.trainer-image {
            margin-bottom: 20px;
        }

        .trainer-image img {
            width: 300px;
            height: 350px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #3182ce;
        }

        .trainer-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .trainer-title {
            font-size: 0.9rem;
            color: #3182ce;
            margin-bottom: 15px;
        }

        .trainer-description {
            font-size: 0.85rem;
            color: #718096;
            line-height: 1.5;
        }

/* ---------- Section Headings ---------- */
h2, h3, h4 {
  font-family: var(--heading-font);
  margin-bottom: 12px;
}

/* ---------- Forms ---------- */
form {
  display: grid;
  gap: 12px;
}
form input, form textarea, form select {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--body-font);
}
form button {
  background: var(--accent);
  color: var(--primary);
  padding: 10px 18px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
}
form button:hover {
  background: var(--primary);
  color: white;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 25px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.95rem;
}
.site-footer a {
  color: var(--accent);
  margin: 0 6px;
}
.site-footer a:hover {
  color: white;
}

/* ---------- Blog Posts ---------- */
.blog-list .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-meta {
  font-size: 0.85rem;
  color: #777;
  margin-top: auto;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-left: 4px solid var(--accent);
  padding: 15px;
  background: white;
  margin-bottom: 10px;
  transition: var(--transition);
}
.faq-item:hover {
  background: #fffaf0;
}

/* ---------- Utility Classes ---------- */
.mt-40 {
  margin-top: 40px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}




.team-section {
            /*background: #f9f9f9;*/
            background: #b7cee5;
            position: relative;
            padding: 60px 20px;
            text-align: center;
        }

        .section-title {
            font-family: var(--heading-font);
            font-size: 1rem;
            margin-bottom: 40px;
            color: var(--primary);
            text-align: center;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .team-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .team-members {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .member {
            text-align: center;
        }

        .member-image {
            width: 60px;
            height: 60px;
            margin: 0 auto 8px;
            position: relative;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            clip-path: polygon(
                50% 0%, 
                85% 15%, 
                100% 35%, 
                95% 50%, 
                100% 65%, 
                85% 85%, 
                70% 95%, 
                50% 100%, 
                30% 95%, 
                15% 85%, 
                0% 65%, 
                5% 50%, 
                0% 35%, 
                15% 15%
            );
            border: 2px solid var(--accent);
            transition: var(--transition);
        }

        .member-image:hover img {
            transform: scale(1.1);
            border-color: var(--primary);
        }

        .member-name {
            font-size: 0.75rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 2px;
        }

        .member-title {
            font-size: 0.65rem;
            color: #666;
        }

        .team-card-title {
            font-size: 1.3rem;
            color: var(--primary);
            font-family: var(--heading-font);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }

        .team-btn {
            margin-top: 30px;
        }

        .team-btn .btn {
            background: var(--accent);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: bold;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .team-btn .btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }





/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .main-nav {
    gap: 8px;
  }
  .benefits-header {
    gap: 60px;
  }
  
  .benefits-title {
    width: 240px;
    height: 240px;
    font-size: 1.8rem;
  }
  
  .event-flex {
    gap: 30px;
  }
  
  .event-flex .card.event {
    min-width: 350px;
    padding: 30px;
  }
  
  .event-flyer {
    flex: 0 0 350px;
  }
}
@media (max-width: 768px) {
    
    .hero-section {
                padding: 60px 0 80px;
            }
            
            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-images {
                order: 2;
                flex-direction: column;
                gap: 20px;
            }
            
            .hero-image {
                flex: 1;
            }
            
            .hero-image img {
                height: 200px;
            }
            
            .hero-image h2 {
                font-size: 1rem;
                padding: 20px 15px 15px;
            }
            
            .hero-content {
                order: 1;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 25px;
            }
            
            .intro {
                font-size: 1rem;
                text-align: left;
            }
    
    
  .site-header .container {
    flex-direction: column;
    gap: 10px;
  }
  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  .benefits-header {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .benefits-title {
    width: 200px;
    height: 200px;
    font-size: 1.6rem;
  }
  
  .benefits-list .benefit-item {
    text-align: left;
    padding-left: 25px;
  }
  .event-flex {
    flex-direction: column;
    gap: 30px;
  }
  
  .event-flex .card.event {
    min-width: auto;
    padding: 25px;
  }
  
  .event-flex .card.event h3 {
    font-size: 1.6rem;
  }
  
  .event-flyer {
    flex: none;
    order: -1; /* Put image on top for mobile */
  }
  
  .event-flyer img {
    max-height: 300px;
  }
  
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--primary);
    margin-top: 10px;
  }

  .main-nav a {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* Show menu when active */
  .main-nav.active {
    display: flex;
  }
   .section-title {
    font-size: 1rem;
  }
  
   .grid {
                grid-template-columns: 1fr;
            }
            
            .card {
                padding: 20px;
            }
            
            .trainer-image img {
                width: 130px;
                height: 130px;
            }
  
  .team-members {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .member-image {
                width: 80px;
                height: 80px;
            }
            
            .member-name {
                font-size: 0.85rem;
            }
            
            .member-title {
                font-size: 0.75rem;
            }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
   .hero-section {
                padding: 40px 0 60px;
            }
            
            .hero-images {
                flex-direction: column;
                gap: 20px;
            }
            
            .hero-image img {
                height: 180px;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .intro {
                font-size: 0.95rem;
            }
            
  .grid {
    grid-template-columns: 1fr;
  }
  .trainer img {
    width: 72px;
    height: 72px;
  }
  
  .benefits-title {
    width: 180px;
    height: 180px;
    font-size: 1.4rem;
  }
  
  .benefits-list .benefit-item {
    font-size: 1rem;
  }
  .event-section {
    padding: 60px 0;
  }
  
  .event-flex .card.event {
    padding: 20px;
  }
  
  .event-flex .card.event h3 {
    font-size: 1.4rem;
  }
  
  .event-flex .card.event ul li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .event-flex .card.event .btn {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
   .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--primary);
    margin-top: 10px;
  }

  .main-nav a {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* Show menu when active */
  .main-nav.active {
    display: flex;
  }
  
  .team-grid {
                grid-template-columns: 1fr;
            }
}



/* ---------- Full-width Colored Section Backgrounds ---------- */
/*.hero-section {*/
/*  background: orange;*/
/*  color: white;*/
/*  position: relative;*/
/*  padding: 60px 0;*/
/*}*/

/* ---------- Benefits Section with Overlap Circle Inside ---------- */
.benefits-section {
  background: #f5f5f5; /* Light background like in screenshot */
  color: #333;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.benefits-header {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-title {
  background: #ff7f34; /* Orange color matching screenshot */
  color: white;
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: bold;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(255, 127, 52, 0.3);
}

.benefits-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  min-width: 0; /* Allows flex item to shrink */
}

.benefits-list .benefit-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  min-width: auto;
  text-align: left;
  border: none;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  position: relative;
  padding-left: 25px;
}

/* Add bullet points */
.benefits-list .benefit-item::before {
  content: "•";
  color: #ff7f34;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Add decorative elements like in screenshot */
.benefits-section::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  width: 100px;
  height: 20px;
  background: linear-gradient(45deg, #ffd700 0%, #ffd700 30%, transparent 30%, transparent 50%, #ffd700 50%, #ffd700 80%, transparent 80%);
  transform: translateY(-50%) rotate(15deg);
  opacity: 0.6;
}

.benefits-section::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 30%;
  width: 60px;
  height: 15px;
  background: linear-gradient(45deg, #ffd700 0%, #ffd700 30%, transparent 30%, transparent 50%, #ffd700 50%, #ffd700 80%, transparent 80%);
  transform: rotate(-10deg);
  opacity: 0.7;
}


.services-section {
  background: #004c97;
  color: white;
  padding: 60px 0;
}

/* ---------- Shape Divider Styles ---------- */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-divider .shape-fill {
  fill: #ffffff; /* adjust to match next section background */
}

.shape-divider.flip {
  transform: rotate(180deg);
}

/* ---------- Dark Cards in Black Section ---------- */
.dark-card {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ---------- Flex Layout for Event + Flyer ---------- */
.event-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}



@media (max-width: 768px) {
  .event-flex, .hero {
    flex-direction: column;
  }
}
