/* style.css */

/* GLOBAL RESET */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.site-footer {
  margin-top: auto;
  text-align: center;
  padding: 1.5rem;
  background: #222;
  color: white;
  font-size: 0.9rem;
}

/* HEADER */
.site-header {
  background: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 50px;
}

.site-header nav a {
  color: #34788B;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

/* HERO SECTION */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 2rem 100px;
  color: white;
  text-align: center;
  z-index: 0;
}

.hero-overlay.top,
.hero-overlay.bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  background: #34788B;
  z-index: 1;
}

.hero-overlay.top {
  top: 0;
}

.hero-overlay.bottom {
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  margin: 0 auto 2rem;
  max-width: 960px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}

.hero h1 {
  font-size: 2.75rem;
  margin-top: 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  margin: 0.5rem auto 2rem;
  max-width: 700px;
  color: #f2f2f2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  background: #34788B;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

/* HERO FEATURES */
.hero-features-wrapper {
  position: relative;
  z-index: 2;
  padding-top:20px;
  margin-top: 20px; /* Pull up slightly without covering the overlay */
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
  

}

.hero-features .feature {
  flex: 1 1 250px;
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.hero-features .feature h3 {
  color: #34788B;
  margin-bottom: 0.5rem;
}

.hero-features .feature p {
  font-size: 0.95rem;
  line-height: 1.4;
    color: #222;
  text-shadow: none;
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    padding: 1.5rem;
  }

  .hero-content {
    padding: 1.5rem;
    margin: 0 1rem 2rem;
  }
}

/* ABOUT SECTION */
.about-gutterball {
  padding: 4rem 2rem;
  background: #ffffff;
  color: #222;
  display: flex;
  justify-content: center;
}

.about-gutterball .container {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  animation: fadeIn 1s ease-in-out;
}

.about-gutterball h2,
.about-gutterball h3 {
  color: #34788B;
  margin-top: 2rem;
  grid-column: span 2;
}

.about-gutterball p {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-gutterball .icon-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-gutterball .icon-block img {
  width: 40px;
  height: 40px;
}

.about-gutterball .icon-block p {
  margin: 0;
}
