@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap);

:root {
  --st-accent: #5bc0de;
  --st-blue: #3d9fed;
}

html, body {
  height: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  padding-top: 80px; /* offset for fixed navbar */
  color: #343a40;
}

/* Navbar (Bootstrap 5) */
.navbar.st-navbar {
  background-color: #fff;
  border-bottom: 3px solid var(--st-accent);
}

.navbar.st-navbar .navbar-brand img {
  max-height: 36px;
  width: auto;
  display: block;
}

.navbar.st-navbar .nav-link,
.navbar.st-navbar .dropdown-item {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.cta-nav {
  color: #ffffff !important;
  background-color: var(--st-accent);
  border: 1px solid #46b8da;
  border-radius: 6px;
}

.cta-nav:hover {
  color: #ffffff !important;
  background-color: #31b0d5 !important;
  border-color: #269abc !important;
}

/* Sections / layout (ported from old styles.css) */
.content-single {
  padding-bottom: 40px;
}

.content-inverse {
  background-color: var(--st-blue);
  color: white;
}

.content-center-wrapper {
  position: relative;
}

.content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-border {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

#hero {
  min-height: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#hero-content {
  text-align: left;
  background: rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 6px;
}

@media screen and (min-width: 577px){
  #hero-content h1 {
    font-size: 1.5em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.7);
  }

  #hero-content h2 {
    font-size: 1.0em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.7);
  }
}

@media screen and (max-width: 576px){
  #hero-content h1 {
    font-size: 4em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.7);
  }

  #hero-content h2 {
    font-size: 2.5em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.7);
  }
}

.content-header {
  text-align: center;
  padding: 2em 0;
}

@media (max-width: 576px) {
  .content-header {
    padding: 1.25em 0;
  }
}

/* Images */
.img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  margin: 0 auto 20px;
  display: block;
}

#highlights .highlights-photos-row-1 .img-responsive {
  margin-bottom: 10px;
}

/* Carousel tweaks */
.carousel {
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
}

.carousel img {
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

/* Testimonials (Bootstrap 5 card layout) */
.testimonial-card .card-header,
.testimonial-card .card-footer {
  text-align: center;
}

.testimonial-author {
  font-size: 0.9em;
  text-transform: uppercase;
  margin-top: 0.8em;
}

/* List spacing */
li {
  margin-bottom: 0.5em;
}

/* Minor helpers */
.text-blue {
  color: var(--st-blue);
}

