/* Global box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Cream background */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fff6e3;
}

/* Body: Nunito  */
.site-body {
  min-height: 100vh;
  background-color: #fff6e3;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #4b6763;
}

/* NAVBAR / HEADER */

.site-header {
  padding-top: 16px;
  padding-bottom: 10px;
  position: relative;
  z-index: 50; 
}

.navbar {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

/* LOGO SIZE */
.ls-logo {
  height: 185px;
  width: auto;
}

/* NAV LINKS + SPACING */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6rem; /* big spacing between nav items */
}

.main-nav .nav-link {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: #4b6763;
  padding: 0;
  line-height: 1;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  text-decoration: none;
}

/* Different hover colors per item (matching palette) */
.main-nav li:nth-child(1) .nav-link:hover {
  color: #e3b75b;  /* About Me */
}
.main-nav li:nth-child(2) .nav-link:hover {
  color: #3f8f8e;  /* Age Groups */
}
.main-nav li:nth-child(3) .nav-link:hover {
  color: #d58a76;  /* Pictures */
}
.main-nav li:nth-child(4) .nav-link:hover {
  color: #c68b9a;  /* Get In Touch */
}

/* Mobile toggle icon */
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 1.75rem;
  height: 1.75rem;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background-color: #4b6763;
}
.navbar-toggler-icon::before {
  top: 8px;
}
.navbar-toggler-icon::after {
  bottom: 8px;
}

/*  HERO SECTION */

.hero-section {
  padding: 24px 0 48px;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

/* LEFT TEXT COLUMN */
.hero-copy {
  padding-bottom: 40px;
}

/* change this if you need the text stretch a bit more horizontally on large screens if not leave alone cuh */
@media (min-width: 992px) {
  .hero-copy {
    max-width: 620px;
  }
}

/*  HERO ANIMATION KEYFRAMES */

@keyframes heroTitleUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroInfoUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroArtIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*  PT Serif Bold */
.hero-title {
  font-family: "PT Serif", "Georgia", serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.22;
  margin-bottom: 18px;
  color: #64a2a4;
  animation: heroTitleUp 0.85s ease-out both;
}

/* Each colored word/line in the headline */
.headline-word {
  white-space: nowrap;
}
.headline-base {
  color: #64a2a4;
}
.headline-warm {
  color: #e6b468;
}
.headline-playful {
  color: #ca9d9b;
}
.headline-sunshine {
  color: #cb8363;
}

/* Subheadline */
.hero-subtitle {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 0;
  color: #6981a1;
  animation: heroSubtitleUp 0.85s ease-out both 0.12s;
}

/* Artwork placement (desktop / big screens) */
.hero-art {
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
}

/*  art size (desktop) */
.hero-art-image {
  width: 100%;
  height: auto;
  max-width: none;
  position: relative;
  z-index: 0;
  animation: heroArtIn 0.95s ease-out both 0.18s;
}

/* Inline artwork (used on tablet/phone portrait) */
.hero-art-inline {
  display: none;
}
.hero-art-inline-image {
  width: 100%;
  height: auto;
  animation: heroArtIn 0.95s ease-out both 0.18s;
}

/* INFO ROW (under subtitle) */

.info-row-wrapper {
  margin-top: 32px;
}

/* Row across three columns under the hero copy (desktop default) */
.info-row {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid rgba(75, 103, 99, 0.15);
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  column-gap: 50px;
  animation: heroInfoUp 0.9s ease-out both 0.28s;
}

/* Each column: icon + text */
.info-item {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
    background-color 0.2s ease-out;
}

/* Hover lift on info cards */
.info-item:hover {
  transform: translateY(-2px);
  background-color: #f7e7d3;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

/* text area */
.info-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 220px;
}

/* Icons */
.info-icon-wrapper {
  flex-shrink: 0;
  margin-top: 2px;
}
.info-icon {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}

/* vertical line between items (desktop only) */
.info-divider {
  width: 1px;
  background-color: rgba(75, 103, 99, 0.2);
  margin: 0 4px;
}

/* Text styling inside columns */
.info-label {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #4b6763;
  margin-bottom: 4px;
}
.info-detail {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #607f7b;
}

/* ABOUT ME SECTION */

.about-section {
  background-color: #fbe7ca;
  padding: 72px 0 80px;
}

.about-intro {
  margin-bottom: 18px;
}

.about-eyebrow {
  font-family: "PT Serif", "Georgia", serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #d58a76;
}

.about-title {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  margin: 0;
  color: #cb8363;
}

.about-body {
  max-width: 640px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b6763;
  margin-bottom: 16px;
}

.about-text-spanish {
  border-top: 1px solid rgba(75, 103, 99, 0.18);
  padding-top: 16px;
  margin-top: 8px;
  font-size: 0.97rem;
}

/* Profile card on the right */
.about-profile-card {
  max-width: 360px;
  margin: 0 auto;
  background-color: #f7d3a6;
  border-radius: 32px;
  padding: 28px 26px 26px;
  box-shadow: 0 18px 45px rgba(180, 128, 80, 0.2);
  text-align: center;
}

/* Rectangular photo frame for all three images */
.about-photo-wrap {
  width: 100%;
  height: 245px;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto 14px;
  background-color: #fff6e3;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* About card carousel styling */
.about-carousel {
  margin-bottom: 12px;
}
.about-carousel-indicators {
  position: static;
  margin-top: 4px;
}
.about-carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(75, 103, 99, 0.35);
  margin: 0 3px;
  border: none;
}
.about-carousel-indicators .active {
  background-color: #4b6763;
}

.about-badge {
  font-weight: 700;
  font-size: 0.98rem;
  color: #4b6763;
  margin-bottom: 14px;
}

.about-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b6763;
}
.about-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.about-credentials li:last-child {
  margin-bottom: 0;
}
.about-credentials-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #4b6763;
  margin-top: 7px;
  flex-shrink: 0;
}

