body {
  font-family: 'Raleway', sans-serif;
  background: #f7f4ef;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  background: linear-gradient(to right, #d8a7b1, #a8bfa3);
  color: #fff;
  padding: 0 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-wrap .btn { margin: 0 10px; }

/* SECTION WRAPPERS */
.section {
  padding: 80px 20px;
}
.light-bg {
  background: #ffffff;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.container.narrow {
  max-width: 800px;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
}
.grid.three-col {
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
}
.grid.two-col {
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn.primary {
  background: #d8a7b1;
  color: #fff;
  border: none;
}
.btn.primary:hover {
  background: #c08b98;
  transform: scale(1.05);
}
.btn.secondary {
  background: #a8bfa3;
  color: #fff;
}
.btn.secondary:hover {
  background: #8ca98c;
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: underline;
}
.footer-links a:hover {
  text-decoration: none;
  color: #d8a7b1;
}

/* ===== CONTACT FORM STYLING ===== */
.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-card h2.section-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  color: #444;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  background: #fefefe;
  transition: border 0.3s, box-shadow 0.3s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #d8a7b1;
  box-shadow: 0 0 0 3px rgba(216,167,177,0.2);
}

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

form button.btn.primary {
  align-self: center;
  background: #d8a7b1;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-size: 1rem;
}

form button.btn.primary:hover {
  background: #c08b98;
  transform: translateY(-2px);
}

#form-status {
  font-size: 1rem;
  color: #333;
  margin-top: 15px;
  text-align: center;
}

/* HERO IMAGE ANIMATION */
.hero-image {
  display: block;
  margin: 0 auto 5px auto; /* Reduced bottom spacing */
  max-width: 350px;          /* Increased size */
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* GALLERY SLIDER STYLES */
.glider-contain {
  position: relative;
  margin-top: 30px;
}
.glider img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.glider img:hover {
  transform: scale(1.02);
}
.glider-prev, .glider-next {
  background: #d8a7b1;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px 16px;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.glider-prev { left: -20px; }
.glider-next { right: -20px; }

/* --- SEO/animation additions --- */

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* Basic header/nav */
.site-header { background:#fff; position:sticky; top:0; z-index:10; box-shadow: 0 1px 6px rgba(0,0,0,.05); }
.site-header .container { display:flex; align-items:center; justify-content:space-between; padding: .75rem 1rem; }
.brand { font-family: 'Playfair Display', serif; font-weight:700; text-decoration:none; color:#333; }
.nav { list-style:none; display:flex; gap:1rem; margin:0; padding:0; }
.nav a { text-decoration:none; color:#333; }
.nav a:hover { text-decoration:underline; }

/* Helpers */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.container.narrow { max-width: 800px; }
.center { text-align:center; }
.rounded { border-radius: 1rem; }
.shadow { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.grid-2 { display:grid; grid-template-columns: 1fr; gap: 2rem; align-items:center; }
@media (min-width: 900px){ .grid-2 { grid-template-columns: 1.2fr .8fr; } }

.checklist { padding-left: 1rem; }
.checklist li { margin: .35rem 0; }

.review { margin: 1rem 0 0; }
.review blockquote { margin: 0; font-size: 1.1rem; font-style: italic; }
.review figcaption { color: #666; margin-top:.25rem; }

.site-footer { padding: 2rem 1rem; text-align:center; color:#666; }

.skip-link{ position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{ left:1rem; top:1rem; width:auto; height:auto; padding:.5rem 1rem; background:#000; color:#fff; z-index:999; }

/* Ensure gallery images don't exceed slide size */
.glider img { width: 100%; height: auto; display:block; }

/* Coaching image sizing */
#coaching img {
  width: 100%;
  max-width: 520px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  margin: 0 auto;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px){ .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.review-card .stars { font-size: 1rem; letter-spacing: 1px; }
.review-card blockquote { margin: .5rem 0 0; font-style: italic; }
.review-card .author { color:#666; margin-top:.5rem; font-size:.95rem; }


/* Nav links style */
nav a {
  text-decoration: none;
  color: inherit;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
nav a:hover,
nav a:focus {
  color: #d8a7b1;
  border-bottom: 2px solid #d8a7b1;
}
.logo img {
  height: 50px;
  width: auto;
}

/* Logo + Brand */
.brand { display:flex; align-items:center; gap:.6rem; text-decoration:none; }
.brand .logo { width:40px; height:40px; border-radius:.5rem; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.brand-text { font-family:'Playfair Display', serif; font-weight:700; color:#333; }

/* Nav links: no underline + elegant hover */
.nav a { 
  position: relative; 
  text-decoration: none; 
  color: #333; 
  padding: .35rem .6rem; 
  border-radius: .6rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .25rem;
  height: 2px;
  background: #d8a7b1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  border-radius: 2px;
}
.nav a:hover::after,
.nav a:focus::after {
  transform: scaleX(1);
}
.nav a:hover,
.nav a:focus {
  outline: none;
  background: rgba(216, 167, 177, .12);
}

/* Remove default underline sitewide for header/footer nav links */
.site-header a, .site-footer a { text-decoration: none; }

/* Brand Band */
.brand-band {
  background: #f7f4ef;
  padding: 2rem 0;
  text-align: center;
}
.brand-band-logo {
  max-width: 160px;
  height: auto;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 1rem;
  background: white;
  padding: .5rem;
}

/* Carousel animated slides */
.glider-track .glider-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.glider-track .glider-slide.active {
  transform: scale(1.02);
  opacity: 1;
}

/* Subtle animation on visible slides */
.glider .glider-slide { transition: transform .45s ease, box-shadow .45s ease; transform: scale(.985); }
.glider .glider-slide.is-active { transform: scale(1); box-shadow: 0 10px 25px rgba(0,0,0,.06); }

/* Ensure no underline for nav links (already set but included for safety) */
.site-header a { text-decoration: none; }

.brand-badge { border-radius: 1.25rem; box-shadow: 0 10px 35px rgba(0,0,0,.08); }
