/* ===== BASE / RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family:
    "Suisse Intl",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #f8f7f5;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  line-height: 1.3;
}

/* ===== HEADER ===== */
.header__container {
  background: linear-gradient(135deg, #6b4f8a 0%, #8b6aae 40%, #a18cc0 100%);
  padding: 0 0 60px 0;
  text-align: center;
  color: #fff;
}

.book-btn-primary {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(107, 79, 138, 0.1);
  background-color: #fff;
  color: #5a3f7a;
  font-weight: 600;
  padding: 16px 32px;
  text-decoration: none;
}

.book-btn-primary:hover {
  background-color: #f0f0f0;
  transition: all 0.2s ease;
}

.menu {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #6b4f8a;
}

.menu__logo .material-symbols-outlined {
  font-size: 32px;
  color: white;
}

.menu__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #6b4f8a;
  text-transform: uppercase;
}

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hamburger__bar {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #2d2d2d;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger--active .hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger--active .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  color: #2d2d2d;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-link:hover {
  background-color: #6b4f8a;
  color: #fff;
}

.nav-link:active {
  background-color: #5a3f7a;
  color: #fff;
}

.nav-link.active {
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid #000;
}

.nav-link:focus {
  outline: 2px solid #a18cc0;
  outline-offset: 2px;
}

/* Header hero text */
header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/cle-view-header.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 200px 0;
}

.header__span-accent,
.header__tagline {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 16px auto 0;
  max-width: 600px;
  padding: 0 24px;
}

.header__cta a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #272044;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 32px;
  margin-top: 32px;
  display: inline-block;
  text-decoration: none;
  background: white;
}

/* ===== MAIN CONTENT ===== */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SHARED SECTION STYLES ===== */
.about,
.testimonials,
.book-session,
.policies,
.socials {
  padding: 56px 40px;
  margin: 40px 0;
  border-radius: 16px;
  text-align: left;
}

/* Section titles */
.about__title,
.testimonials__title,
.book-session__title,
.policies__title,
.socials__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

/* Section paragraphs */
.about__paragraph,
.testimonials__paragraph,
.book-session__paragraph,
.policies__paragraph,
.socials__paragraph {
  font-size: 16px;
  color: #4a4a4a;
  margin: 0 0 8px 0;
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: #fff;
  border: 1px solid #e8e6e3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about__title {
  color: #6b4f8a;
}

.about__paragraph {
  max-width: 680px;
}

/* ===== BOOK SESSION SECTION ===== */
.book-session {
  background: linear-gradient(135deg, #f5f0fa 0%, #ede6f5 100%);
  border: 1px solid #ddd4ec;
  text-align: center;
}

.book-session__title {
  color: #5a3f7a;
}

.book-session__paragraph {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.calendly-inline-widget {
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
  min-height: 700px;
  box-shadow: 0 4px 20px rgba(107, 79, 138, 0.1);
}

/* ===== POLICIES SECTION ===== */
.policies {
  background-color: #fff;
  border: 1px solid #e8e6e3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.policies__title {
  color: #6b4f8a;
}

.policies__list {
  padding: 0;
  margin: 16px 0 0 0;
  list-style-type: none;
}

.policies__list-item {
  position: relative;
  padding: 16px 16px 16px 28px;
  font-size: 15px;
  color: #4a4a4a;
  border-bottom: 1px solid #f0eeeb;
  line-height: 1.6;
}

.policies__list-item:last-child {
  border-bottom: none;
}

.policies__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #a18cc0;
}

.testimonials {
  padding: 56px 40px;
  margin: 40px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f0fa 0%, #ede6f5 100%);
  border: 1px solid #ddd4ec;
  text-align: center;
}

.testimonials__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #5a3f7a;
}

/* testimonials grid */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 30px;
}

/* testimonial card */

.testimonial {
  text-align: center;
}

/* video container */

.testimonial__video {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

/* thumbnail */

.testimonial__thumbnail {
  width: 100%;
  display: block;
}

/* play button */

.testimonial__play {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial__play::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent white;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
}

/* text */

.testimonial__text {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 6px;
}

/* author */

.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: #6b4f8a;
}

/* ===== socials SECTION ===== */
.socials {
  background: linear-gradient(135deg, #6b4f8a 0%, #8b6aae 100%);
  color: #fff;
}

.socials__title {
  color: #fff;
}

.socials__paragraph {
  color: rgba(255, 255, 255, 0.88);
}

.socials__list {
  padding: 0;
  margin: 20px 0 0 0;
  list-style-type: none;
}

.socials__list-item {
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.socials__list-item:last-child {
  border-bottom: none;
}

.socials__links {
  margin-top: 24px;
}

.socials__social-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.social-link {
  display: inline-block;
  margin-right: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.7;
}

.socials__email a {
  display: inline-block;
  margin-right: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: opacity 0.2s ease;
}

.socials__email a:hover {
  opacity: 0.7;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 24px;
}

.footer__container {
  background-color: #2d2d2d;
  padding: 32px 24px;
  text-align: center;
}

.footer__nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
}

.footer__nav-link {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.footer__nav-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__nav-link:active {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer__nav-link:focus {
  outline: 2px solid #a18cc0;
  outline-offset: 2px;
}

.footer__copyright {
  text-align: center;
  margin: 0;
  padding: 20px 24px;
  font-size: 13px;
  color: #888;
  background-color: #242424;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 768px) {
  header {
    padding: 120px 0;
  }

  .menu {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 0;
  }

  .menu__logo {
    width: 48px;
    height: 48px;
  }

  .menu__logo .material-symbols-outlined {
    font-size: 26px;
  }

  .menu__title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    display: none;
    width: 100%;
    gap: 4px;
    padding-top: 12px;
  }

  .nav-menu--open {
    display: flex;
  }

  .nav-link {
    text-align: center;
    padding: 12px 16px;
    background-color: #f5f3f0;
    border-radius: 10px;
  }

  nav {
    width: 100%;
  }

  .header__span-accent,
  .header__tagline {
    margin-top: 36px;
    font-size: 14px;
  }

  .header__title {
    font-size: 28px;
  }

  .header {
    padding-bottom: 44px;
  }

  .content {
    padding: 0 16px;
  }

  .about,
  .book-session,
  .policies,
  .socials {
    padding: 36px 24px;
    margin: 24px 0;
    border-radius: 14px;
  }

  .about__title,
  .testimonials__title,
  .book-session__title,
  .policies__title,
  .socials__title {
    font-size: 24px;
  }

  .calendly-inline-widget {
    height: 650px !important;
  }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  header {
    padding: 90px 0;
  }

  .menu {
    padding: 12px 16px;
  }

  .menu__logo {
    height: 42px;
  }

  .menu__title {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .header__title {
    font-size: 24px;
  }

  .header__span-accent,
  .header__tagline {
    font-size: 13px;
  }

  .about,
  .testimonials,
  .book-session,
  .policies,
  .socials {
    padding: 28px 20px;
    margin: 16px 0;
    border-radius: 12px;
  }

  .about__title,
  .book-session__title,
  .policies__title,
  .socials__title {
    font-size: 22px;
  }

  .about__paragraph,
  .book-session__paragraph,
  .policies__paragraph,
  .socials__paragraph {
    font-size: 15px;
  }

  .policies__list-item,
  .socials__list-item {
    font-size: 14px;
  }

  .footer__nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}
