/*
 * Custom CSS
 */

:root {
  --bs-body-bg: var(--bs-gray-100);
  --bs-primary: #14213c; /* e.g., #ff5733 */
  --bs-primary-rgb: 20, 33, 60; /* Required for some utilities like background opacity */
  --bs-secondary: #c3e92d; /* e.g., #ff5733 */
  --bs-secondary-rgb: 195, 233, 45; /* Required for some utilities like background opacity */
  --bs-font-sans-serif: "Roboto", sans-serif;
  --bs-body-font-size: 18px;
}

/* Headings + nav + buttons */
h1, h2, h3,
.navbar,
.btn {
  font-family: 'Oswald', sans-serif;
}

/* Body text */
body {
  font-family: 'Roboto', sans-serif;
}

/* Header TOP */
.header-top {
    background-color: var(--bs-secondary);
    padding: 9px 0;
    font-size: 0.8em;
}

.header-top .header-top-container {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 1440px;
}



/* MOBILE */
.header-top-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

@media (min-width: 992px) {
  .header-top-inner {
    flex-direction: row;           /* back to horizontal */
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.header-top-inner .address {
    display: flex;
    display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

    gap: 39px;
}

@media (min-width: 992px) {
  .header-top-inner .address {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}

.header-top-inner .address address {
  margin: 0;
}

/* MOBILE (default) */
.header-top .address address {
  display: none; /* hide location */
}

@media (min-width: 992px) {
  .header-top .address address {
    display: block;
  }
}

.header-top a,
.header-top span {
  color: #14213c;
  text-decoration: none;
}

.header-top a:hover {
  text-decoration: underline;
}

.social-icon a {
  color: #14213c; /* navy */
  margin-left: 15px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.social-icon a:hover {
  color: var(black);
}

.header-top i {
  opacity: 0.9;
}

.header-top .address i {
  margin-right: 8px;
  font-size: 14px;
  position: relative;
  top: -1px; /* subtle alignment fix */
}

.header-top .address {
  display: flex;
  gap: 25px;
  align-items: center;
}


/* LOGO */


@media only screen and (max-width: 1366px) {
  .header-inner .logo {
        float: left;
        padding: 0 30px;
  }
}

.header-inner .logo {
    margin-bottom: 17px;
    margin-top: 16px;
}

/* =========================
   NAVBAR BASE
========================= */
.navbar .nav-link {
  color: #fff;
  transition: color 0.2s ease;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 0.95em;
  border-top: 1px solid rgba(255,255,255,0.30);
  position: relative;
}

.navbar .nav-item:first-child .nav-link {
  border-top: none;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--bs-secondary);
}

/* Remove dropdown arrow */
.navbar .dropdown-toggle::after {
  display: none;
}


/* =========================
   MOBILE FIRST (DEFAULT)
========================= */

/* Let Bootstrap handle dropdown visibility */
.navbar .dropdown-menu {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* Submenu items */
.navbar .dropdown-item {
  color: #fff;
  padding: 12px 0 12px 30px;
  border-top: 1px solid rgba(255,255,255,0.30);
  letter-spacing: 1px;
}

.navbar .dropdown-item:hover {
  color: var(--bs-secondary);
  background-color: transparent;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important;
  color: var(--bs-secondary) !important;
}

/* Prevent dropdown toggle turning green on tap */
.navbar .nav-item.dropdown .nav-link.show {
  color: #fff;
}

/* =========================
   DESKTOP OVERRIDES
========================= */
@media (min-width: 992px) {

  .navbar .nav-link {
    border-top: none;
  }

  /* Dropdown container */
  .navbar .dropdown-menu {
    display: block;
    position: absolute;

    background-color: black;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    min-width: 220px;
    border-radius: 0;
    padding: 0;
    margin-top: 0;

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
  }

  .navbar .dropdown-menu li:first-child .dropdown-item {
  border-top: none;
}

  /* Hover behaviour */
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Desktop dropdown items */
  .navbar .dropdown-item {
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.30);
  }

  .navbar .dropdown-item:hover {
    background-color: rgba(255,255,255,0.03);
  }
}



/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* =========================
   CAROUSEL
========================= */

.carousel,
.carousel-inner,
.carousel-item {
  height: 80vh;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 3;
}

/* Slide container */
.carousel-item {
  height: 80vh;
  position: relative;
  align-items: center;
}

/* Image background */
.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Centered (explicit) */
.carousel-img.img-center {
  object-position: center;
}

/* Bottom aligned */
.carousel-img.img-bottom {
  object-position: center bottom;
}

/* Top aligned */
.carousel-img.img-top {
  object-position: center top;
}

/* Overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Content wrapper */
.carousel-item .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;              /* 🔥 move flex here */
  align-items: center;        /* vertical center */
  justify-content: flex-start;
  padding-left: 60px;
}

/* Caption (RESET Bootstrap properly) */

/* Hide ALL caption elements by default */
.carousel-caption > * {
  opacity: 0;
  transform: translateY(20px);
}

/* Animate when active */
.carousel-item.active .carousel-caption > * {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Stagger properly */
.carousel-item.active .carousel-caption h2 {
  transition-delay: 0.2s;
}

.carousel-item.active .carousel-caption p {
  transition-delay: 0.4s;
}

/* .carousel-item.active .carousel-caption .btn {
  transition-delay: 0.6s;
} */

.carousel-caption .btn {
  transition: all 0.3s ease;
}

.carousel-caption {
  max-width: 420px;   /* keeps it left-block like reference */
}

.carousel-caption h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;   /* ~56px */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  transform: translateY(20px) scale(0.98);
}

.carousel-item.active .carousel-caption h2 {
  transform: translateY(0) scale(1);
}

.carousel-caption p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #fff;
}


/* MAIN INTRO */
.intro {
  padding: 80px 0;
  background: #fff;
  position: relative;
  z-index: 5;
  

}

.intro h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 20px;
  text-transform: uppercase;
}

