/* Adventure Ahead Family Coaching - Faithful Wix Replica */
/* Color palette extracted from original Wix site CSS variables */

:root {
  --sage-green: #9CA88D;
  --sage-light: #B5BFA8;
  --sage-dark: #7A8A6B;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --dark-text: #2B2B2B;
  --medium-text: #4A4A4A;
  --light-text: #6B6B6B;
  --border-color: #C5CDB8;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.12);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--sage-green);
  color: var(--dark-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--dark-text); text-decoration: none; }
a:hover { color: var(--sage-dark); }

img { max-width: 100%; height: auto; }

/* === HEADER & NAVIGATION === */
.site-header {
  background: var(--sage-green);
  border-bottom: 2px solid var(--sage-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
}

.site-logo {
  display: none; /* Logo is text-based in the original */
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a,
.main-nav > ul > li > .dropdown-trigger {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--dark-text);
  text-transform: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > .dropdown-trigger:hover,
.main-nav > ul > li > a.active {
  color: var(--white);
}

/* Dropdown menus */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--sage-light);
  min-width: 220px;
  border: 1px solid var(--border-color);
  z-index: 200;
  list-style: none;
  box-shadow: var(--card-shadow);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 400;
  color: var(--dark-text);
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: var(--sage-green);
  color: var(--white);
}

li:hover > .dropdown-menu {
  display: block;
}

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark-text);
  padding: 8px;
}

/* === DIVIDER LINES === */
.divider {
  max-width: 900px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--sage-dark);
}

.divider-thick {
  border-top-width: 2px;
}

/* === PAGE CONTENT === */
.page-content {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* === HERO SECTION (Home) === */
.hero {
  text-align: center;
  padding: 50px 20px 30px;
}

.hero-box {
  max-width: 900px;
  margin: 30px auto;
  display: flex;
  background: var(--white);
  border: 4px solid var(--border-color);
  overflow: hidden;
}

.hero-image {
  flex: 0 0 50%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-text h2 {
  font-size: 18px;
  font-weight: 400;
  color: var(--medium-text);
  margin-bottom: 20px;
}

.hero-text .tagline {
  font-size: 14px;
  font-weight: 400;
  color: var(--medium-text);
  line-height: 1.8;
}

/* === SECTION HEADINGS === */
.section-heading {
  text-align: center;
  padding: 30px 0 15px;
}

.section-heading h1,
.section-heading h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-text);
}

/* === COACHING PAGES (Category Cards) === */
.coaching-intro {
  max-width: 800px;
  margin: 20px auto 30px;
  background: var(--white);
  padding: 30px 35px;
  border: 3px solid var(--border-color);
}

.coaching-intro h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.coaching-intro p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--medium-text);
}

.coaching-header-image {
  max-width: 900px;
  margin: 20px auto;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.coaching-header-image .left-img {
  flex: 0 0 40%;
  overflow: hidden;
}

.coaching-header-image .right-img {
  flex: 1;
  overflow: hidden;
}

.coaching-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-cards {
  max-width: 900px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card {
  background: var(--white);
  border: 3px solid var(--border-color);
  display: flex;
  align-items: stretch;
  min-height: 100px;
  overflow: hidden;
}

.category-card .card-content {
  flex: 1;
  padding: 20px 25px;
}

.category-card .card-content h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.category-card .card-content p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--medium-text);
}

.category-card .card-image {
  flex: 0 0 180px;
  overflow: hidden;
}

.category-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 12px;
  font-style: italic;
  color: var(--light-text);
}

/* === TEAM PROFILES === */
.team-section {
  max-width: 800px;
  margin: 20px auto 40px;
}

.team-member {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
  padding: 25px 0;
}

.team-member:not(:last-child) {
  border-bottom: 1px solid var(--sage-dark);
}

.team-member .member-photo {
  flex: 0 0 200px;
}

.team-member .member-photo img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border: 4px solid var(--border-color);
  transform: rotate(-2deg);
}

.team-member .member-info {
  flex: 1;
}

.team-member .member-info h2 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.team-member .member-info .role {
  font-size: 13px;
  font-weight: 500;
  color: var(--medium-text);
  margin-bottom: 15px;
  font-style: italic;
}

.team-member .member-info p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--medium-text);
  margin-bottom: 10px;
}

.team-member .member-info blockquote {
  font-size: 12px;
  line-height: 1.7;
  color: var(--medium-text);
  font-style: italic;
  border-left: 3px solid var(--sage-dark);
  padding-left: 15px;
  margin: 15px 0;
}

