:root {
  --pink: #f3cbd4;
  --blue: #c6d7f3;
  --beige: #fffaf5;
  --white: #ffffff;
  --text: #333;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Playfair Display", serif;
  background-color: var(--beige);
  color: var(--text);
}
header {
  position: relative;
  background: linear-gradient(to right, var(--pink), var(--blue));
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  margin-left: 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  background-color: var(--white);
}
.hero img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}
.hero-content {
  flex: 1;
  padding: 2rem;
}
.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.hero-content a {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--blue);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}
section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.testimonial, .booking {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
}
footer {
  width: 100%;
  background-color: #f3cbd4;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.separator-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  background-color: var(--beige);
}
.separator-bar::before {
  content: '';
  display: block;
  width: 300px;
  height: 12px;
  background-image: repeating-linear-gradient(to right,
    var(--blue) 0 6px,
    transparent 6px 12px,
    var(--pink) 12px 18px,
    transparent 18px 24px);
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.blog-post {
  background-color: var(--white);
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


.blog-content {
  padding: 2rem;
}

.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.blog-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-post {
  background-color: var(--white);
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-post img {
  width: 30%;
  height: 50%;
  position: center;
  display: block;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: lighter;
}

.contact-section {
  padding: 4rem 1.5rem;
}

.contact-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font: inherit;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}

.checkbox-group input {
  margin-top: 0.2rem;
}

.hidden-field {
  display: none; /* hides honeypot field from humans */
}

.btn-primary {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font: inherit;
}
/* Packages Section */

.package-detail {
  padding-top: 150px; /* adjust based on your header height */
  text-align: center;
}
.packages-section {
  text-align: center;
  padding: 4rem 1.5rem;
  background: #faf8f6; /* soft, coaching-friendly background */
}

.packages-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

.packages-subtitle {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #555;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.package-card {
  display: block;
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.package-card p {
  color: #444;
  margin-bottom: 1.2rem;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Unique Colours */
.package-card.bronze {
  border-top: 6px solid #b08d57; /* warm bronze */
}

.package-card.silver {
  border-top: 6px solid #c0c0c0; /* silver */
}

.package-card.gold {
  border-top: 6px solid #d4af37; /* gold */
}

.package-btn {
  font-weight: bold;
  color: #333;
}