.intro .lead {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #444;
}

.intro-buttons .btn {
  min-width: 160px;
}



/*------------------------/*

/* =========================
   SECTION BASE
========================= */

.section {
  padding: 80px 0;
}

.section-light {
  background: #fff;
}

.section-grey {
  background: #f2f2f2;
}


.section-text {
  /* max-width: 500px; */
}

.section-text-left {
  padding-right: 40px;
}

.section-text-right {
  padding-left: 40px;
}

.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
}

.section-heading::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--bs-secondary);
  margin-bottom: 10px;
}

.section-heading.center::before {
  margin: 0 auto 10px;;
}

.section-lead {
  /* font-size: 1.2rem; */
  /* font-weight: 500; */
  /* color: #333; */
  color: #666;
}

.section p {
  color: #666;
  margin-bottom: 12px;
}

.section-close {
  /* font-weight: 600; */
  color: #666;
  margin-top: 10px;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #666;
}

.section-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  /* font-weight: 500; */
  /* color: #222; */
}

.section-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--bs-secondary);
  position: absolute;
  left: 0;
  top: 8px;
}

.section-img img {
  border-radius: 6px;
  max-height: 550px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


h1.header {
  font-weight: 600;
  font-size: 2.6em;
  text-transform: uppercase;
}
/* =========================
   BENEFITS SECTION
========================= */

.section-dark {
  background: #14213c; /* your navy */
  color: #fff;
}

.benefits {
  padding: 80px 0;
}

/* Item */
.benefit-item {
  padding: 20px;
}

/* Icon */
.benefit-icon {
  font-size: 2rem;
  color: var(--bs-secondary); /* green */
  margin-bottom: 15px;
}

/* Heading */
.benefit-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Text */
.benefit-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}



/* =========================
   PAGE HERO SECTION
========================= */
.page-hero {
  padding: 30px 0;
}

/* =========================
   COACH SECTION
========================= */

.coach .section-img img {
  object-position: center top; /* good for portraits */
}

.coach-cred {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}


/* =========================
   CTA SECTION
========================= */

.section-cta {
  background: #14213c; /* your navy */
  color: #fff;
}

/* Heading */
.cta-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Subtext */
p.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
}

/* Buttons */
.cta-buttons .btn {
  padding: 14px 28px;
  font-weight: 600;
}

/* Solid brand button */
.btn-brand-outline {
  color: #c3e92d;
  border: 2px solid #c3e92d;
  background-color: transparent;
  font-weight: 500;
}

.btn-brand-outline:hover {
  color: #14213c;
  background-color: #c3e92d;
  border-color: #c3e92d;
}

.btn-brand {
  background-color: #c3e92d;
  color: #14213c; /* navy text = readable */
  border: 2px solid #c3e92d;
  font-weight: 500;
  /* box-shadow: 0 10px 20px rgba(195,233,45,0.25); */
}

.btn-brand:hover {
  background-color: #14213c;
  color: var(--bs-secondary);
  border-color: #14213c;
}

.btn-brand-dark {
  background-color: #c3e92d;
  color: #14213c; /* navy text = readable */
  border: 2px solid #c3e92d;
  font-weight: 500;
  /* box-shadow: 0 10px 20px rgba(195,233,45,0.25); */
}

.btn-brand-dark:hover {
  background-color: #14213c;
  color: var(--bs-secondary);
  border-color: #c3e92d;
}

.btn-brand {
  /* background-color: var(--bs-secondary);
  color: #14213c;
  border: 2px solid var(--bs-secondary);
  font-weight: 600; */
}

/* 🔥 REVERSE */
.btn-brand:hover {

}

/* Outline button (you already have this) */
.btn-brand-outline {
  color: var(--bs-secondary);
  border: 2px solid var(--bs-secondary);
  background: transparent;
}

.btn-brand-outline:hover {
  background: var(--bs-secondary);
  color: #14213c;
}

.btn-dark {
  background-color: #14213c;
  border-color: #14213c;
  color: #fff;
}

/* 🔥 HOVER OVERRIDE */
.btn-dark:hover {
  background-color: transparent;
  color: #14213c;
  border-color: #14213c;
}

@media (max-width: 991px) {

  .cta-heading {
    font-size: 2.2rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}


/* .section-grey .section-heading {
  text-align: center;
} */

/* .section-grey .section-heading::before {
  margin: 0 auto 10px;
} */


/* =========================
   FOOTER
========================= */


.footer {
  /* background: #0f1b31;  */
  background: #0b1426;
  color: #fff;
  padding: 70px 0 30px;
}

/* Brand */
.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* Headings */
.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

/* Nav */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0;
  font-size: 0.85em;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 4px 0;
  transition: all 0.25s ease;
}

/* Hover colour */
.footer-nav a:hover {
  color: #ffffff;
}

/* Underline animation */
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--bs-secondary);
  transition: width 0.25s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Contact */
.footer-contact {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
}

/* Social */
.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--bs-secondary);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}


/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 4px;
  padding: 12px;
}

/* .contact-form button {
  width: 100%;
} */