/* =============================
   Full-Width Image and Wrapper
============================= */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =============================
   Text Overlay on Image
============================= */
.overlay-text {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: #d1f5c2;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 3px #000;
}

/* =============================
   Responsive Text Scaling
============================= */
@media screen and (max-width: 768px) {
  .overlay-text {
    font-size: 1rem;
    padding: 16px;
  }
}

@media screen and (max-width: 480px) {
  .overlay-text {
    font-size: 0.95rem;
    padding: 12px;
  }
}

/* =============================
   Body and General Layout
============================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #e0f5dc;
  color: #2a3d2f;
  text-align: center;
}

/* =============================
   Header and Navigation
============================= */
header {
  background: transparent;
  color: #184d28;
  padding: 20px;
  text-shadow: 1px 1px 2px #a2d5a2;
}

nav ul {
  list-style: none;
  padding: 0;
  background: transparent;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: #2a5e3f;
  text-decoration: none;
  font-size: 18px;
}

/* =============================
   Footer
============================= */
footer {
  background-color: transparent;
  color: #3c2e1e;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #3c2e1e;
  font-size: 0.95rem;
}

footer a {
  color: #3c2e1e;
  text-decoration: underline;
}

footer a:hover {
  color: #7b4e2f;
}

/* =============================
   Club Grid Layout
============================= */
.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================
   Individual Club Cards
============================= */
.club {
  background-color: #000000aa;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.club:hover {
  transform: scale(1.03);
}

.club img {
  width: 100%;
  height: auto;
  display: block;
}

.club-text {
  text-align: center;
  padding: 12px;
  color: white;
  font-size: 14px;
}
