/* TemuCita static landing — from temucita/src/app/features/home + layout */

:root {
  --white: #ffffff;
  --cream: #f9f4ec;
  --events-bg: #f3e1cd;
  --temucita-orange: #d57f55;
  --pastel-blue: #30405e;
  --dark-brown: #472b1b;
  --light-gray: #f6ece0;
  --medium-gray: #cecece;
  --service-blue: #cfe7ff;
  --service-blue-btn: #8fc9ff;
  --service-peach: #ffe2b3;
  --font: "Poppins", system-ui, sans-serif;
  --font-pacifico: "Pacifico", cursive;
  --text-h1: 4rem;
  --text-sub1: 2.5rem;
  --text-sub2: 1.5rem;
  --text-sub3: 1.125rem;
  --text-p1: 2rem;
  --text-p2: 1rem;
  --nav-h: 65px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--pastel-blue);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  border: 2px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: var(--pastel-blue);
  color: var(--white);
  font-weight: 700;
}

.btn-secondary {
  background: var(--white);
  color: var(--pastel-blue);
  border-color: var(--pastel-blue);
  font-weight: 700;
}

.btn-secondary:hover {
  background: var(--pastel-blue);
  color: var(--white);
}

.btn-accent {
  background: var(--temucita-orange);
  color: var(--white);
  font-weight: 700;
}

.btn-nav {
  padding: 0.25rem 0.8125rem;
  border-radius: 0.5rem;
  font-size: var(--text-sub2);
  font-weight: 400;
}

.btn-hero {
  width: 100%;
  padding: 0.5rem 1.25rem;
  border-radius: 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-hero {
    width: auto;
    padding: 0.75rem 1.75rem;
    font-size: 1.125rem;
    border-radius: 1.5rem;
  }
}

.btn-session {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9375rem;
}

@media (min-width: 1024px) {
  .btn-session {
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
  }
}

.btn-xl {
  padding: 0.75rem 2rem;
  border-radius: 1.5rem;
  font-size: var(--text-sub3);
}

@media (min-width: 1024px) {
  .btn-xl {
    font-size: var(--text-sub2);
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1192px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo img:first-child {
  height: 17px;
  width: auto;
}

.navbar-logo .logo-wordmark {
  height: 17px;
  width: auto;
}

@media (min-width: 1024px) {
  .navbar-logo img:first-child {
    height: 45px;
  }
  .navbar-logo .logo-wordmark {
    height: 35px;
  }
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 60px;
  font-size: var(--text-sub2);
}

@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a:hover,
.nav-dropdown-toggle:hover {
  color: var(--temucita-orange);
}

.navbar-links a.is-active {
  color: var(--temucita-orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: var(--text-sub2);
  color: var(--pastel-blue);
  cursor: pointer;
}

.nav-arrow {
  transition: transform 0.2s;
}

.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5;
}

.nav-dropdown-menu {
  position: absolute;
  left: -3rem;
  top: 100%;
  margin-top: 0.5rem;
  width: 240px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 10;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.nav-dropdown-menu a:hover {
  color: var(--temucita-orange);
}

.btn-nav {
  display: none;
}

@media (min-width: 1024px) {
  .btn-nav {
    display: inline-flex;
  }
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--temucita-orange);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  font-size: 1.125rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.navbar-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .navbar-mobile {
    display: none !important;
  }
}

.nav-mobile-products-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1.125rem;
  color: var(--pastel-blue);
  cursor: pointer;
}

.nav-mobile-submenu {
  margin-top: 0.75rem;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 1rem) 2rem 2rem;
}

.hero-taglines {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1250px;
  margin: 13% auto 0;
  font-size: 1.5rem;
  color: var(--pastel-blue);
}

.hero-tagline--left {
  max-width: 250px;
  text-align: left;
}

.hero-tagline--right {
  max-width: 300px;
  text-align: right;
}

@media (min-width: 768px) {
  .hero-taglines {
    font-size: 2.5rem;
  }
}

.hero-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 8%;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pastel-blue);
  text-align: center;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-h1);
  }
}

.hero-thrive {
  font-family: var(--font-pacifico);
  font-style: italic;
  font-weight: 400;
  color: var(--pastel-blue);
}

.hero-thrive--desktop {
  display: none;
}

.hero-thrive--mobile {
  font-size: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-thrive--desktop {
    display: inline;
  }
  .hero-thrive--mobile {
    display: none;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    max-width: none;
  }
}

/* About */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  background: var(--cream);
  color: var(--dark-brown);
  padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .stats-bar {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .stats-bar {
    flex-wrap: nowrap;
    gap: 7.5rem;
    padding: 2.5rem;
  }
}

.stat-value {
  font-weight: 600;
  font-size: var(--text-sub2);
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: var(--text-sub1);
  }
}

.stat-label {
  font-size: var(--text-p2);
}

@media (min-width: 1024px) {
  .stat-label {
    font-size: var(--text-sub2);
  }
}

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .about-intro {
    flex-direction: row;
    padding: 4rem 5rem;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sub2);
  white-space: nowrap;
}

.section-label--light p {
  color: var(--white);
  font-size: 1.25rem;
}

.about-text {
  font-size: var(--text-sub2);
  text-align: center;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .about-text {
    font-size: var(--text-p1);
    text-align: left;
    margin-top: 0;
  }
}

/* Events */
.events {
  background: var(--events-bg);
  padding: 1.25rem 0 2rem;
}

.events-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.events-header h2 {
  font-size: var(--text-p1);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .events-header h2 {
    font-size: var(--text-sub1);
  }
}

.events-header p {
  font-size: 1.25rem;
}

