/* == Little Lamb Libraries Landing Carousel Styles == */

/* Main card container */
.lll-carousel-container {
  max-width: 800px;
  margin: auto 0 !important;
  background: var(--bg-card, #fff);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  /* padding: 2.4rem 2.5rem 2.2rem 2.5rem; */
  position: relative;
  box-sizing: border-box;
  min-height: 530px;
  transition: padding 0.2s, min-height 0.2s;
  display: flex;
}
.splash-card .lll-slide-content {
  min-height: unset !important;
  height: auto !important;
  padding: 0 !important;
}
/* --- Splash slide: hug content with minimal whitespace --- */
.splash-card {
  padding: 1.1rem 1.2rem 1.2rem 1.2rem !important;
  min-height: unset !important;
  box-sizing: border-box;
  margin: 0 auto !important;         /* ← CENTERED, NO STRETCH */
  max-width: 1000px !important;
  /*width: 100% !important;*/
  flex-shrink: 0;
}
.splash-card .lll-slide-imagebox {
  margin-bottom: 0.6rem !important;
}
.splash-card .lll-slide-desc-col {
  margin-top: 0.5rem !important;
}

/* Slide switching and stacking */
.lll-carousel {
  position: relative;
  width: 100%;
}
.lll-slide {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.lll-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.lll-slide-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 530px;
}

/* Slide Layouts */
.lll-slide-imagebox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.0rem;
}
.lll-slide-imagebox img.screenshot {
  width: 100%;
  max-width: 890px;
  min-width: 200px;
  max-height: 490px;
  border-radius: 13px;
  background: #f6fafd;
  box-shadow: 0 2px 18px rgba(49,84,128,0.11);
  object-fit: contain;
}
.lll-slide-imagebox img.logo {
  max-width: 430px;
  width: 100%;
  margin: 0 auto 0.7rem auto;
  display: block;
}
.lll-slide-details-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0.3rem;
  gap: 1.1rem;
}
.lll-slide-lamb-spot {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 90px;
  min-height: 80px;
  max-width: 112px;
}
.lll-slide-lamb-spot .lamb-icon {
  width: 84px;
  height: 84px;
  max-width: 98px;
  max-height: 98px;
  object-fit: contain;
  background: #f5f5fd;
  border-radius: 21px;
  box-shadow: 0 2px 8px rgba(180,180,220,0.09);
}
.lll-slide-desc-col {
  flex: 1 1 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  max-width: 620px;
}
.lll-slide-title {
  font-size: 1.38rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: var(--text-heading, #001a57);
  margin-bottom: 0.16em;
  margin-top: 0;
}
.lll-slide-desc {
  font-size: 1.11rem;
  color: var(--text-body, #274a67);
  font-family: 'Nunito', sans-serif;
  line-height: 1.67;
  margin-bottom: 0.7rem;
  margin-top: 0.35rem;
  white-space: pre-line;
}
.lll-slide-signup {
  width: 100%;
  display: flex;
  gap: 1.2em;
  justify-content: center;
  margin-top: 1.25em;
}
.lll-slide-signup .btn-primary,
.lll-slide-signup .btn-outline {
  min-width: 150px;
  font-size: 1.08em;
  padding: 0.7em 2.1em;
  text-align: center;
}
.splash-card + .lll-carousel-dots,
.splash-card .lll-carousel-dots {
  margin-top: 0.35rem !important;
}

/* Phone mockup for mobile slide */
.lll-phone-mockup {
  background: #e7f1fa;
  border: 2.2px solid #c2e2fa;
  border-radius: 33px;
  box-shadow: 0 4px 25px #6db6ee35;
  width: 290px;
  height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 0.7rem;
  margin: 0 auto;
  position: relative;
}
.lll-phone-mockup img {
  width: 232px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 7px #aac4ec28;
}

/* Dots for navigation */
.lll-carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin: 1.2rem 0 0 0;
  width: 100%;
}
.lll-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bde3ff;
  border: 2px solid #78b8f6;
  cursor: pointer;
  transition: background 0.18s, border 0.15s;
  opacity: 0.66;
}
.lll-dot.active {
  background: #47a6ee;
  border-color: #2860a3;
  opacity: 1;
}

/* Persistent signup (buttons below) */
.lll-persist-signup {
  width: 100%;
  margin: 2.3rem auto 0 auto;
  text-align: center;
  display: none; /* Hidden by default, shown via JS on non-splash */
}
.lll-persist-signup .btn-primary {
  font-size: 1.07em;
  padding: 0.75em 2.3em;
  min-width: 170px;
  margin-right: 1em;
}
.lll-persist-signup .btn-outline {
  min-width: 110px;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .lll-carousel-container { max-width: 98vw; padding-left: 1vw; padding-right: 1vw; }
}
@media (max-width: 800px) {
  .lll-slide-imagebox img.screenshot { max-width: 99vw; }
  .lll-slide-imagebox img.logo { max-width: 93vw; }
  .lll-slide-details-row { flex-direction: column; gap: 0.3rem; align-items: center;}
  .lll-slide-lamb-spot { margin-bottom: 0.3em; }
  .lll-slide-desc-col { align-items: center; text-align: center;}
  .lll-phone-mockup { width: 98vw; height: 370px; padding: 0.4rem 0; }
  .lll-phone-mockup img { width: 98vw; max-width: 98vw; }
}
.lll-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem; /* Tight spacing between arrows and card */
  margin-top: 2.5rem;
  position: relative;
}

.lll-arrow-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  margin-right: 1rem;
}

.lll-nav-arrow {
  background: none;
  border: none;
  font-size: 2.8rem;
  color: #65a5dc;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  padding: 0 0.4rem;
}
.lll-nav-arrow:hover {
  color: #3c82c2;
}
.lll-nav-arrow img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/Nunito/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/Nunito/Nunito-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/Nunito/Nunito-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/Nunito/Nunito-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}