/**
* Template Name: Mentor - Modernized for St. Mary's Kyimuu
* Updated with professional styling
*/

/*--------------------------------------------------------------
# General - Modern Reset
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #2d3e2d;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #2c6e2c;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffb347;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #1a3b2a;
}

/*--------------------------------------------------------------
# Back to top button - Modern
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: #2c6e2c;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 100%;
  height: 100%;
  color: #fff;
}

.back-to-top:hover {
  background: #ffb347;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e8f5e9;
  border-top-color: #2c6e2c;
  border-bottom-color: #ffb347;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Header - Modern & Clean
--------------------------------------------------------------*/
#header {
  background: linear-gradient(135deg, #0a2a1a 0%, #1a4a2a 100%);
  transition: all 0.3s;
  z-index: 997;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: white;
}

#header .logo a:hover {
  color: #ffd966;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Navigation Menu - Improved
--------------------------------------------------------------*/
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #ffd966;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 12px;
  min-width: 200px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down ul a {
  padding: 10px 24px;
  font-size: 14px;
  color: #2d3e2d;
}

.nav-menu .drop-down ul a:hover {
  color: #2c6e2c;
  background: #f5f9f5;
}

/*--------------------------------------------------------------
# Hero Section - Modern Overlay
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

#hero:before {
  content: "";
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  margin-top: 15px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 25px;
  background: #2c6e2c;
  color: #fff;
  border: none;
}

#hero .btn-get-started:hover {
  background: #ffb347;
  color: #1a3b2a;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #hero h1 { font-size: 32px; }
  #hero h2 { font-size: 18px; }
}

/*--------------------------------------------------------------
# Sections General - Modern Spacing
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f8fbf8;
}

.section-title {
  padding-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2c6e2c;
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
  /* REMOVE ANY STRIKETHROUGH */
  text-decoration: none !important;
}

.section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ffb347;
  display: inline-block;
  margin: 4px 12px;
  border-radius: 3px;
}

.section-title p {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #1a3b2a;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title p { font-size: 28px; }
  section { padding: 60px 0; }
}

/*--------------------------------------------------------------
# About - Modern Cards
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: #1a3b2a;
}

.about .card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: none;
  transition: transform 0.3s;
}

.about .card:hover {
  transform: translateY(-5px);
}

.about img {
  border-radius: 24px;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Counts - Modern Numbers
--------------------------------------------------------------*/
.counts {
  padding: 50px 0;
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f3e8 100%);
}

.counts .counters span {
  font-size: 52px;
  font-weight: 800;
  color: #2c6e2c;
  display: block;
}

.counts .counters p {
  font-size: 16px;
  font-weight: 600;
  color: #4a6e4a;
  margin-top: 8px;
}

/*--------------------------------------------------------------
# Why Us - Modern & Expandable
--------------------------------------------------------------*/
.why-us {
  background: #ffffff;
}

.why-us .content {
  padding: 20px;
}

.why-us .content h4 {
  font-size: 32px;
  font-weight: 700;
  color: #1a3b2a;
  margin-bottom: 20px;
}

.why-us .content .lead {
  font-size: 1.2rem;
  color: #4a6e4a;
}

.extra-details-wrapper ul {
  list-style: none;
  padding-left: 0;
}

.extra-details-wrapper ul li {
  margin-bottom: 1.2rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.5;
}

.extra-details-wrapper ul li::before {
  content: "✓";
  color: #2c6e2c;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.extra-details-wrapper ul strong {
  display: block;
  color: #1a4a2a;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/*--------------------------------------------------------------
# Trainers / Classes - Modern Cards
--------------------------------------------------------------*/
.trainers .member {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.08);
  border: none;
  height: 100%;
}

.trainers .member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

.trainers .member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.trainers .member .member-content {
  padding: 1.5rem;
}

.trainers .member h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a3b2a;
  margin-bottom: 5px;
}

.trainers .member span {
  font-size: 0.85rem;
  color: #2c6e2c;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.trainers .member .social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.trainers .member .social ul li {
  padding: 5px 0;
}

.trainers .member .social ul li a {
  color: #4a6e4a;
  transition: 0.2s;
}

.trainers .member .social ul li a:hover {
  color: #ffb347;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Contact - Modern
--------------------------------------------------------------*/
.contact .info {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact .info i {
  font-size: 24px;
  color: #2c6e2c;
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.contact .info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a3b2a;
}

/*--------------------------------------------------------------
# Footer - Modern Dark
--------------------------------------------------------------*/
#footer {
  background: #0a2a1a;
  color: #c8e0c8;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .footer-top h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul a {
  color: #c8e0c8;
  transition: 0.2s;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffb347;
  padding-left: 5px;
}

#footer .footer-newsletter form {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50px;
  padding: 5px 10px;
}

#footer .footer-newsletter form input[type="email"] {
  background: transparent;
  color: white;
}

#footer .footer-newsletter form input[type="submit"] {
  background: #2c6e2c;
  color: white;
  border-radius: 50px;
  padding: 8px 25px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #ffb347;
  color: #0a2a1a;
}

#footer .social-links a {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

#footer .social-links a:hover {
  background: #ffb347;
  color: #0a2a1a;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Responsive Fixes
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: inline-block;
  }
  .nav-menu {
    display: none;
  }
}

/* Ensure NO strikethrough anywhere */
h1, h2, h3, h4, h5, h6, p, span, a, .section-title h2 {
  text-decoration: none !important;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Modern button styles */
.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2c6e2c;
  color: white;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 40px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.more-btn:hover {
  background: #ffb347;
  color: #1a3b2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}