@import url("https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@400&display=swap");

:root {
  --cream: #f4efcb;
  --cream-light: #f5f5cd;
  --blue: #311bf3;
  --purple-band: #7d6efd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Playwrite US Modern", cursive;
  color: var(--blue);
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

button,
input,
textarea,
select {
  font: inherit;
}

site-header,
site-footer {
  display: block;
}

a {
  color: var(--blue);
}

h1,
h2,
h3 {
  font-family: "Playwrite US Modern", cursive;
  font-weight: 400;
  color: var(--blue);
}

h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2.2rem;
}

.site-nav {
  background: var(--cream-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.site-nav .nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a.active {
  text-decoration: underline;
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

@media (max-width: 640px) {
  .site-nav {
    justify-content: space-between;
    gap: 0;
  }

  .nav-burger {
    display: flex;
  }

  .site-nav .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
}

.hero {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    url("../images/hero-watercolor.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 5rem 1.5rem 6rem;
}

.hero img.logo {
  width: 800px;
  max-width: 90%;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.hero blockquote {
    font-size: 2.5em;
  font-style: italic;
  margin: 1rem auto 0.5rem;
  max-width: 1200px;
}

.hero .signature {
  font-size: 1.3rem;
}

.banner {
  background: var(--purple-band);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

main p,
main li {
  text-align: justify;
}

.section {
  margin-bottom: 3rem;
}

.section-flex {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section-flex img {
  max-width: 400px;
  width: 100%;
  border-radius: 6px;
}

.section-flex p {
  flex: 1;
  min-width: 260px;
  text-align: justify;
}

.schedule-table {
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  border-collapse: collapse;
  background: #fff7e3;
  text-align: center;
}

.schedule-table caption {
  padding: 0.4rem;
  border: 2px solid #c39bff;
  background: #d9c9f8;
  font-size: 1.45rem;
}

.schedule-table th,
.schedule-table td {
  width: 50%;
  padding: 0.35rem 0.45rem;
  border: 2px solid #c39bff;
  font-weight: 400;
  line-height: 1.3;
}

.schedule-table th {
  white-space: nowrap;
}

footer,
.contact-block {
  background: var(--cream-light);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

footer {
  color: rgb(128, 162, 239);
  border-top: 1px solid #d3d3d3;
}

.footer-cols {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-cols h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-legal {
  font-size: 0.85rem;
}

.footer-logo {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.social-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 1rem;
}

.social-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-bar svg {
  width: 28px;
  height: 28px;
}

.team-member {
  margin-bottom: 2.5rem;
}
.team-member h3 {
  margin-bottom: 0.2rem;
}
.team-member .role {
  font-weight: 600;
  margin-top: 0;
}

.anna-ciobanica {
  color: rgb(228, 66, 247);
}

.alexandra-manole {
  color: rgb(37, 172, 126);
}

.pricing-table {
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.pricing-table td {
  padding: 0.5rem 1.5rem 0.5rem 0;
}

.contact-center {
  text-align: center;
}

.contact-icon {
  width: 110px;
  height: 110px;
}

.contact-icon path {
  fill: var(--blue);
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 1rem 0 2rem;
  font-size: 25px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.contact-icon-inline {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--blue);
  color: var(--blue);
}
