
:root {
    /* Colors */
    --primary-purple: #5b005d;
    --dark-bg: #121927;
     --light-bg: #ffffff;
    --text-light: #ffffff;
    --bg-muted: #f7f6f6;
    --accent-gold: #FDCC0D;
    --glass-bg: rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}





.running-section {
  position: relative;
  background: url("../img/running-club.jpg") center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Dark overlay */
.running-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.running-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;   /* Controls left spacing */
  max-width: 650px;
}

/* Adjust for large screens */
@media (min-width: 1400px) {
  .running-content {
    padding-left: 120px;
  }
}

.running-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.running-text {
  font-size: 18px;
  color: #dddddd;
  margin-bottom: 35px;
}

.running-btn {
   background-color: var(--accent-gold);
  color: var(--dark-bg);
  padding: 14px 35px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.running-btn:hover {
  background-color: var(--bg-muted);
  color: var(--dark-bg);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .running-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .running-title {
    font-size: 40px;
  }

  .running-text {
    font-size: 16px;
  }
}




/* ============================= */
.stats-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #333;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.stats-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.stats-grid {
  flex: 2;
  display: flex;
  justify-content: space-around;
  text-align: left;
}

.stat-item h2 {
  display: inline-block;
  font-size: 3.5rem;
  margin: 0;
  color: var(--primary-purple); 
  font-weight: 700;
}

.stat-item .suffix {
  font-size: 3.5rem;
  color: var(--primary-purple);
  font-weight: 700;
}

.stat-item p {
  margin-top: 5px;
  font-weight: 500;
  color: var(--dark-bg);
  text-transform: capitalize;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }
}


