/* Smooth scrolling */
body {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 200px;
    min-height: 480px;
  }
}



/* Hero section */
.hero {
  position: relative;
  background-image: url('Dorr_Family_Des_Moines_Iowa.jpg');
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 680px;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 358px;
  margin-top: 80px;
  height: calc(100vh - 300px); /* full viewport minus navbar */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Navbar links */
.navbar-nav .nav-link {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #333;
  transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Section spacing */
.section {
  padding: 60px 0;
}

/* Testimonials */
.testimonial {
  font-style: italic;
  margin-bottom: 1rem;
}

/* Embedded map */
iframe {
  border: 0;
  width: 100%;
  height: 300px;
}
.btn-primary {
  background-color: #007B8A; /* Cyan */
  border-color: #00acc1;     /* Slightly darker cyan for border */
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #00acc1;
  border-color: #0097a7;
}
.bg-cyan {
  background-color: #00bcd4; /* Cyan */
  color: #fff;               /* Ensure text is readable */
}

.bg-cyan h2,
.bg-cyan h5 {
  color: #fff; /* Override Bootstrap's default dark text */
}
.bg-ocean {
  background-color: #007B8A;
  color: #fff;
}

.bg-ocean h2,
.bg-ocean h5 {
  color: #fff;
}
.uppercase {
  text-transform: uppercase;
}
.bold {
  font-weight: bold;
}

.tech-bg {
  background-image: url('../images/machine.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}
.tech-bg .overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  padding: 60px 0;
}
.feature-list i {
  color: #008B8B; /* Dark cyan */
}
#about {
  background-image: url('../images/Des_Moines_Vending_Logo.png');
  background-size: contain; /* or cover, depending on your preference */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f8f9fa;
  position: relative;
  padding: 80px 0;
  font-weight: bold;
  font-size: 1.2em;
  color: #222;
}

#about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.8); /* light overlay with 70% opacity */
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 1;
}
