/* =========================
   Base / General
========================= */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #444;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Make images behave nicely by default */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Header / Nav
========================= */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;            /* (added) ensure no extra space */
  display: flex;
  align-items: center;
}

nav ul li {
  margin-right: 20px;
}

nav ul li:first-child {
  padding-left: 20px;   /* spacing before the logo */
}

nav ul li a {
  color: #333;
  font-weight: 500;
}

nav ul li a:hover {
  color: #007BFF;
}

nav ul li img {
  vertical-align: middle;
}

/* =========================
   Hero (image + caption)
========================= */
#hero {
  /* Removed large padding & background image */
  text-align: center;
  padding: 24px 20px 40px;  /* compact top spacing, a bit more at bottom */
  color: inherit;           /* use normal text colors */
}

#hero h1 {
  font-size: 2.5rem;
  margin: 0 0 12px;         /* tighten heading spacing */
}

#hero .hero-image {
  /* replaces the inline width/height on <img> */
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.hero-caption {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-top: 8px;
}

#hero p.hero-description {
  font-size: 1.2rem;
  margin: 12px auto 20px;
  max-width: 900px;         /* keeps the paragraph readable on wide screens */
}

#hero .cta {
  background: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;    /* ensures consistent button box */
}

#hero .cta:hover {
  background: #0056b3;
}

/* =========================
   Sections
========================= */
section {
  padding: 60px 20px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* =========================
   About
========================= */
#about {
  background: #f9f9f9;
  text-align: center;
}

#about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

#about .team-photos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

#about .team-member {
  text-align: center;
}

#about .team-member img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

#about .team-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

#about .team-description {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

/* =========================
   Workshops
========================= */
#workshops .workshop {
  margin-bottom: 20px;
}

#workshops .workshop-title {
  font-size: 1.5rem;
  color: #007BFF;
  cursor: pointer;
}

#workshops .workshop-details {
  display: none;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

#workshops .workshop-details ul {
  padding-left: 20px;
  list-style-type: disc;
}

#workshops .workshop-details h4 {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #333;
}

#workshops .coming-soon {
  color: #333;
  cursor: default;
}

.pricing-note {
  margin-top: 20px;
  font-size: 1rem;
  color: #666;
}

/* =========================
   Booking
========================= */
#book .calendly-inline-widget {
  margin-top: 40px;
}

/* =========================
   Contact
========================= */
#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact button {
  background: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

#contact button:hover {
  background: #0056b3;
}

/* =========================
   Footer
========================= */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;                   /* ensure no default margins */
  display: flex;
  justify-content: center;
}

footer ul li {
  margin-right: 10px;
}

footer ul li:last-child {
  margin-right: 0;
}

footer ul li a {
  color: #fff;
}

footer ul li a:hover {
  color: #007BFF;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  #hero {
    padding: 20px 16px 32px;   /* smaller on mobile */
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero p.hero-description {
    font-size: 1rem;
  }

  #about .team-photos {
    flex-direction: column;
  }

  #about .team-photos img {
    margin-bottom: 20px;
  }
}