/* === CSS Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  box-sizing: border-box;
}

@font-face {
  font-family: "Main";
  src: url(assets/fonts/Dimica-Light.otf) format("opentype");
}
/* Alifinart Studio” (behance.net/alifinart) */
@font-face {
  font-family: "Secondary";
  src: url(assets/fonts/SalmaproMediumnarrow.otf) format("opentype");
}

@font-face {
  font-family: "Accessory";
  src: url(assets/fonts/Praise-Regular.ttf) format("truetype");
}

html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

body {
  margin: 0;
  font-family: "Main";
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(120deg, #e6e4db 0%, #ceafcb 45%, #f3cfdc 100%);
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4),
    transparent 70%
  );
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(18, 18, 38, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  margin: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(white 0.8px, transparent 0.8px),
    radial-gradient(white 0.6px, transparent 0.6px);
  background-size: 40px 40px, 100px 100px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.logo {
  font-family: "Main";
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  z-index: 1;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 11;
}

/* Nav Links - Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #cd90b3;
}

.contact-button {
  padding: 0.6rem 1.2rem;
  background-color: #8fa7e3;
  color: #fff;
  border-radius: 24px;
  font-weight: bold;
  border: none;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background-color: #ffffff;
  color: #8fa7e3;
}

/* === Responsive Navbar Additions === */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    margin: 1rem;
    gap: 0.75rem;
  }

  .navbar-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1.4rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-weight: bold;
  }

  .menu-toggle {
    display: block !important;
    font-size: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 11;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    color: #ffffff;
  }

  .contact-button {
    display: block;
    margin: 1rem auto;                /* centers it */
    padding: clamp(0.55rem, 2.5vw, 0.8rem) 
             clamp(1rem, 5vw, 1.4rem); /* fluid padding */
    font-size: clamp(0.8rem, 3.5vw, 0.95rem); /* scales with screen */
    border-radius: 24px;
    max-width: clamp(160px, 70%, 220px); /* keeps neat width */
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  }

}

@media screen and (max-width: 480px) {
  .contact-button {
    display: block;
    margin: 0.6rem auto;       /* centers nicely */
    padding: .85rem .85rem !important;     /* reduced padding */
    font-size: 0.8rem;         /* smaller text */
    border-radius: 18px;       /* smaller pill */
    max-width: 180px;          /* keeps it from being oversized */
    text-align: center;
    line-height: 1.1;
  }
}

/* === Hero Section === */
.modern-hero {
  background: linear-gradient(135deg, #f7f5fb, #f0ecf9);
  padding: 6rem 4rem;
  border-radius: 24px;
  max-width: 1300px;
  margin: 0 auto 3rem auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #e0d9f5;
  border-right: 6px solid #e0d9f5;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  flex: 1 1 480px;
}

.hero-label {
  display: inline-block;
  background: #eae7fc;
  color: #6d57c6;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #5f5f5f;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-dark {
  background-color: #4a3d8f;
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 61, 143, 0.2);
}

.btn-dark:hover {
  background-color: #372c6e;
}

.btn-light {
  background-color: #f2f2f2;
  color: #000;
  border: 1px solid #ddd;
}

.btn-light:hover {
  background-color: #e6e6e6;
}

/* Hero Image Styling */
.hero-image {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 380px;
  margin: auto;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1; /* balanced square by default */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: scale(1);
  transition: transform 0.35s ease;
}

.hero-image img:hover {
  transform: scale(1.04);
}

