/* === MODERN QI GONG INSPIRED DESIGN === */
/* Warm, flowing, zen aesthetic with gold accents */

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

:root {
  --sage: #8ba888;
  --seafoam: #9dc4b5;
  --soft-teal: #6ea99c;
  --gold: #c9a96e;
  --gold-light: #e2cf9e;
  --warm-white: #fdf9f3;
  --sand: #f0e8da;
  --earth: #a68b6b;
  --cream: #faf8f2;
  --pale-blue: #eef5f2;
  --charcoal: #3a3a38;
  --charcoal-light: #6b6860;
  --mist: rgba(253, 249, 243, 0.75);
  --energy-glow: rgba(139, 168, 136, 0.15);
  --gold-glow: rgba(201, 169, 110, 0.12);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Josefin Sans", sans-serif;
  background-color: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.8;
  position: relative;
  min-height: 100vh;
}

/* Atmospheric background layers */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, var(--energy-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(157, 196, 181, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, var(--gold-glow) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Energy flow particles */
.energy-particle {
  position: fixed;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
  animation: float-particle 30s infinite ease-in-out;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 35s; background: var(--sage); }
.particle-2 { top: 40%; left: 30%; animation-delay: 3s; animation-duration: 30s; background: var(--gold); }
.particle-3 { top: 60%; left: 70%; animation-delay: 6s; animation-duration: 32s; background: var(--sage); }
.particle-4 { top: 80%; left: 50%; animation-delay: 9s; animation-duration: 38s; background: var(--gold); }
.particle-5 { top: 30%; right: 15%; animation-delay: 12s; animation-duration: 34s; background: var(--sage); }

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  25% { transform: translate(30px, -50px) scale(1.5); opacity: 0.25; }
  50% { transform: translate(-20px, -100px) scale(1); opacity: 0.2; }
  75% { transform: translate(40px, -150px) scale(1.3); opacity: 0.25; }
}

/* Main container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Ensure hero container is fully centered */
.hero.container {
  display: flex;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ===================== */
/* Header/Banner         */
/* ===================== */
.banner {
  background: linear-gradient(135deg, var(--soft-teal) 0%, var(--seafoam) 50%, var(--sage) 80%, var(--gold-light) 100%);
  padding: 2rem 0;
  position: relative;
  box-shadow: 0 10px 40px rgba(139, 168, 136, 0.15);
  overflow: hidden;
}

.banner::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--warm-white));
  pointer-events: none;
}

/* CSS Custom Logo with Abril Fatface */
.css-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
}

.logo-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 12px 50px rgba(139, 168, 136, 0.25),
    0 0 0 3px rgba(201, 169, 110, 0.2),
    inset 0 5px 30px rgba(255, 255, 255, 0.9);
  border: 4px solid rgba(255, 255, 255, 0.95);
  z-index: 10;
  transition: all 0.4s ease;
}

.logo-text-main {
  font-family: 'Abril Fatface', serif;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--soft-teal);
  text-align: center;
  line-height: 0.85;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow:
    2px 2px 0px rgba(255, 255, 255, 0.9),
    3px 3px 15px rgba(139, 168, 136, 0.3);
  transition: all 0.3s ease;
}

.logo-text-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 1;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.logo-flow-line {
  width: 80px;
  height: 1px;
  background: var(--soft-teal);
  margin: 0.6rem auto;
  border-radius: 2px;
  opacity: 0.6;
}

.css-logo:hover .logo-circle {
  transform: scale(1.03);
  box-shadow:
    0 18px 60px rgba(139, 168, 136, 0.35),
    0 0 0 3px rgba(201, 169, 110, 0.3),
    inset 0 5px 35px rgba(255, 255, 255, 0.95);
}

.css-logo:hover .logo-text-main {
  color: var(--seafoam);
  text-shadow:
    2px 2px 0px rgba(255, 255, 255, 0.95),
    4px 4px 20px rgba(139, 168, 136, 0.5);
}

.css-logo:hover .logo-text-sub {
  letter-spacing: 8px;
  color: var(--soft-teal);
}

/* Old logo styles (keeping for fallback) */
.logo {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid var(--cream);
  box-shadow: 0 10px 50px rgba(139, 168, 136, 0.3),
              0 0 60px var(--energy-glow);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: gentle-pulse 4s ease-in-out infinite;
}

