body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  background: linear-gradient(#f5f5f5, #eeeeee);
  color: #333;
}

/* HERO */
.hero {
  background: url('Assets/field.png') center/cover no-repeat;
  height: 85vh;
}

.overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay h1 {
  font-size: 3.4rem;
  margin: 0;
}

.overlay p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* BUTTONS */
.btn {
  margin-top: 25px;
  padding: 14px 30px;
  background: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.25s;
  text-align: center;
}

.btn:hover {
  background: #256628;
  transform: translateY(2px);
}

/* Secondary button */
.secondary {
  background: #e0e0e0;
  color: #333;
}

.secondary:hover {
  background: #d5d5d5;
}

/* Sections */
section {
  background: white;
  padding: 50px 30px;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Headings */
h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  position: relative;
}

h2::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #2e7d32;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* Text */
section p, ul {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Contact */
.contact-box {
  margin-top: 15px;
  padding: 16px 18px;
  background: #f8f8f8;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-box p {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.phone {
  padding: 10px 16px;
  background: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
}

.phone:hover {
  background: #256628;
  transform: translateY(1px);
}

/* Button row */
.button-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.button-row .btn {
  flex: 1;
}

/* Map */
.location iframe {
  margin-top: 15px;
  border-radius: 8px;
  height: 420px;
}

/* Footer */
footer {
  text-align: center;
  padding: 25px;
  color: #777;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 600px) {
  .overlay h1 {
    font-size: 2.2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .button-row {
    flex-direction: column;
  }
}