/* Decorative background */
.hero-image::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 84%;
  background: linear-gradient(135deg, #d9c9f7, #e8defc);
  border-radius: 20px;
  z-index: -1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* === Mobile Optimization === */
@media screen and (max-width: 768px) {
  .modern-hero {
    padding: 2.5rem 1.2rem; /* tighter padding */
    border-left: none;
    border-right: none;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* closer spacing */
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.2rem;
    border-radius: 24px;
  }

  .hero-image {
    max-width: 260px;
    margin-top: 1.2rem;
  }

  .hero-image img {
    aspect-ratio: 4 / 5; /* taller portrait for better balance */
    border-radius: 16px;
  }

  .hero-image::before {
    top: 4%;
    left: 4%;
    width: 92%;
    height: 92%;
  }
}



/* Info Section - Fully Responsive */
.info-section {
  background-color: #f3f0f8;
  color: #462c8e;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.04), 12px 0 24px rgba(0, 0, 0, 0.04);
  border-left: 6px solid #e0d9f5;
  border-right: 6px solid #e0d9f5;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Text Side */
.info-left {
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  text-align: center;
}

.info-left h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 1rem;
}

.info-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

/* Button */
.info-button {
  display: inline-block;
  background-color: #8fa7e3;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.info-button:hover {
  background-color: #cd90b3;
}

/* Image Side */
.info-right {
  width: 100%;
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: center;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

.image-grid img {
  width: 100%;
  border-radius: 1.2rem;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .info-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem 4rem;
  }

  .info-left,
  .info-right {
    width: 50%;
    padding: 2rem;
    text-align: left;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Intro Section === */
.intro-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 6rem; /* Equal left/right padding */
  background-color: #f3f0f8;
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.04), 12px 0 24px rgba(0, 0, 0, 0.04); /* Dual side shadow */
  border-left: 6px solid #e0d9f5;
  border-right: 6px solid #e0d9f5;
  margin: 0 2rem;
}

.intro-left {
  flex: 1 1 100%;
  max-width: 600px;
  text-align: center;
}

.intro-left h1 {
  font-family: "Georgia", serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 600;
  color: #462c8e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-left .emojis {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.8rem;
}

.subtext {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: #444;
  margin: 1.5rem 0 2rem;
  line-height: 1.75;
}

.cta-button {
  display: inline-block;
  background-color: #462c8e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-bottom: 2rem;
}

.cta-button:hover {
  background-color: #6d57c6;
}

.therapy-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem 1.2rem;
  justify-content: center;
  text-align: center;
}

.therapy-types a {
  color: #462c8e;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #ceafcb;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.therapy-types a:hover {
  color: #8e8dcf;
}

/* === Intro Image & Badges === */
.intro-right {
  flex: 1 1 100%;
  max-width: 480px;
  text-align: center;
}

.rounded-image {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.badge-set {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.badge {
  background-color: #cd90b3;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
/* === Intro Section (Responsive) === */
.intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  background-color: #f3f0f8;
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.04), 12px 0 24px rgba(0, 0, 0, 0.04);
  border-left: 6px solid #e0d9f5;
  border-right: 6px solid #e0d9f5;
  margin: 0 auto;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Text Section */
.intro-left {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.intro-left h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  color: #462c8e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-left .emojis {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.8rem;
}

.subtext {
  font-size: clamp(1rem, 4vw, 1.2rem);
  color: #444;
  margin: 1.5rem 0 2rem;
  line-height: 1.75;
  padding: 0 0.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #462c8e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-bottom: 2rem;
}

.cta-button:hover {
  background-color: #6d57c6;
}

/* Therapy Types */
.therapy-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem 1.2rem;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  width: 100%;
  max-width: 600px;
}

.therapy-types a {
  color: #462c8e;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #ceafcb;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.therapy-types a:hover {
  color: #8e8dcf;
}

/* Image & Badges */
.intro-right {
  width: 100%;
  max-width: 480px;
  text-align: center;
  margin-top: 2rem;
}

.rounded-image {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.badge-set {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.badge {
  background-color: #cd90b3;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .intro-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem 4rem;
    gap: 3rem;
  }

  .intro-left,
  .intro-right {
    text-align: left;
    flex: 1;
  }

  .therapy-types {
    justify-content: flex-start;
  }

  .intro-right {
    margin-top: 0;
  }
}

/* === Tagline Section === */
.tagline-section {
  background: linear-gradient(to bottom, #8fa7e3, #e6e4db);
  padding: 4rem 2rem;
  text-align: center;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  margin-top: 4rem;
}

.tagline-container h2 {
  font-family: "Georgia", serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 600;
  color: #462c8e;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

.brand-name {
  color: #cd90b3;
}

/* Optional refinement for very small screens */
@media (max-width: 390px) {
  .tagline-section {
    padding: 3rem 1.2rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .tagline-container h2 {
    font-size: 1.5rem;
  }
}
.site-footer {
  background: linear-gradient(to top, #f5f4f2, #e6e4db);
  color: #462c8e;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  font-family: "Georgia", serif;
  border-top: 3px solid #cd90b3;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #462c8e;
}

.footer-left p {
  margin: 0.3rem 0;
  line-height: 1.5;
  max-width: 500px;
}

.legal-disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: #462c8e;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #ceafcb;
  width: fit-content;
  padding-bottom: 1px;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #8e8dcf;
}
/* === Mobile Optimization === */
@media screen and (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-left h4 {
    font-size: 1rem;
  }

  .footer-left p,
  .legal-disclaimer {
    font-size: 0.8rem;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
    margin-top: 1.5rem;
  }
}
