
/* =========================
   ABOUT PAGE TRAINER SECTION
========================= */
 
.trainer {
text-align: left;
font-size: 1.2rem;
padding-bottom: 0rem;
padding-top: 0;
padding-left: 3rem;
padding-right: 3rem;
display: block;
}
@media (max-width: 700px) {
  .trainer {
    padding-left: 1rem;
    padding-right: 1rem;
margin-top: 0rem;
  }
.semi {
padding-left: 1rem !important;
 padding-bottom: -1rem !important;
}
}
.semi p {
    margin-bottom: -1rem;  /* Control paragraph spacing */
}
.semi {
text-align: left;
font-size: 1.6rem;
font-weight: 500;
margin-bottom: 0rem;
padding-left: 2rem;
padding-bottom: -1rem;
font-family: "Brush Script MT", "Segoe Script", cursive;

}

.signature p {
text-align: right;
font-size: 1.6rem;
padding-right: 1rem;
padding-bottom: 0rem;
font-weight: 500;
font-family: "Brush Script MT", "Segoe Script", cursive;
}

.trainer-photos {
  width: 400px;              /* Adjust size as needed */
  aspect-ratio: 3 / 2;        /* 3:2 landscape */
  overflow: hidden;
  margin-left: auto;          /* Push to right */
  padding-right: 3rem;        /* Space from right edge */
padding-bottom: 3rem;
  border-radius: 16px;        /* Rounded corners */
}

.trainer-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Prevent distortion */
  display: block;
  border-radius: 16px;        /* Ensures image corners match */
}



/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  padding: 4rem 1.5rem;
  background: rgb(253,236,216);
  text-align: center;
}

.testimonials h2 {
font-size: 30px;
  margin-bottom: 1rem;
color: rgb(198,183,226);
font-weight: 800;
}

.testimonials p {
font-weight: 600
}

/* Future testimonial cards */
.testimonial-card {
  max-width: 300px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: #fafafa;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #777;
}


/* ============================================
   FOOTER
============================================ */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
}
.social-section {
  background-color: #fffff;
  padding: 30px; 
  text-align: center;
}

.social-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #4b3f5c;

}



.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 14px 26px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Button colors */
.instagram {
  background: radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%
  );
  color: white;
  font-weight: bold;
  border-radius: 8px;
  padding: 14px 26px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.instagram:hover {
  opacity: 0.9;
}

.facebook {
  background-color: #1877F2;
}

.facebook:hover {
  opacity: 0.9;
}