.events-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2.5rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.events-scroll::-webkit-scrollbar {
  display: none;
}

.events-cta {
  display: flex;
  justify-content: center;
  padding: 1.25rem;
  margin-top: 1rem;
}

/* Session card */
.session-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--light-gray);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  margin-right: 1.25rem;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .session-card {
    width: 500px;
    margin-right: 2.5rem;
  }
}

.session-card__image {
  position: relative;
  height: 200px;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  background: var(--medium-gray);
}

@media (min-width: 768px) {
  .session-card__image {
    height: 390px;
  }
}

.session-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session-spots {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(92, 163, 78, 0.8);
  color: var(--white);
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  z-index: 1;
}

.spot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5cd245;
  flex-shrink: 0;
}

.session-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.session-card__body h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

@media (min-width: 768px) {
  .session-card__body h3 {
    font-size: 1.75rem;
  }
}

.session-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .session-meta {
    font-size: 1.25rem;
  }
}

.session-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.session-detail-link {
  text-decoration: underline;
  font-size: 0.9375rem;
}

@media (min-width: 1024px) {
  .session-detail-link {
    font-size: 1.5rem;
  }
}

.session-detail-link:hover {
  color: var(--temucita-orange);
}

/* Services */
.services {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  gap: 3.75rem;
}

@media (max-width: 1024px) {
  .services {
    padding: 3rem 1.25rem;
  }
}

.services-header .section-label p {
  font-size: 1.25rem;
}

.services-title {
  max-width: 894px;
  font-size: var(--text-sub2);
  margin-top: 0.75rem;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .services-title {
    font-size: 2.25rem;
  }
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .services-grid {
    flex-direction: row;
  }
}

.service-card {
  flex: 1;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.service-card--border {
  border: 1px solid var(--medium-gray);
}

.service-card--blue {
  background: var(--service-blue);
}

.service-card--peach {
  background: var(--service-peach);
  border: 1px solid var(--medium-gray);
}

.service-icon {
  width: 60px;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: var(--text-p1);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card > div > p {
  font-size: 1.25rem;
}

.service-btn {
  display: inline-block;
  background: var(--light-gray);
  color: var(--dark-brown);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  margin-top: 1rem;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  transition: box-shadow 0.2s;
}

.service-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-btn--blue {
  background: var(--service-blue-btn);
}

/* Team */
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .team {
    flex-direction: row;
    align-items: center;
  }
}

.team-photo img {
  width: 100%;
  max-width: 491px;
  border-radius: 60px;
  border: 1px solid var(--medium-gray);
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.team-content h2 {
  font-size: var(--text-sub1);
  font-weight: 700;
}

.team-role {
  font-size: 1.25rem;
}

.team-bio {
  max-width: 605px;
  text-align: justify;
  font-size: var(--text-p2);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .team-bio {
    font-size: var(--text-sub2);
  }
}

/* Support */
.support {
  background: var(--cream);
  padding: 2.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .support {
    flex-direction: row;
    padding: 5rem;
  }
}

.support-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.support-content h2 {
  font-size: var(--text-sub1);
  line-height: 1;
}

@media (min-width: 1024px) {
  .support-content h2 {
    font-size: var(--text-h1);
  }
}

.support-content > p {
  font-size: 1.375rem;
}

.support-content ul {
  list-style: disc;
  padding-left: 2.5rem;
  max-width: 640px;
  font-size: 1.375rem;
}

.support-content li {
  margin-bottom: 0.5rem;
}

.support-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-image img {
  width: 100%;
  max-width: 549px;
  border-radius: 30px;
  background: var(--light-gray);
}

/* Testimonials */
.testimonials {
  position: relative;
  min-height: 100vh;
  padding: 5rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 1.25rem;
  }
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.testimonials-inner {
  position: relative;
  z-index: 2;
}

.testimonials-inner > h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--white);
  max-width: 997px;
  margin-bottom: 5rem;
  line-height: 1.2;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .testimonials-grid {
    flex-direction: row;
    align-items: stretch;
  }
}

.testimonial-card {
  flex: 1;
  position: relative;
  background: var(--cream);
  max-width: 435px;
  border-radius: 1.5rem;
  padding: 2.25rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border: none;
}

.testimonial-chat {
  width: 70px;
}

.testimonial-card p {
  font-size: 1.875rem;
}

.testimonial-card footer {
  font-size: 1.5rem;
}

.testimonial-ellipse {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85px;
}

/* Certifications */
.certifications {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 3rem 1rem;
}

.certifications h2 {
  font-weight: 700;
  font-size: 1.875rem;
}

.cert-grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-placeholder {
  width: 50px;
  height: 50px;
  background: #e5e7eb;
}

@media (min-width: 1024px) {
  .cert-placeholder {
    width: 168px;
    height: 168px;
  }
}

/* Footer */
.site-footer {
  background: var(--dark-brown);
  color: var(--light-gray);
  padding: 3.75rem 2rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 5rem 8rem;
  }
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  flex: 2.5;
  min-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-weight: 700;
  font-size: var(--text-sub2);
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 500px;
  font-size: var(--text-p2);
  line-height: 1.6;
}

.footer-links,
.footer-social {
  flex: 1;
  min-width: 140px;
}

.footer-links h3,
.footer-social h3 {
  font-weight: 600;
  font-size: var(--text-p2);
  margin-bottom: 0.25rem;
}

.footer-links ul,
.footer-social ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.footer-links a,
.footer-social a {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  text-decoration-color: var(--cream);
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom ul {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  text-decoration: underline;
}

.footer-bottom a:hover {
  text-decoration-color: var(--cream);
}
