/* Contact & Booking page redesign */
.contact-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 70vh;
}
.contact-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(255, 179, 71, 0.1);
  padding: 38px 36px 28px 36px;
  max-width: 480px;
  width: 100%;
  margin: 40px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.contact-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(255, 179, 71, 0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-form input,
.contact-form textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 10px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-info {
  margin-top: 10px;
  font-size: 0.97rem;
  color: var(--muted);
}
.contact-info a {
  color: var(--brand-2);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .contact-card {
    padding: 18px 6px 18px 6px;
  }
}
/* Workshops page custom styles */
.workshop-intro {
  margin-bottom: 32px;
}
.workshop-hero {
  display: flex;
  gap: 32px;
  align-items: center;
  background: linear-gradient(120deg, #e0f7fa 0%, #fffbe6 100%);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(255, 179, 71, 0.07);
  padding: 28px 24px;
  flex-wrap: wrap;
}
.workshop-img-card {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 4px 18px rgba(255, 94, 98, 0.1);
  margin: 0 0 0 0;
}
.workshop-weeks {
  margin-bottom: 32px;
}
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.workshop-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(255, 179, 71, 0.08);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 340px;
}
.wk-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 2px 8px rgba(255, 94, 98, 0.1);
}
.wk1 {
  background: linear-gradient(135deg, #ffb347, #ff5e62);
}
.wk2 {
  background: linear-gradient(135deg, #6ee7b7, #ffb347);
}
.wk3 {
  background: linear-gradient(135deg, #8ec5ff, #ffb347);
}
.wk4 {
  background: linear-gradient(135deg, #ff5e62, #6ee7b7);
}
.wk-activities {
  margin-top: 10px;
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .workshop-hero {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px;
  }
  .workshop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* About Doris custom layout */
.about-section {
  padding: 32px 0 0 0;
}
.about-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: linear-gradient(120deg, #fffbe6 0%, #e0f7fa 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(255, 179, 71, 0.07);
  padding: 36px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.about-photo-card {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--brand);
  padding: 12px;
  margin-bottom: 18px;
}
.about-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.about-bio {
  flex: 1 1 320px;
  min-width: 260px;
}
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
    gap: 24px;
    padding: 24px 10px;
  }
  .about-photo-card {
    margin: 0 auto 18px auto;
  }
}
/* Base styles for Ms. D’s website */
/* Empowering, uplifting theme */
:root {
  --bg: #9fffcb;
  --surface: #fff;
  --text: #004e64;
  --muted: #25a18e;
  --brand: #00a5cf;
  --brand-2: #004e64;
  --accent: #7ae582;
  --card: #e6fcf5;
  --border: #25a18e;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.tiny {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(255, 179, 71, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-2);
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  align-items: center;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 0;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  font-size: 1rem;
}
.nav a:not(:first-child) {
  margin-left: 8px;
}
.nav a:hover {
  border-color: var(--brand-2);
  background: var(--brand);
  color: #fff;
}
.nav .cta {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 600;
  border: none;
}

.hero {
  padding: 64px 0 40px;
  background: linear-gradient(120deg, #fffbe6 0%, #ffe3e3 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--brand-2);
}
.hero p {
  color: var(--muted);
  margin: 0 0 18px;
}
.actions {
  display: flex;
  gap: 12px;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--brand-2);
  color: var(--brand-2);
  text-decoration: none;
  background: #fff;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.btn.primary {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  border: none;
}
.btn:hover {
  background: var(--brand-2);
  color: #fff;
}
.hero-media .img-card {
  height: 280px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe3e3, #fffbe6);
  border: 2px solid var(--brand);
  box-shadow: 0 10px 30px rgba(255, 179, 71, 0.15);
}

.features {
  padding: 36px 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(255, 94, 98, 0.06);
}
.feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  opacity: 0.85;
  margin-bottom: 8px;
}

.split {
  padding: 40px 0;
}
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.img-tile {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe3e3, #fffbe6);
  border: 2px solid var(--brand);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 20px 0;
  margin-top: 32px;
  box-shadow: 0 -2px 8px rgba(255, 179, 71, 0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 10px;
}
.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 12px;
}
.footer-inner a:hover {
  color: var(--brand-2);
}

@media (max-width: 860px) {
  .hero-inner,
  .split-inner {
    grid-template-columns: 1fr;
  }
  .nav {
    gap: 4px;
    font-size: 0.98rem;
  }
  .nav a:not(:first-child) {
    margin-left: 4px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