/* AGE GROUPS SECTION */

.age-groups-section {
  margin-top: 0;
}

.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto repeat(2, minmax(260px, auto));
  grid-auto-rows: minmax(260px, auto);
  width: 100%;
}

/* Header band */
.age-header {
  grid-column: 1 / -1;
  background-color: #d9edf1; 
  text-align: center;
}

.age-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 20px 32px;
}

.age-title {
  font-family: "PT Serif", "Georgia", serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #d1a2ae;
  margin: 0 0 10px;
}

.age-subtitle {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.2rem;
  color: #8a616b;
  margin: 0;
}

/* Quadrant cards */
.age-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 56px;
  color: #ffffff;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

/* Hover motion on age cards */
.age-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.age-babies {
  background-color: #d9edf1;
}
.age-toddlers {
  background-color: #f2cfb3;
}
.age-preschool {
  background-color: #e5b48a;
}
.age-school {
  background-color: #7c9f91;
}

/* Icons */
.age-icon {
  width: 180px;
  max-width: 70%;
  height: auto;
  margin-bottom: 24px;
}

/* Text inside cards */
.age-card-line {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}
.age-card-line--primary {
  font-weight: 700;
  margin-bottom: 6px;
}

/* PICTURES / CAROUSEL SECTION */

.photos-section {
  padding: 80px 0 90px;
  background-color: #fff6e3;
}

.photos-header {
  margin-bottom: 32px;
}

.photos-title {
  font-family: "PT Serif", "Georgia", serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #cb8363;
  margin: 0 0 8px;
}

.photos-subtitle {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.15rem;
  color: #6981a1;
  margin: 0;
}

.photos-carousel {
  max-width: 960px;
  margin: 0 auto;
}

/* frame around each image */
.photos-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  background-color: #fbe7ca;
}

/*  aspect ratio and cropping */
.photos-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Indicators (small dots) */
.photos-carousel .carousel-indicators {
  margin-bottom: -10px;
}
.photos-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(203, 131, 99, 0.5);
  margin: 0 4px;
}
.photos-carousel .carousel-indicators .active {
  background-color: #cb8363;
}

/* Prev/next controls */
.photos-carousel .carousel-control-prev,
.photos-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(203, 131, 99, 0.82);
  border-radius: 999px;
  opacity: 1;
}
.photos-carousel .carousel-control-prev:hover,
.photos-carousel .carousel-control-next:hover {
  background-color: rgba(203, 131, 99, 0.95);
}
.photos-carousel .carousel-control-prev-icon,
.photos-carousel .carousel-control-next-icon {
  filter: invert(100%);
}

/* GET IN TOUCH SECTION */

.contact-section {
  padding: 80px 0 100px;
  background-color: #fff6e3;
}