.logo:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 15px 70px rgba(0, 0, 0, 0.4),
              0 0 100px var(--energy-glow);
}

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ===================== */
/* Navigation            */
/* ===================== */
.navbar {
  text-align: center;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background: rgba(253, 249, 243, 0.85);
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(253, 249, 243, 0.95);
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar a {
  display: inline-block;
  margin: 0 1.5rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 300;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease;
}

/* Keep ::before for backward compat but hide it */
.navbar a::before {
  display: none;
}

.navbar a:hover {
  color: var(--soft-teal);
}

.navbar a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===================== */
/* Typography            */
/* ===================== */
h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--soft-teal);
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  color: var(--seafoam);
  text-align: center;
  margin: 2rem 0;
  position: relative;
  letter-spacing: 2px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 3rem 0 2rem;
  color: var(--soft-teal);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--seafoam);
  font-weight: 300;
}

p {
  font-size: 1.1rem;
  line-height: 2.1;
  max-width: 900px;
  margin: 2rem auto;
  color: var(--charcoal-light);
}

/* ===================== */
/* Homepage Hero (NEW)   */
/* ===================== */
.homepage-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('pics/Lisa_Woodford_24-25-45.jpg') center/cover no-repeat;
}

.homepage-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(58, 58, 56, 0.45) 0%,
    rgba(58, 58, 56, 0.55) 50%,
    rgba(58, 58, 56, 0.7) 100%
  );
  z-index: 1;
}

.homepage-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 3rem 2rem;
}

.homepage-hero__content h1 {
  font-family: 'Abril Fatface', serif;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 2px;
  text-transform: none;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.homepage-hero__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.9;
  margin: 0 auto 2rem;
  max-width: 550px;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Star divider */
.star-divider {
  text-align: center;
  margin: 3rem auto;
  font-size: 2.4rem;
  letter-spacing: 1.5rem;
  color: var(--soft-teal);
  opacity: 0.5;
}

.star-divider::before {
  content: '\2726 \2727 \2726';
}

/* ===================== */
/* Hero section          */
/* ===================== */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  margin: 3rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-content {
  background: var(--mist);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 4rem;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--energy-glow) 0%, transparent 70%);
  animation: rotate-glow 20s linear infinite;
  opacity: 0.5;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

/* ===================== */
/* Yin Yang divider      */
/* ===================== */
.yin-yang-divider {
  width: 60px;
  height: 60px;
  margin: 4rem auto;
  position: relative;
  border-radius: 50%;
  animation: spin-slow 60s linear infinite;
  opacity: 0.5;
  background: linear-gradient(to right, var(--soft-teal) 50%, white 50%);
  border: 2px solid var(--soft-teal);
  box-sizing: border-box;
}

.yin-yang-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px white, inset 0 0 0 28px var(--soft-teal);
}

.yin-yang-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--soft-teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px var(--soft-teal), inset 0 0 0 28px white;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===================== */
/* Feature cards         */
/* ===================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

/* Remove the ::before overlay */
.feature-card::before {
  display: none;
}

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

.feature-card:hover::before {
  display: none;
}

.feature-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
}

.feature-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.feature-content h3 {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--soft-teal), var(--seafoam));
  color: white;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  box-shadow: 0 10px 40px rgba(139, 168, 136, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  margin: 1rem auto;
  text-align: center;
}

.feature-card:hover .feature-content h3 {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(139, 168, 136, 0.5);
  border-color: var(--cream);
  background: linear-gradient(135deg, var(--seafoam), var(--soft-teal));
}

/* ===================== */
/* Benefits list         */
/* ===================== */
.benefits-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background: var(--mist);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit-item {
  padding: 1.5rem;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.6);
  border-left: 4px solid var(--soft-teal);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(139, 168, 136, 0.08);
}

.benefit-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(139, 168, 136, 0.2);
}

/* ===================== */
/* Breathing meditation  */
/* ===================== */
.meditation-space {
  text-align: center;
  padding: 6rem 2rem;
  margin: 4rem 0;
}

.breath-circle {
  width: 180px;
  height: 180px;
  margin: 3rem auto;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(139, 168, 136, 0.25) 0%,
    rgba(157, 196, 181, 0.15) 30%,
    rgba(110, 169, 156, 0.1) 60%,
    transparent 100%);
  position: relative;
  animation: breathe-cycle 8s ease-in-out infinite;
  box-shadow:
    0 0 50px var(--energy-glow),
    inset 0 0 50px rgba(255, 255, 255, 0.6);
}

.breath-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  animation: breathe-cycle 8s ease-in-out infinite reverse;
}

.breath-circle::after {
  content: 'breathe';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  color: var(--soft-teal);
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0.9;
}

@keyframes breathe-cycle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* ===================== */
/* Call to action        */
/* ===================== */
.cta {
  text-align: center;
  padding: 4rem 2rem;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Ensure CTA container is fully centered */
.cta.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.email {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--soft-teal), var(--seafoam));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(139, 168, 136, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Remove the expanding circle effect */
.email::before {
  display: none;
}

.email:hover::before {
  display: none;
}

.email:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(139, 168, 136, 0.4);
  border-color: var(--cream);
}

