html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body { min-height: 100vh; }

/* HERO SECTION: full width and height background image */
.hero-section {
  width: 100vw;
  height: 100vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(35,35,35,0.55), rgba(30,70,100,0.45)),
    url('../../images/club-hero.jpeg') center center no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero-content {
  color: #fff;
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.45);
  border-radius: 24px;
  max-width: 700px;
  margin: 0 1rem;
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,.12);
}

a.hero-btn {
  display: inline-block;
  text-decoration: none;
  background: #0d6efd;
  border: none;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  margin-top: 1.5rem;
  transition: background 0.2s;
}
a.hero-btn:hover {
  background: #094686;
}

.quick-links .card {
  transition: transform .15s;
}
.quick-links .card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 1rem 2rem rgba(0,0,0,.12);
}

@media (max-width: 767.98px) {
  .hero-content {
    padding: 1rem;
    max-width: 95vw;
  }
  .hero-section {
    min-height: 300px;
    height: 70vh;
  }
}