:root {
  --primary: #fbaa29;     /* orange background */
  --secondary: #fff8f0;   /* light cream background */
  --text: #333;           /* dark text */
  --accent:  #018288;      /* dark teal accent */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo {
  height: 50px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  padding: 5rem 2rem;
  background: var(--secondary);
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: var(--primary);
}

.hero-tagline {
  max-width: 820px;
  margin: 1.5rem auto 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
}

.hero-subline {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
}

.button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* SECTIONS */
.section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}

.section.alt {
  background: var(--secondary);
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
}

.quote-heading {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--accent);
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.services-column {
  padding: 1.5rem;
}

.services-column h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.service-list,
.benefits-list,
.audience-list {
  list-style: disc;
  list-style-position: inside;
  padding: 0;
  margin: 0;
}

.service-list li,
.benefits-list li,
.audience-list li {
  padding: 0.5rem 0;
  line-height: 1.6;
}

.services-column p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-closing {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 2rem;
  color: var(--accent);
  font-style: italic;
}

/* TESTIMONIALS */
blockquote {
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}

blockquote span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: #f0f0f0;
}


.about-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-photo {
  width: 200px;
  max-width: 40%;
  height: auto;
  border: 6px solid var(--accent);
  border-radius: 8px;
}

@media (max-width: 800px) {
  .about-content {
    flex-direction: column;
  }
  .about-photo {
    width: 220px;
    max-width: 100%;
  }
}

/* WORKSHOPS */
.workshops-intro {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.workshops-photo {
  width: 200px;
  max-width: 35%;
  height: auto;
  border: 6px solid var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
}

.workshops-intro p {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
}

.workshop-card {
  background: white;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.workshop-card h3 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 1rem;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.workshop-duration,
.workshop-format {
  color: #666;
}

.workshop-card p {
  margin: 1rem 0;
  line-height: 1.8;
}

.workshop-section {
  margin-top: 1.5rem;
}

.workshop-section h4 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.workshop-section ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.workshop-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--secondary);
  border-radius: 8px;
}

.contact-cta h3 {
  color: var(--accent);
  margin-top: 0;
}

.services li {
  position: relative;
}

@media (max-width: 800px) {
  .workshops-intro {
    flex-direction: column;
  }

  .workshops-photo {
    width: 220px;
    max-width: 100%;
  }

  .workshop-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .workshop-card {
    padding: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-column {
    padding: 1rem;
  }

  .quote-heading {
    font-size: 1.3rem;
  }

  .quote-closing {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-subline {
    font-size: 0.95rem;
  }
}

