/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #2a2520;
  --warm: #5e4b3b;
  --accent: #7a6548;
  --light: #f7f4ef;
  --white: #ffffff;
  --gray: #7a7168;
  --link: #c4913b;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Playfair Display', serif; }
h4 { font-family: 'Inter', sans-serif; }

a { color: var(--link); }
a:hover { color: var(--warm); }

.script-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  padding: 1rem 3rem;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  gap: 2rem;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  margin-right: auto;
}
.logo:hover {color: var(--white);}
.navbar.scrolled .logo { color: var(--dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--link); }

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 1001;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: var(--dark) !important;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--light);
  color: var(--link) !important;
}

.btn-book {
  padding: 0.6rem 1.5rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.navbar.scrolled .btn-book { background: var(--dark); color: var(--white); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.navbar.scrolled .mobile-toggle { color: var(--dark); }

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('images/cas.png?w=1920&h=1080&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 0 2rem;
}
.hero-content .hero-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* === Welcome === */
.welcome {
  padding: 6rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.welcome-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.welcome-text p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.link-arrow {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--warm); }

/* === Instructors === */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.instructor-card {
  text-align: center;
}
.instructor-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}
.instructor-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.instructor-title {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.instructor-card > p:last-child {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Services === */
.services {
  padding: 6rem 3rem;
  background: var(--light);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1.3;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-card .card-image {
  position: relative;
  overflow: hidden;
}
.service-card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .card-image img { transform: scale(1.05); }
.card-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 4px;
}
.card-body {
  padding: 1.8rem;
}
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.card-body p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.btn-card {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-card:hover { background: var(--warm); }

/* === Trainer Credentials === */
.trainer-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.credential-tag {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Why Riding === */
.why-riding {
  padding: 6rem 3rem;
  background: var(--light);
  border-bottom: 1px solid #e8e3db;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--sage);
}
.why-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.why-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Pony Camp CTA === */
.camp-cta {
  position: relative;
  padding: 6rem 3rem;
  background: url('images/Photo%2028%2009%202025%2006%2005%2044%209.jpeg') center/cover no-repeat;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.camp-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.camp-cta-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  background: rgba(247,244,239,0.92);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
}
.camp-cta h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--dark);
}
.camp-cta p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.camp-cta-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.camp-stat {
  text-align: center;
}
.camp-stat span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}
.camp-stat small {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.camp-cta .camp-badge {
  font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent);
    text-transform: none;
    margin-bottom: 0.5rem;
    font-weight: 300;
}
.camp-cta .btn-hero {
  background: var(--dark);
  color: var(--white);
}

/* === Pony Camp Highlight (legacy) === */
.camp-highlight {
  padding: 6rem 3rem;
}
.camp-highlight-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.camp-highlight-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.camp-highlight-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.camp-features {
  list-style: none;
  margin-bottom: 2rem;
}
.camp-features li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--dark);
}
.camp-features li::before {
  content: '› ';
  color: var(--accent);
}
.camp-highlight-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.camp-badge {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* === Testimonials === */
.testimonials {
  padding: 5rem 3rem;
  background: var(--light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-card::before {
  content: '«';
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* === Contact === */
.contact {
  padding: 6rem 3rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.contact-info > p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.contact-details a {
  color: var(--link);
  text-decoration: none;
}
.contact-details a:hover { color: var(--warm); text-decoration: underline; }

/* === Contact CTA === */
.contact-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contact-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.contact-cta > p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-cta .contact-details {
  margin-bottom: 0.5rem;
}
.contact-cta .contact-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.contact-cta .contact-details a {
  color: var(--link);
  text-decoration: none;
}
.contact-cta .contact-details a:hover { color: var(--warm); text-decoration: underline; }

/* === Footer === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 3rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1rem 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transition: background 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.3);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer a { color: rgba(255,255,255,0.6); }
.footer a:hover { color: var(--white); }
.footer p { font-size: 0.85rem; }

/* === Horse Profiles === */
.horse-profiles {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.horse-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.horse-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.horse-info {
  padding: 1.8rem;
}
.horse-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}
.horse-tagline {
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.horse-traits {
  list-style: none;
}
.horse-traits li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}
.horse-traits li span {
  font-weight: 600;
  color: var(--dark);
}

/* === Subpage Hero === */
.subpage-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background: url('images/573053580_10164351700166019_8245137297672765293_n.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.subpage-hero.hero-training {
  background: url('images/560900028_24248494034828143_6191559502142492877_n.jpg') center/cover no-repeat;
}
.subpage-hero.hero-resources {
  background: url('images/540121260_10164032370026019_5529345107962958314_n.jpg') center/cover no-repeat;
}

/* === Pony Camp Page === */

/* Urgency Badge */
.urgency-badge {
  display: inline-block;
  background: #c0392b;
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.2rem;
}

/* Urgency Bar */
.urgency-bar {
  background: #c0392b;
  color: var(--white);
  text-align: center;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
.urgency-bar p { margin: 0; }
.urgency-bar strong { font-weight: 700; }
#countdown strong {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Sessions Grid */
.camp-sessions {
  padding: 5rem 3rem;
  background: var(--light);
}
.sessions-subtitle {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.session-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border-top: 3px solid var(--accent);
}
.session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.session-header {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.session-dates {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.session-days {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.session-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.session-deposit {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.session-spots {
  display: inline-block;
  background: #fef3e2;
  color: #b8860b;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Full session state */
.session-card.session-full {
  opacity: 0.55;
  pointer-events: none;
  border-top-color: #ccc;
}
.session-card.session-full:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.session-spots.spots-full {
  background: #e8e3db;
  color: #7a7168;
}

/* Sessions CTA */
.sessions-cta {
  text-align: center;
  max-width: 600px;
  margin: 3rem auto 0;
}
.sessions-cta > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.sessions-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent !important;
  color: var(--dark) !important;
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark) !important;
  color: var(--white) !important;
}

/* Final Signup Section */
.camp-signup-final {
  padding: 5rem 3rem;
  background: var(--light);
}
.camp-signup-final-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.camp-signup-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.camp-signup-final > .camp-signup-final-inner > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.camp-signup-final-inner > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.signup-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.signup-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid #e8e3db;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.signup-contact-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.signup-contact-icon {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  color: var(--accent);
}
.signup-contact-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}
.signup-contact-detail {
  font-size: 0.88rem;
  color: var(--gray);
}
.deadline-note {
  font-size: 0.88rem;
  color: #c0392b;
  font-weight: 500;
}

/* Responsive - Sessions */
@media (max-width: 900px) {
  .sessions-grid { grid-template-columns: repeat(2, 1fr); }
  .signup-contact-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .sessions-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .sessions-cta-buttons { flex-direction: column; align-items: center; }
  .camp-signup-final { padding: 4rem 1.5rem; }
}

.camp-intro {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.camp-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
.camp-intro-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.camp-intro-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.camp-intro-card h4 {
  margin: 1rem 1.2rem 0.3rem;
  font-size: 1.05rem;
}
.camp-intro-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0 1.2rem 1.2rem;
}
.camp-intro-details {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--light);
  border-radius: var(--radius);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.camp-intro-details p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}
.camp-intro-details p:first-child {
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
}
.camp-intro-details a { color: var(--link); }

.camp-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: url('images/Photo 28 09 2025 06 05 44 9.jpeg?w=1920&h=1080&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.camp-detail {
  padding: 5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.camp-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.camp-detail p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.camp-schedule {
  padding: 4rem 3rem;
  background: var(--light);
}
.camp-schedule-inner {
  max-width: 900px;
  margin: 0 auto;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.schedule-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.schedule-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.schedule-item p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}
.camp-signup {
  padding: 5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.camp-signup h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.camp-signup > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
}
.camp-signup > a {
  display: inline-block;
}

/* === Pricing Section === */
.pricing-section {
  padding: 5rem 3rem;
  border-bottom: 3px solid var(--light);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.pricing-card-featured {
  border-top-color: var(--accent);
  background: var(--light);
}
.pricing-card-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.pricing-card-note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pricing-tier {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-top: 1px solid #e8e3db;
}
.pricing-tier-row:first-child {
  border-top: none;
}
.pricing-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  display: block;
}
.pricing-detail {
  font-size: 0.8rem;
  color: var(--gray);
  display: block;
  margin-top: 0.15rem;
}
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.pricing-amount small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray);
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* === Responsive === */
@media (max-width: 900px) {
  .nav-links, .btn-book { display: none; }
  .mobile-toggle { display: block; }
  .navbar { padding: 1rem 1.5rem; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav-links.open a { color: var(--dark); }
  .hero-content h1 { font-size: 2.4rem; }
  .welcome-grid { grid-template-columns: 1fr; gap: 2rem; }
  .welcome-image img { height: 350px; }
  .service-cards { grid-template-columns: 1fr; max-width: 500px; }
  .camp-highlight-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .nav-links.open .dropdown-menu { display: block; position: static; box-shadow: none; padding-left: 1rem; }
  .instructors-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .camp-intro-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .welcome, .services, .contact, .camp-highlight, .why-riding, .horse-profiles { padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .pricing-section { padding: 4rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .profiles-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.8rem; }
  .why-grid { grid-template-columns: 1fr; }
}

/* === Chat Widget === */
.chat-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.chat-toggle:hover { background: var(--warm); transform: scale(1.05); }
.chat-toggle svg { width: 26px; height: 26px; fill: currentColor; }

.chat-box {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 340px;
  max-height: 460px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-box.open { display: flex; }

.chat-header {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.chat-header small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 300px;
}
.chat-msg {
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 85%;
}
.chat-msg.bot {
  background: var(--light);
  color: var(--dark);
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--dark);
  color: var(--white);
  align-self: flex-end;
}

.chat-input-row {
  display: flex;
  border-top: 1px solid #e8e3db;
}
.chat-input-row input {
  flex: 1;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.chat-input-row button {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.chat-input-row button:hover { background: var(--warm); }

@media (max-width: 600px) {
  .chat-box { width: calc(100vw - 2rem); right: 1rem; }
}

/* === Legal Page === */
.legal-content {
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 3rem;
}
.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light);
}
.legal-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}
.legal-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.legal-section a { color: var(--link); }
.footer-legal {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--white); }

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10000;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; max-width: 600px; }
.cookie-banner a { color: var(--link); }
.cookie-btn {
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-accept {
  background: var(--white);
  color: var(--dark);
}
.cookie-accept:hover { background: var(--light); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-decline:hover { border-color: var(--white); color: var(--white); }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1.5rem;
    gap: 0.8rem;
  }
}

/* === Resources Page === */
.resource-page {
  padding: 4rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.resource-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e3db;
}
.resource-nav a {
  padding: 0.5rem 1rem;
  background: var(--light);
  color: var(--dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.resource-nav a:hover {
  background: var(--dark);
  color: var(--white);
}
.resource-section {
  margin-bottom: 3.5rem;
}
.resource-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light);
}
.resource-intro {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.resource-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.resource-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.resource-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}
.resource-list {
  list-style: none;
  padding: 0;
}
.resource-list li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}
.resource-list li::before {
  content: '› ';
  color: var(--accent);
}
.resource-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.resource-columns h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

/* FAQ */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}
.price-info h4 { margin-bottom: 0.2rem; }
.price-info p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  margin-left: 2rem;
}

@media (max-width: 600px) {
  .price-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .price-tag { margin-left: 0; }
}

/* Download Cards */
.download-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow 0.2s, transform 0.2s;
}
.download-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.download-card h4 { margin-bottom: 0.2rem; }
.download-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 1.5rem 1rem;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item a { color: var(--link); }

@media (max-width: 900px) {
  .resource-grid { grid-template-columns: 1fr; }
  .resource-columns { grid-template-columns: 1fr; }
  .resource-page { padding: 3rem 1.5rem; }
}

/* === Image Protection === */
img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
