html, body {
    height: 100%;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#footer, footer {
    margin-top: auto;
}

.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Adjustable Y positioning */
    transform: scale(1.1); /* Adjustable scaling */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-image {
        object-position: center 40%;
    }
}

/* Club card styling */
.club-card {
    transition: transform 0.2s;
}

.club-logo-placeholder {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

@media (max-width: 767.98px) {
  .club-details-mobile-spacing {
    margin-top: 2rem !important;
  }
}

@media (max-width: 1100px) {
  .about-sidebar-mobile-spacing {
    margin-bottom: 2rem !important;
  }
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .dropdown-toggle {
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .footer-left-mobile-spacing {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 767.98px) {
  footer .list-unstyled {
    margin-bottom: 0.5rem !important;
    padding-bottom: 0 !important;
  }
}

footer.bg-dark {
  padding-bottom: 1rem !important;
}