/* ===================== */
/* Scroll reveal         */
/* ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== */
/* Bamboo accent         */
/* ===================== */
.bamboo-accent {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  margin: 2rem auto;
  opacity: 0.4;
}

/* ===================== */
/* Contact Page Styles   */
/* ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.contact-card {
  background: var(--mist);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 70px rgba(139, 168, 136, 0.15);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: gentle-pulse 3s ease-in-out infinite;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: var(--soft-teal);
}

.contact-link {
  text-decoration: none;
  color: var(--charcoal-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

.contact-link:hover {
  background: rgba(110, 169, 156, 0.1);
  color: var(--soft-teal);
  transform: scale(1.05);
}

/* Instagram Card Styling */
.instagram-card {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.05), rgba(188, 24, 136, 0.05));
}

.instagram-icon {
  margin-bottom: 1rem;
  animation: gentle-pulse 3s ease-in-out infinite;
}

.instagram-icon svg {
  filter: drop-shadow(0 5px 15px rgba(240, 148, 51, 0.3));
  transition: transform 0.3s ease;
}

.instagram-card:hover .instagram-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.instagram-link {
  text-decoration: none;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

.instagram-link:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* ===================== */
/* About Page Styles     */
/* ===================== */
.about-section {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 3rem auto;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(139, 168, 136, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  background: var(--mist);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 40px rgba(139, 168, 136, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.about-text p:hover {
  transform: translateX(5px);
}

/* ===================== */
/* Reusable utility      */
/* ===================== */
.centered-text {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
}

.section-image-wrap {
  margin: 3rem auto;
}

.section-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 24px;
}

.section-image--wide {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 0 auto;
  display: block;
}

.two-col-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.two-col-layout__col {
  flex: 1;
  min-width: 300px;
}

.two-col-layout__img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.signup-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem 0;
}

.signup-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--soft-teal), var(--seafoam));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 168, 136, 0.3);
  border: 2px solid transparent;
}

.signup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 168, 136, 0.4);
  border-color: var(--cream);
}

.hero-content--full {
  min-width: 100%;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1.8rem;
}

.hero-tagline {
  margin-top: 1.5rem;
}

.book-now-btn {
  float: none;
}

/* ===================== */
/* Course Cards Styles   */
/* ===================== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 20px;
}

.course-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.course-preview {
  cursor: pointer;
}

.course-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image {
  transform: scale(1.03);
}

.course-summary {
  padding: 25px 20px 20px;
}

.course-summary h3 {
  font-family: "Abril Fatface", serif;
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  color: var(--charcoal);
}

.course-summary p {
  font-family: "Josefin Sans", sans-serif;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-size: 1rem;
}

.expand-btn {
  background: linear-gradient(135deg, var(--soft-teal), var(--seafoam));
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(139, 168, 136, 0.3);
}

.expand-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 168, 136, 0.4);
  border-color: var(--cream);
}

.expand-btn.expanded {
  background: linear-gradient(135deg, var(--seafoam), var(--soft-teal));
}

.course-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--pale-blue) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.course-details.expanded {
  max-height: var(--details-height, 800px);
}

.details-content {
  padding: 25px 20px;
}

.details-content h4 {
  font-family: "Abril Fatface", serif;
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  color: var(--charcoal);
}

.details-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.details-content li {
  font-family: "Josefin Sans", sans-serif;
  color: var(--charcoal-light);
  margin: 8px 0;
  line-height: 1.5;
}

.details-content p {
  font-family: "Josefin Sans", sans-serif;
  color: var(--charcoal-light);
  margin: 10px 0;
  line-height: 1.6;
}

.enroll-btn {
  background: linear-gradient(135deg, var(--soft-teal), var(--seafoam));
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(139, 168, 136, 0.3);
}

.enroll-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 168, 136, 0.4);
  border-color: var(--cream);
}

.courses-header {
  text-align: center;
  margin: 3rem 0 2rem;
}

.courses-header h2 {
  font-family: "Abril Fatface", serif;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.courses-header p {
  font-family: "Josefin Sans", sans-serif;
  color: var(--charcoal-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================== */
/* Footer (NEW)          */
/* ===================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.site-footer__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.footer-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.75rem;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s ease;
}

.site-footer__nav a:hover {
  color: var(--gold-light);
}

.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .navbar a {
    margin: 0.25rem 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 2rem;
  }

  .homepage-hero {
    min-height: 50vh;
  }

  .homepage-hero__content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about-section {
    flex-direction: column;
  }

  .about-image img {
    max-width: 100%;
  }

  .two-col-layout {
    flex-direction: column;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .course-details.expanded {
    max-height: 900px;
  }

  .site-footer__nav {
    flex-direction: column;
    gap: 1rem;
  }
}
