/*!
 * TRIPA Coaching Custom Stylesheet
 * @version 1.0.0
 * @author Alexis del Rio
 * Description: Mobile-first, DRY-styled adjustments for tripa.ai/coaching
 */

/* =============================
   00. Reset + Structural Cleanup
   ============================= */
body.page-id-XXXX .elementor-section {
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

/* =============================
   01. Header & Navigation
   ============================= */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 20px;
}

.site-header .custom-logo {
  max-height: 55px;
  height: auto;
  width: auto;
}

.site-header .site-navigation ul {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .site-header .site-navigation ul {
    flex-direction: column;
    padding-top: 10px;
  }
}

/* ===========================
 * 🧭 NAVIGATION STYLING — DRY, MODULAR
 * =========================== */
.main-navigation {
  background-color: var(--e-global-color-secondary, #384259);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 0.5rem 1rem;
  color: #fff;
  font-family: inherit;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.main-navigation .menu-item {
  display: inline-block;
}
.main-navigation .menu-item a,
.main-navigation .menu-item a:visited {
  font-size: 16px;
  color: #fff;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  transition: background 0.16s, color 0.18s;
}
.main-navigation .menu-item a:hover,
.main-navigation .menu-item.current-menu-item a {
  color: #fff;
  background: var(--e-global-color-accent, #954A89);
}
/* -- Special Button styles for CTAs like LOGIN or BUSINESS -- */
.main-navigation .menu-item.menu-item-button > a {
  background: var(--e-global-color-accent, #954A89);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(56,66,89,0.06);
  border-radius: 8px;
  margin-left: 10px;
  padding: 0.6rem 1.5rem;
}
.main-navigation .menu-item.menu-item-button > a:hover {
  background: #fff !important;
  color: var(--e-global-color-accent, #954A89) !important;
  border: 1px solid var(--e-global-color-accent, #954A89);
}
/* Responsive */
@media (max-width: 900px) {
  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .main-navigation .menu-item a {
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0.7rem 1rem;
  }
}

/* =============================
   02. Hero Section
   ============================= */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

.hero-section h1,
.hero-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--e-global-color-primary);
}

.hero-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto;
}

/* =============================
   03. Testimonial Section
   ============================= */
.testimonial-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--e-global-color-primary);
}

.testimonial-item {
  background: #ffffff;
  margin: 0 auto 30px;
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  font-style: italic;
}

.testimonial-item footer {
  margin-top: 20px;
  font-weight: 600;
  color: var(--e-global-color-secondary);
}

/* =============================
   04. Footer
   ============================= */
.site-footer {
  background: #111;
  color: #eee;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
}

/* =============================
   05. Responsive Fixes
   ============================= */
@media screen and (max-width: 767px) {
  .testimonial-item {
    padding: 20px 15px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .site-header .custom-logo {
    max-height: 45px;
  }
}

/* =============================
   06. Utilities
   ============================= */
.text-primary {
  color: var(--e-global-color-primary);
}

.bg-soft {
  background-color: #f4f6f8;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 3rem;
}

.p-4 {
  padding: 1.5rem;
}

.shadow-sm {
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