.contact-card {
  background-color: #fdf2de;
  border-radius: 32px;
  padding: 40px 32px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

/* Hover lift on contact card */
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.contact-illustration {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.contact-eyebrow {
  font-family: "PT Serif", "Georgia", serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6981a1;
  margin-bottom: 8px;
}

.contact-title {
  font-family: "PT Serif", "Georgia", serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #4f6c92;
  margin: 0 0 10px;
}

.contact-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b6763;
  max-width: 520px;
  margin-bottom: 18px;
}

.contact-email a {
  font-weight: 700;
  font-size: 1.05rem;
  color: #3f8f8e;
  text-decoration: none;
  border-bottom: 1px dotted rgba(63, 143, 142, 0.45);
}
.contact-email a:hover {
  color: #2f6f70;
  border-bottom-color: transparent;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.contact-social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  font-size: 1.1rem;
}
.contact-social-facebook {
  background-color: #1877f2;
}
.contact-social-facebook:hover {
  background-color: #145fbe;
}
.contact-social-instagram {
  background-color: #e1306c;
}
.contact-social-instagram:hover {
  background-color: #c1275d;
}

/* SIMPLE FOOTER  */

.site-footer {
  background-color: #f5e6d3;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(75, 103, 99, 0.16);
  font-size: 0.9rem;
  color: #5f746f;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(75, 103, 99, 0.18);
  margin: 0 0 10px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  flex: 1 1 0;
}

.footer-logo-badge {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.footer-logo-icon {
  height: 90px;
  width: auto;
  display: block;
}

.footer-nav {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.footer-nav a {
  text-decoration: none;
  color: #3f8f8e;
  font-weight: 600;
}
.footer-nav a:hover {
  color: #2f6f70;
}



/* Large screens: push art bigger slightly up and left */
@media (min-width: 992px) {
  .hero-art-image {
    width: 135%;
    max-width: none;
    margin-top: -210px;
    margin-right: -40px;
    margin-left: -50px;
  }
}

/* Tablet & down  */
@media (max-width: 991.98px) {
  .navbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-nav {
    gap: 1.75rem;
  }

  .hero-section {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .hero-copy {
    text-align: center;
    padding-top: 24px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  /* artwork on top (inline) side art hidden */
  .hero-art {
    display: none;
  }

  .hero-art-inline {
    display: block;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 18px;
  }

  .hero-art-inline-image {
    max-width: 340px;
    width: 75%;
    margin: 0 auto;
  }

  /* Info row as stacked cards for portrait tablet + phone */
  .info-row-wrapper {
    margin-top: 24px;
  }

  .info-row {
    max-width: 100%;
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    column-gap: 0;
    row-gap: 12px;
    align-items: stretch;
  }

  .info-item {
    flex: 1 1 auto;
    background-color: #fdf2de;
    border-radius: 18px;
    padding: 10px 14px;
    align-items: center;
    box-shadow: none;
    transform: none;
  }

  .info-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .info-text {
    min-width: 0;
    text-align: left;
  }

  .info-icon-wrapper {
    margin-top: 0;
  }

  .info-icon {
    width: 38px;
    height: 38px;
  }

  .info-label {
    font-size: 0.98rem;
  }

  .info-detail {
    font-size: 0.9rem;
  }

  .info-divider {
    display: none;
  }

  /* About section on tablet */
  .about-section {
    padding: 56px 0 64px;
  }

  .about-title {
    font-size: 2.1rem;
  }

  .about-body {
    max-width: 100%;
  }

  .about-profile-card {
    margin-top: 32px;
  }

  /* Age groups: stack cards */
  .age-groups-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-template-rows: auto;
  }

  .age-header-inner {
    padding: 40px 16px 24px;
  }

  .age-card {
    padding: 40px 20px 44px;
  }

  .age-icon {
    width: 150px;
  }

  /* Photos section tablet tweaks */
  .photos-section {
    padding: 64px 0 72px;
  }

  .photos-title {
    font-size: 2.2rem;
  }

  .photos-carousel .carousel-control-prev,
  .photos-carousel .carousel-control-next {
    width: 46px;
    height: 46px;
  }

  /* Contact tablet  */
  .contact-section {
    padding: 72px 0 88px;
  }

  .contact-card {
    padding: 32px 24px;
  }
}

/* Phone portrait-ish */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-top: 6px;
  }

  .ls-logo {
    height: 140px;
  }

  .hero-art-inline-image {
    max-width: 280px;
    width: 80%;
    margin-top: 8px;
  }

  /* About section on small phones */
  .about-intro {
    text-align: center;
  }

  .about-body {
    margin-top: 12px;
  }

  .about-title {
    font-size: 1.9rem;
  }

  .about-profile-card {
    max-width: 320px;
  }

  .age-title {
    font-size: 2.2rem;
  }

  .age-subtitle {
    font-size: 1.05rem;
  }

  /* Photos on phones */
  .photos-title {
    font-size: 2rem;
  }

  .photos-subtitle {
    font-size: 1.02rem;
  }

  .photos-frame {
    border-radius: 24px;
  }

  .photos-carousel .carousel-control-prev,
  .photos-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  /* Contact on phones */
  .contact-card {
    text-align: center;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-text {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-social {
    justify-content: center;
  }

  .contact-illustration {
    max-width: 220px;
    margin-bottom: 8px;
  }

  /* Footer on phones */
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    flex: 0 0 auto;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* PHONE LANDSCAPE ONLY  */
@media (max-width: 950px) and (orientation: landscape) {
  .hero-section {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  /* text + art */
  .hero-section .row.align-items-center {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .hero-copy,
  .hero-art {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .hero-copy {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 12px;
  }

  /* side art, hide inline art */
  .hero-art {
    display: block;
    text-align: right;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-art-image {
    max-width: 370px;
    width: 115%;
    margin-right: -16px;
    margin-top: -270px;
  }

  .hero-art-inline {
    display: none;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-top: 6px;
  }

  /* Horizontal info row */
  .info-row-wrapper {
    margin-top: 28px;
  }

  .info-row {
    border-top: 1px solid rgba(75, 103, 99, 0.2);
    padding-top: 16px;
    flex-direction: row;
    column-gap: 36px;
    row-gap: 0;
    align-items: flex-start;
  }

  .info-item {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    align-items: flex-start;
    box-shadow: none;
  }

  .info-text {
    min-width: 160px;
    text-align: left;
  }

  .info-icon {
    width: 32px;
    height: 32px;
  }

  .info-label {
    font-size: 0.98rem;
  }

  .info-detail {
    font-size: 0.9rem;
  }

  .info-divider {
    display: block;
  }
}
