/*
================================================
|                                              |
|         CULTURAL CLUB - REDESIGN V2          |
|    Theme: Expressive, Artistic, Elegant      |
|                                              |
================================================
*/

:root {
  /* NEW THEME from Design Brief */
  --font-title: 'MADE Mirage', serif;
  --font-body: 'Gilroy-Bold', sans-serif;
  --color-gradient: linear-gradient(120deg, #800000, #FFD700);
  --color-maroon: #800000;
  --color-gold: #FFD700;
  --color-dark-teal: #1A4D4F;
  --color-beige: #F5F5DC;
  --color-white: #FFFFFF;
  --color-text-on-dark: #F5F5DC;
  --color-text-on-light: #1A4D4F;
  --border-color: rgba(26, 77, 79, 0.2);

  /* Effects */
  --transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(26, 77, 79, 0.1);
}

/* Base Styles */
body {
  font-family: var(--font-body);
  background-color: var(--color-beige);
  color: var(--color-text-on-light);
  margin: 0;
  padding-top: 80px; /* Space for navbar */
  cursor: url('/cursors/cultural-club-default.png'), pointer;
}
a, button, [role="button"] {
  cursor: url('/cursors/cultural-club-hover.png'), pointer;
}

/* Club Page Layout */
.club-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Section */
.club-header {
  text-align: center;
  padding: 7rem 2rem;
  background: var(--color-gradient);
  background-size: 150% 150%; /* For animated gradient */
  color: var(--color-text-on-dark);
  border-radius: 16px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.club-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-white);
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.club-title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400; /* MADE Mirage is best at normal weight */
  color: var(--color-white);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  margin: 0 0 1rem 0;
}

.club-description {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.6;
  font-weight: 700;
  color: var(--color-text-on-dark);
}
.club-description strong {
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

/* Content Layout */
.club-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .club-content {
    grid-template-columns: 2fr 1fr;
    align-items: flex-start;
  }
}

/* Card Styles */
.about-section,
.connect-section {
  background: transparent;
  padding: 0;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  box-shadow: none; /* Removed base shadow */
}

.card-header {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-dark-teal);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header h2 {
  font-family: var(--font-title);
  color: var(--color-dark-teal);
  font-size: 2.5rem;
  margin: 0;
}
.card-header i {
  color: var(--color-maroon);
  stroke-width: 2;
}

.card-content {
  padding: 0;
}

.card-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-dark-teal);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-white);
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-list i {
  color: var(--color-gold);
  background-color: var(--color-maroon);
  padding: 8px;
  border-radius: 50%;
  stroke-width: 2;
}

/* Connect Section Specifics */
.connect-section {
    background-color: var(--color-dark-teal);
    color: var(--color-text-on-dark);
    padding: 3rem;
}
.connect-section .card-header {
    border-bottom-color: var(--color-gold);
}
.connect-section .card-header h2,
.connect-section .card-header i {
    color: var(--color-white);
}
.connect-section .card-content p {
    color: var(--color-text-on-dark);
}