/* ================================= */
.about-section {
  background-color: var(--dark-bg);
  padding: 100px 50px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Left Side Layout */
.image-grid {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.main-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.bottom-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.small-image img {
  width: 250px;
  height: 200px;
  object-fit: cover;
}

.logo-wrapper {
  padding-bottom: 20px;
}

/* Right Side Content */
.content-area {
  flex: 1;
}

.subtitle {
  color: var(--accent-gold);
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
}

.red-bar {
  width: 80px;
  height: 6px;
  background-color: var(--accent-gold);
  margin-bottom: 40px;
}

.description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.about-btn {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  padding: 18px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.2s;
}

.about-btn:hover {
  transform: scale(1.05);
  background-color: var(--light-bg);
  color: var(--dark-bg);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .container { flex-direction: column; padding: 20px; }
  .vertical-text { display: none; }
  .title { font-size: 2.5rem; }
  .bottom-row { flex-direction: column; align-items: center; }
}





/* ======================= */

.benefits-section {
  background-color: var(--bg-muted);
  color: var(--dark-bg);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  overflow: hidden;
}

.benefits-header .badge {
  color: var(--primary-purple);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.benefits-header h1 {
  font-size: 3.5rem;
  margin: 15px 0 80px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark-bg);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.benefit-item {
  display: flex;
  align-items: center;
  position: relative;
}

.left .benefit-item { text-align: right; justify-content: flex-end; }
.right .benefit-item { text-align: left; justify-content: flex-start; }

.number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-purple);
  margin: 0 25px;
  line-height: 1;
}

.text-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.text-content p {
  color: var(--dark-bg);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 260px;
}

/* Center Content */
.benefit-center {
  position: relative;
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-frame {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 4px solid var(--dark-bg);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70px;
  height: 70px;
  background: var(--primary-purple);
  color: #fff;
  font-size: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-play-btn:hover {
  background: var(--dark-bg);
  color: var(--bg-muted);
  transform: translate(-50%, -50%) scale(1.1);
}

.connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}




/* ====================================== */

.events-section {
  background-color: var(--light-bg);
  color: var(--dark-bg);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.events-header .badge {
  color: var(--primary-purple);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.events-header h1 {
  font-size: 3.5rem;
  margin: 15px 0 60px;
  font-weight: 800;
  color: var(--dark-bg);
}

.event-card {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  background-color: var(--dark-bg);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
}

/* 1. Image Area */
.event-image {
  flex: 1.2;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2. Info Area */
.event-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-info h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--text-light);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.info-list .icon {
  margin-right: 15px;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* 3. Ticket Area */
.ticket-box {
  flex: 0.6;
  background-color: var(--primary-purple);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ticket-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.price {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--text-light);
}

.price .currency {
  font-size: 2rem;
  vertical-align: top;
  margin-right: 2px;
}

.price .per {
  font-size: 0.9rem;
  font-weight: 400;
}

.view-btn {
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  text-decoration: none;
  padding: 12px 30px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  transition: opacity 0.2s;
}

.view-btn:hover {
  opacity: 0.9;
  background-color: var(--text-light);
  color: var(--dark-bg);
}

/* Responsive */
@media (max-width: 992px) {
  .event-card {
    flex-direction: column;
  }
  .event-image {
    height: 300px;
  }
}





/* ======================================= */

/* Container Background & Text Settings */
.trainers-sec-wrapper {
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 80px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.trainers-sec-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trainers-sec-subtitle {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.trainers-sec-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* Grid Layout */
.trainers-sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card Styling */
.trainers-sec-card {
  background-color: #1a1a1a;
  transition: transform 0.3s ease;
}

.trainers-sec-card:hover {
  transform: translateY(-5px);
}

/* Image box with Pink Background */
.trainers-sec-img-box {
  background-color: #ff526c; /* Matches the vibrant pink/red in UI */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* Aligns cutout images to bottom */
  justify-content: center;
}

.trainers-sec-img-box img {
  width: 100%; /* Adjust based on your cutout images */
  height: auto;
  display: block;
}

/* Text Info Area */
.trainers-sec-info {
  padding: 25px 20px;
}

.trainers-sec-info h3 {
  color: #ff526c;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trainers-sec-info p {
  color: #cccccc;
  font-size: 15px;
  font-weight: 400;
}

/* Responsive view */
@media (max-width: 1024px) {
  .trainers-sec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trainers-sec-grid {
    grid-template-columns: 1fr;
  }
}



/* ============ modal==================== */
/* =============================
   Modal Overlay
============================= */
.run-modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;

    z-index: 9999;
}

/* Active modal */
.run-modal-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* =============================
   Modal Container
============================= */
.run-modal-container{
    background: #fff;
    width: min(95%, 550px);
    border-radius: 18px;
    padding: 30px;
    position: relative;

    transform: scale(.85);
    transition: transform .35s ease;
}

/* Scale animation when modal opens */
.run-modal-overlay.active .run-modal-container{
    transform: scale(1);
}

/* =============================
   Close Button
============================= */
.run-modal-close{
    position: absolute;
    top: 15px;
    right: 18px;

    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
    color: #666;
}

/* =============================
   Title
============================= */
.run-modal-title{
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* =============================
   Contact Row
============================= */
.run-modal-contact-row{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.run-modal-contact-item{
    display: flex;
    align-items: center;
    gap: 8px;
}

.run-modal-icon{
    font-size: 18px;
}

/* =============================
   Form Grid
============================= */
.run-modal-input-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Inputs */
.run-modal-input{
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: .2s;
}

.run-modal-input:focus{
    border-color: #28a745;
}

/* =============================
   Submit Button
============================= */
.run-modal-submit-btn{
    width: 100%;
    margin-top: 20px;
    padding: 14px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(45deg,#28a745,#1e7e34);
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;

    transition: .3s;
}

.run-modal-submit-btn:hover{
    opacity: .9;
}

/* =============================
   Responsive
============================= */
@media(max-width:600px){
    .run-modal-input-grid{
        grid-template-columns: 1fr;
    }

    .run-modal-container{
        padding: 25px 20px;
    }
}






























/* Mobile Adjustments */
@media (max-width: 992px) {
  .benefits-container { flex-direction: column; }
  .benefit-center { order: -1; margin-bottom: 50px; }
  .connector-svg { display: none; }
  .benefit-col { gap: 50px; }
  .left .benefit-item, .right .benefit-item { 
    flex-direction: column; 
    text-align: center;
    justify-content: center;
  }
}

/* ============================= */
/* MOBILE RESPONSIVE FIX */
/* ============================= */

@media (max-width: 992px) {

  .benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Make all blocks full width */
  .benefit-col,
  .benefit-center {
    width: 100%;
  }

  /* Remove SVG lines on mobile */
  .connector-svg {
    display: none;
  }

  /* Proper spacing */
  .benefit-item {
    margin-bottom: 40px;
  }

  .circle-frame {
    margin: 40px 0;
  }

  /* ===== ORDER CONTROL ===== */

  .benefit-col.left {
    order: 1;  /* 01 + 03 */
  }

  .benefit-center {
    order: 2;  /* Image 02 */
  }

  .benefit-col.right {
    order: 3;  /* 02 + 04 */
  }

}


