/*
================================================
|                                              |
|          SPORTS CLUB PAGE - REDESIGN         |
|      Theme: High-Contrast, Aggressive,       |
|      Monochrome (Enhanced)                   |
|                                              |
================================================
*/

/* 2. ROOT & THEME VARIABLES
------------------------------------------------ */
:root {
  /* NEW THEME: Glowy White & Black */
  --club-primary: #FFFFFF; /* White for glow effects */
  --club-secondary: #BDBDBD; /* Muted grey for secondary text */
  --background-dark: #000000; /* Pure Black background */
  --text-light: #FFFFFF;
  --transition-fast: all 0.3s ease-in-out;
  --card-background: rgba(25, 25, 25, 0.5); /* Semi-transparent dark grey for cards */

  /* NEW FONT */
  --font-title: 'SF Sports Night', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}


/* 3. GENERAL PAGE & BODY STYLES
------------------------------------------------ */
body.sports-theme {
  background-color: var(--background-dark);
  font-family: var(--font-body);
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
  cursor: url('/cursors/sports-club-default.png'), pointer;
}
a, button, [role="button"] {
  cursor: url('/cursors/sports-club-hover.png'), pointer;
}

.club-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
}

.page-container {
    width: 100%;
}

/* 4. HEADER & CENTRAL CONTENT
------------------------------------------------ */
.club-header {
  width: 100%;
  padding: 4rem 2rem;
  background: transparent; /* Cleaner look, no gradient */
  border: 1px solid var(--club-primary);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.club-logo-container {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  border: 3px solid var(--club-primary);
  background-color: var(--background-dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.club-logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6), inset 0 0 20px rgba(0,0,0,0.5), 0 0 35px var(--club-primary);
}

.club-logo {
    width: 100%;
    height: 100%;
    background-image: url("/images/sports-club-favicon.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.club-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--club-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 8px var(--club-primary), 0 0 25px rgba(255, 255, 255, 0.5);
}

.club-subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: var(--club-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* 5. CONTENT SECTIONS
------------------------------------------------ */
.club-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    width: 100%;
}

.content-card {
    background: var(--card-background);
    border: 1px solid var(--club-primary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    /* Prepare for animations */
    opacity: 0;
    transform: translateY(40px);
}

.content-card h2 {
    font-family: var(--font-title);
    color: var(--club-primary);
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--club-primary);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.content-card p {
    margin-bottom: 1rem;
    color: var(--club-secondary);
}
.content-card p:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-list li {
    background: var(--background-dark);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--club-primary);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.feature-list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.content-card i.feather {
    width: 24px;
    height: 24px;
    color: var(--club-primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

/* 6. RESPONSIVE ADJUSTMENTS
------------------------------------------------ */
@media (max-width: 768px) {
  .club-page { padding: 1rem; }
  .club-header { padding: 3rem 1.5rem; margin-bottom: 1.5rem; }
  .club-logo-container { width: 120px; height: 120px; }
  .content-card { padding: 1.5rem; text-align: center; }
  .content-card h2 { justify-content: center; }
  .feature-list li {
      justify-content: center;
      text-align: center;
      border-left: none;
      border-top: 3px solid var(--club-primary);
  }
}