.certification-badge {
  width: 100px;
  height: auto;
  margin-top: 10px;
}

/* === PROCESS STEPS === */
.process-section {
  max-width: 800px;
  margin: 20px auto 40px;
}

.process-intro {
  font-size: 13px;
  line-height: 1.8;
  color: var(--medium-text);
  margin-bottom: 30px;
  text-align: center;
}

.process-hero {
  max-width: 600px;
  margin: 20px auto 30px;
  text-align: center;
}

.process-hero img {
  width: 100%;
  border: 4px solid var(--border-color);
}

.process-step {
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
}

.process-step .step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: var(--sage-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.process-step h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--medium-text);
}

/* === TESTIMONIALS === */
.testimonials-section {
  max-width: 800px;
  margin: 20px auto 40px;
}

.testimonial-image {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border: 4px solid var(--border-color);
  transform: rotate(1deg);
}

.testimonial {
  margin-bottom: 25px;
  padding: 20px 25px;
  background: rgba(255,255,255,0.15);
  border-left: 3px solid var(--white);
}

.testimonial p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--dark-text);
  font-style: italic;
}

.testimonial .attribution {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-text);
  font-style: normal;
  margin-top: 8px;
  text-align: right;
}

/* === LOCATION PAGE === */
.location-section {
  max-width: 800px;
  margin: 20px auto 40px;
}

.location-top {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.location-info {
  flex: 1;
}

.location-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-info p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--medium-text);
}

.location-info .details-list {
  list-style: none;
  margin-top: 15px;
}

.location-info .details-list li {
  font-size: 12px;
  padding: 3px 0;
  color: var(--medium-text);
}

.location-photo {
  flex: 0 0 320px;
}

.location-photo img {
  width: 100%;
  border: 4px solid var(--border-color);
  transform: rotate(2deg);
}

.google-map {
  margin: 20px 0 30px;
}

.google-map iframe {
  width: 100%;
  height: 350px;
  border: 3px solid var(--border-color);
}

.nearby-section h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.nearby-category h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.nearby-category ul {
  list-style: none;
}

.nearby-category ul li {
  font-size: 12px;
  padding: 3px 0;
  color: var(--medium-text);
}

/* === CONTACT FORM === */
.contact-section {
  max-width: 700px;
  margin: 20px auto 40px;
}

.contact-section .contact-intro {
  font-size: 13px;
  line-height: 1.8;
  color: var(--medium-text);
  margin-bottom: 25px;
  text-align: center;
}

.contact-image {
  text-align: center;
  margin-bottom: 25px;
}

.contact-image img {
  max-width: 300px;
  border: 4px solid var(--border-color);
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border: 3px solid var(--border-color);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  color: var(--dark-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  border: 1px solid #ccc;
  background: #fafafa;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  display: inline-block;
  background: var(--sage-dark);
  color: var(--white);
  padding: 12px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.submit-btn:hover {
  background: var(--dark-text);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  margin-top: 15px;
  font-size: 14px;
  color: #2e7d32;
}

.form-error {
  display: none;
  text-align: center;
  padding: 20px;
  background: #fce4ec;
  border: 1px solid #ef9a9a;
  margin-top: 15px;
  font-size: 14px;
  color: #c62828;
}

/* === FOOTER === */
.site-footer {
  background: var(--sage-green);
  border-top: 2px solid var(--sage-dark);
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  font-size: 11px;
  color: var(--dark-text);
  line-height: 2;
}

.footer-inner a {
  color: var(--dark-text);
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }

  .header-inner {
    justify-content: space-between;
  }

  .main-nav > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sage-green);
    flex-direction: column;
    border-top: 1px solid var(--sage-dark);
    z-index: 300;
  }

  .main-nav > ul.open { display: flex; }

  .main-nav > ul > li > a,
  .main-nav > ul > li > .dropdown-trigger {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--sage-dark);
  }

  .dropdown-menu li a {
    padding-left: 35px;
    color: var(--white);
  }

  .hero-box { flex-direction: column; }
  .hero-image { flex: none; }

  .coaching-header-image { flex-direction: column; }
  .team-member { flex-direction: column; gap: 15px; }
  .team-member .member-photo { flex: none; text-align: center; }
  .team-member .member-photo img { width: 180px; height: 220px; }
  .location-top { flex-direction: column; }
  .location-photo { flex: none; }
  .nearby-grid { grid-template-columns: 1fr; }
  .category-card { flex-direction: column; }
  .category-card .card-image { flex: none; height: 150px; }
}
