html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

#footer-placeholder {
  margin-top: auto;
}

/* Carousel */
#carouselExampleIndicators {
  max-height: 70vh;
  overflow: hidden;
}

#carouselExampleIndicators img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* Typography */
.display-4 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Hero image */
.hero-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

/* Feature icons */
.feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Reduce vertical spacing on small screens */
@media (max-width: 576px) {
  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* Pricing: one card per row on mobile */
@media (max-width: 767px) {
  .pricing .col {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

@media (max-width: 767px) {
  .pricing .row > .col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.navbar-brand {
  white-space: nowrap;
}

.brand-short {
  display: none;
}

@media (max-width: 576px) {
  .brand-full {
    display: none;
  }
  .brand-short {
    display: inline;
  }
}