/* =========================================================
   1. VARIABLES & CORE SETTINGS
rgba(255, 255, 255, 0.06);
  --card-edge: rgba(255, 255, 255, 0.08);
  --radius-lg: 24px;
  --radius-md: 14px;
  --transition-f   ========================================================= */
:root {
  --bg-1: #0f1724;
  --bg-2: #1f2937;
  --accent: #ff9f1c;
  --muted: #94a3b8;
  --glass: ast: 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1200px;
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Playfair Display", serif;
}

/* Global Section Resets */
.event-page, .cultural-events, .sports-page, .cocurricular-page, .sg-premium-section {
  position: relative;
  overflow: hidden;
  font-family: var(--font-main);
  box-sizing: border-box;
}

/* Common Section Typography */
.section-title {
font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
  color: #fff; /* Default for dark sections, overridden below */
}

.section-subtitle {
  text-align: center;
  color: #800202;
  margin-bottom: 50px;
  font-size: 1.7rem !important; /* Force override */
  line-height: 1.3;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* =========================================================
   2. HERO SECTION (.event-page)
   ========================================================= */
.academic-activities{
background:#0a0a0a;
padding:80px 5%;
color:#ffffff;
font-family:'Montserrat', sans-serif;
}

/* MAIN LAYOUT */

.academic-activities .main-container{
display:flex;
align-items:flex-start; /* aligns top */
justify-content:center;
gap:50px;
}

/* IMAGE */

.academic-activities .image-container{
flex:0 0 520px;
height:650px;
border-radius:15px;
border:2px solid #D4AF37;
overflow:hidden;
box-shadow:0 20px 50px rgba(212,175,55,0.1);
margin-top:20px; /* adjust if needed */
width: auto;

}

.academic-activities .image-container img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(0.8);
transition:0.5s ease;
}

.academic-activities .image-container:hover img{
filter:brightness(1);
transform:scale(1.05);
}

/* CONTENT */

.academic-activities .content-pane{
flex:1;
max-width:600px;
display:flex;
flex-direction:column;
}

.academic-activities .content-pane .main-title{
font-family:'Cinzel', serif !important;
font-size:2.4rem !important;  /* smaller size */
color:#D4AF37 !important;
letter-spacing:2px !important;
margin-bottom:15px !important;
text-transform:uppercase !important;
white-space:nowrap !important; /* keep in one line */
}
/* CARDS */

.academic-activities .activity-card{
margin-bottom:20px;
padding:15px 25px;
background:rgba(255,255,255,0.03);
border-radius:10px;
border-left:3px solid #D4AF37;
opacity:0;
transform:translateX(30px);
animation:slideIn 0.6s forwards;
transition:0.3s;
}

.academic-activities .activity-card:hover{
background:rgba(255,255,255,0.07);
transform:translateX(10px);
}

.academic-activities .activity-card h3{
font-family:'Cinzel', serif;
font-size:1.2rem;
color:#D4AF37;
margin-bottom:5px;
}

.academic-activities .activity-card p{
font-size:0.95rem;
color:#ccc;
margin:0;
line-height:1.4;
}


/* ANIMATION DELAY */

.academic-activities .c1{animation-delay:0.3s;}
.academic-activities .c2{animation-delay:0.5s;}
.academic-activities .c3{animation-delay:0.7s;}
.academic-activities .c4{animation-delay:0.9s;}

/* ANIMATIONS */

@keyframes slideIn{
to{
opacity:1;
transform:translateX(0);
}
}

@keyframes zoomIn{
from{
opacity:0;
transform:scale(0.9);
}
to{
opacity:1;
transform:scale(1);
}
}

/* RESPONSIVE */

@media (max-width:850px){

.academic-activities .main-container{
flex-direction:column;
}

.academic-activities .image-container{
width:100%;
height:300px;
}

.academic-activities .main-title{
font-size:1.8rem;
text-align:center;
}

}
/* =============mv */
/* ================= SECTION ================= */

.academic-activities{
background:#0a0a0a;
padding:80px 5%;
color:#ffffff;
font-family:'Montserrat', sans-serif;
}

/* ================= MAIN LAYOUT ================= */

.academic-activities .main-container{
display:flex;
align-items:flex-start;
justify-content:center;
gap:50px;
flex-wrap:wrap;
}

/* ================= IMAGE ================= */

.academic-activities .image-container{
flex:0 0 520px;
height:650px;
border-radius:15px;
border:2px solid #D4AF37;
overflow:hidden;
box-shadow:0 20px 50px rgba(212,175,55,0.1);
margin-top:20px;
}

.academic-activities .image-container img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(0.8);
transition:0.5s ease;
}

.academic-activities .image-container:hover img{
filter:brightness(1);
transform:scale(1.05);
}

/* ================= CONTENT ================= */

.academic-activities .content-pane{
flex:1;
max-width:600px;
display:flex;
flex-direction:column;
}

/* TITLE */

.academic-activities .content-pane .main-title{
font-family:'Cinzel', serif;
font-size:2.4rem;
color:#D4AF37;
letter-spacing:2px;
margin-bottom:20px;
text-transform:uppercase;
}

/* ================= CARDS ================= */

.academic-activities .activity-card{
margin-bottom:20px;
padding:18px 25px;
background:rgba(255,255,255,0.03);
border-radius:10px;
border-left:3px solid #D4AF37;
opacity:0;
transform:translateX(30px);
animation:slideIn 0.6s forwards;
transition:0.3s;
}

.academic-activities .activity-card:hover{
background:rgba(255,255,255,0.07);
transform:translateX(10px);
}

.academic-activities .activity-card h3{
font-family:'Cinzel', serif;
font-size:1.2rem;
color:#D4AF37;
margin-bottom:5px;
}

.academic-activities .activity-card p{
font-size:0.95rem;
color:#ccc;
margin:0;
line-height:1.5;
}
.content-pane .main-title {
  margin-top: 30px;
}
/* ================= ANIMATION DELAYS ================= */

.academic-activities .c1{animation-delay:0.3s;}
.academic-activities .c2{animation-delay:0.5s;}
.academic-activities .c3{animation-delay:0.7s;}
.academic-activities .c4{animation-delay:0.9s;}

/* ================= ANIMATIONS ================= */

@keyframes slideIn{
to{
opacity:1;
transform:translateX(0);
}
}

/* ================= MOBILE VIEW ================= */

@media (max-width:850px){

.academic-activities{
padding:60px 6%;
}

.academic-activities .main-container{
flex-direction:column;
gap:35px;
}

/* IMAGE */

.academic-activities .image-container{
width:100%;
height:320px;
margin-top:0;
}

/* CONTENT */

.academic-activities .content-pane{
max-width:100%;
}

/* TITLE */

.academic-activities .content-pane .main-title{
font-size:1.7rem;
text-align:center;
line-height:1.3;
}

/* CARDS */

.academic-activities .activity-card{
padding:15px 18px;
}

.academic-activities .activity-card h3{
font-size:1.1rem;
}

.academic-activities .activity-card p{
font-size:0.9rem;
}

}
@media (max-width:850px){

/* FIX TITLE VISIBILITY */

.academic-activities .content-pane .main-title{
font-size:1.7rem !important;
white-space:normal !important;
text-align:center;
line-height:1.3;
padding:0 10px;
}

}
/* =========================================================
   3. UNIFIED GALLERY SECTIONS (Cultural, Sports, Co-curricular)
   ========================================================= */
/* --- 🎭 CULTURAL SECTION MAIN --- */
/* --- 🎭 CULTURAL SECTION MAIN --- */
.cultural-events {
  padding: 50px 5%; 
  /* ✨ Deep Luxury Gradient Background */
  background: radial-gradient(circle at center, #1e1b4b 0%, #020617 100%);
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

/* --- 📝 HEADERS --- */
.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  /* ✨ Triple-Tone Metallic Gradient */
  background: linear-gradient(to right, #f472b6, #fbbf24, #22d3ee, #f472b6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 5px;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  color: #94a3b8; /* Slate Blue-Grey */
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

/* --- ✨ INFO SECTION (Glassmorphism) --- */
.cultural-info {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  padding: 35px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Left Gold Accent */
  border-left: 6px solid #fbbf24; 
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  margin-bottom: 45px;
  transition: 0.4s;
}

.cultural-info h3 {
  font-size: 2rem;
  color: #fbbf24; /* Golden Heading */
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.cultural-info ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  list-style: none;
  padding: 0;
}

.cultural-info ul li {
  font-size: 1.3rem;
  font-weight: 500;
  color: #f1f5f9;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
  transition: 0.3s ease;
}

.cultural-info ul li:hover {
  color: #22d3ee; /* Cyan Glow on hover */
  transform: translateX(8px);
}

.cultural-info ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: 900;
}
/* -----------------------------sports css------------------------------ */
/* --- 🏆 DEEP NAVY SPORTS SECTION --- */
.sports-page {
  padding: 50px 4%; /* Wider side padding for HD feel */
  background: radial-gradient(circle at center, #001529 0%, #000814 100%);
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

/* --- 📝 HEADERS --- */
.section-title {
  font-size: 3.8rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(to right, #00d2ff, #fff, #00d2ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

@keyframes shineText {
  to { background-position: 200% center; }
}

/* --- ✨ FULL-WIDTH 5 & 5 POINTS (No Boxes) --- */
.sports-info {
  width: 100%; /* 🚀 Uses Full Width */
  margin-bottom: 50px;
  border-top: 1px solid rgba(0, 210, 255, 0.2);
  padding-top: 40px;
}

.sports-info h3 {
  color: #00d2ff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.sports-info ul {
  display: grid;
  /* 📈 PERFECT SPLIT: 2 Columns stretching to full width */
  grid-template-columns: 1fr 1fr; 
  column-gap: 10%; /* Creates a massive, professional gap in the middle */
  row-gap: 20px;
  list-style: none;
  padding: 0;
  width: 100%; 
}

.sports-info li {
  color: #cbd5e1;
  font-size: 1.2rem; /* 📈 Increased Font for HD quality */
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  padding-left: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Subtle separator line */
  padding-bottom: 10px;
}

/* ✨ HD FONT EFFECT: Vibrant Cyan Glow on Hover */
.sports-info li:hover {
  color: #ffffff;
  text-shadow: 0 0 15px #00d2ff, 0 0 30px rgba(0, 210, 255, 0.6);
  transform: scale(1.03) translateX(15px);
  border-bottom-color: rgba(0, 210, 255, 0.5);
}

.sports-info li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: #00d2ff;
  font-size: 1.3rem;
}

/* --- 📸 PHOTO GALLERY (Fixed 4 Per Row) --- */
.sports-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  width: 100%;
}

.sport-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 300px; /* 📈 Taller photos for HD look */
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.6s ease;
}

.sport-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
  filter: brightness(0.7) saturate(1.2);
}

.sport-photo:hover {
  transform: translateY(-15px);
  border-color: #00d2ff;
  box-shadow: 0 20px 50px rgba(0, 210, 255, 0.4);
}

.sport-photo:hover img {
  transform: scale(1.15);
  filter: brightness(1.1) saturate(1.4);
}

/* --- 📱 RESPONSIVE --- */
@media (max-width: 900px) {
  .sports-info ul { grid-template-columns: 1fr; }
  .sports-gallery { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2.8rem; }
}

/* scouts guides */




/* --- 📸 PHOTO GALLERY (FIXED 4 PER ROW) --- */
.gallery {
  display: grid;
  /* ✨ LOCKED: Exactly 4 columns for desktop */
  grid-template-columns: repeat(4, 1fr); 
  gap: 15px;
}

.photo-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 240px; /* Reduced height for better row balance */
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #000;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 0.5s ease;
  opacity: 0.85;
}

/* ✨ HD Hover Interactions */
.photo-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #fbbf24; /* Gold Border Glow */
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
  z-index: 10;
}

.photo-box:hover img {
  transform: scale(1.15);
  opacity: 1;
  filter: contrast(110%) saturate(120%);
}

/* --- 📱 RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(2, 1fr); } /* 2 per row on tablets */
}

@media (max-width: 768px) {
  .cultural-info ul { grid-template-columns: 1fr; }
  .section-title { font-size: 2.4rem; }
  .gallery { grid-template-columns: 1fr; } /* 1 per row on phones */
  .photo-box { height: 300px; }
}

/* =========================================================
   4. SCOUTS & GUIDES PREMIUM SECTION
   ========================================================= */
/* --- 🛡️ SCOUTS & GUIDES PREMIUM SECTION --- */
.sg-premium-section {
  padding: 60px 5%;
  /* ✨ NEW: Mix of Clean White & Deep Sky Blue */
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.sg-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- 📝 HEADER STYLING --- */
.sg-header {
  text-align: center;
  margin-bottom: 50px;
}

.sg-header .section-title {
  font-size: 3.1rem! important;
  font-weight: 900;
  /* ✨ NEW: Blue-to-Navy Gradient Font */
  background: linear-gradient(to right, #00283c, #0c4a6e, #002c41);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: blueShine 3s linear infinite;
  text-transform: uppercase;
  letter-spacing: 4px;
}

@keyframes blueShine {
  to { background-position: 200% center; }
}

.sg-header .section-subtitle {
  font-size: 1.3rem;
  color: #0369a1; /* Deep Sky Blue */
  font-weight: 600;
  margin-top: 10px;
}

/* --- 📸 4 PHOTOS PER ROW (HD GRID) --- */
.sg-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🚀 Fixed 4 per row */
  gap: 15px;
  margin-bottom: 50px;
}

.sg-card {
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  /* ✨ White Glow Border */
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.sg-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #0ea5e9; /* Blue Border on Hover */
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.3);
}

.sg-card:hover img {
  transform: scale(1.15);
  filter: saturate(1.2);
}

/* --- ✨ STRUCTURED FEATURES (Blue Theme) --- */
.sg-features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  margin-bottom: 50px;
}

.sg-feature-box {
  /* ✨ Glassmorphism on Light Background */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(2, 132, 199, 0.1);
  display: flex;
  gap: 15px;
  transition: 0.4s ease;
}

.sg-feature-box:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1);
}

.feat-icon i {
  font-size: 2rem;
  color: #0ea5e9; /* Sky Blue Icons */
  filter: drop-shadow(0 4px 6px rgba(14, 165, 233, 0.2));
}

.feat-content h3 {
  font-size: 1.2rem;
  color: #0c4a6e; /* Navy Blue Content Heading */
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 800;
}

.feat-content p {
  font-size: 0.95rem;
  color: #334155; /* Slate Grey for readability */
  line-height: 1.5;
  font-weight: 500;
}

/* --- 🎗️ MOTTO BAR --- */
.sg-motto-bar {
  background: #41aadb;
  padding: 20px;
  border-radius: 80px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
  /* Animated Pulse Effect */
  animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.sg-motto-bar span {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
}

/* --- 📱 RESPONSIVE --- */
@media (max-width: 1024px) {
  .sg-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .sg-features-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sg-photo-grid, .sg-features-container { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
}
/* =========================================================
   5. FULL RESPONSIVENESS (Consolidated)
   ========================================================= */

/* Tablets & Small Desktops (max-width: 1100px) */
@media (max-width: 1100px) {
  .gallery, .sports-gallery, .cocurricular-gallery, .sg-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (max-width: 980px) */
@media (max-width: 980px) {
  .event-container { grid-template-columns: 1fr; gap: 26px; }
  .event-image-wrapper { order: 1; }
  .event-content { order: 2; padding: 22px; }
  .event-content h2 { text-align: center; }
  .sg-features-container { grid-template-columns: repeat(2, 1fr); }
  .image-inner:hover img { transform: none; } /* Disable zoom on touch */
}

/* Small Phones (max-width: 600px) */
@media (max-width: 600px) {
  .gallery, .sports-gallery, .cocurricular-gallery, .sg-photo-grid, .sg-features-container {
    grid-template-columns: 1fr;
  }
  .section-title { font-size: 30px; }
  .event-page { padding: 40px 5%; }
  .sg-motto-bar span { font-size: 1.2rem; }
  .style-3 img { border-radius: 16px; }
}

/* Accessibility & Utils */
#cultural-section, #sports-section, #co-curricular { scroll-margin-top: 130px; }

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 0s !important;
    background-attachment: initial !important;
  }
}
/* ----------------------------events */
/* MAIN WRAPPER */

/* WRAPPER */

/* WRAPPER */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Montserrat:wght@300;400;600&family=Poppins:wght@400;600&display=swap');

.clubs-wrapper-area {
    background: radial-gradient(circle at center, #243c73 0%, #0f172a 100%);
    padding: 60px 5% 80px;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    box-sizing: border-box;
    color: #fff;
}

/* PAGE SYSTEM & ANIMATION */
.clubs-page {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    animation: clubSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.clubs-page.active {
    display: flex;
}

@keyframes clubSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* MAIN TITLE */
.clubs-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    letter-spacing: 8px;
    color: #d4af37;
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.clubs-instruction {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 300;
}

.clubs-instruction::before, .clubs-instruction::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #d4af37;
    margin: 0 15px;
    vertical-align: middle;
}

/* LUXURY MENU BOX */
.clubs-menu-list {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 1000px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    margin: 0 auto;
}

/* MENU ITEMS - UPDATED WITH ARROW MARK */
.club-menu-item {
    display: flex; /* Changed to flex to align arrow to the right */
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin: 18px 0;
    color: #e2e8f0;
    cursor: pointer;
    font-weight: 500;
    padding: 18px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
}

/* THE ARROW MARK */
.club-menu-item::after {
    content: "→";
    font-size: 28px;
    color: var(--gold);
    opacity: 0.5;
    transition: all 0.4s ease;
    transform: translateX(0);
}

.club-menu-item:hover {
    background: #fbfaf8;
    color: #000;
    transform: translateX(15px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    font-weight: 600;
}

/* ARROW EFFECT ON HOVER */
.club-menu-item:hover::after {
    opacity: 1;
    color: #000;
    transform: translateX(10px);
}

/* CLUB PAGE ELEMENTS */
.club-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.club-desc {
    max-width: 800px;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 50px;
    font-weight: 300;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* GALLERY UPGRADE */
.club-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1800px;
}

.club-gallery img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.5s ease;
}

.club-gallery img:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #d4af37;
    filter: brightness(1.1);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

/* BACK BUTTON */
.clubs-back-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 50px;
    text-transform: uppercase;
}

.clubs-back-btn:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

@media(max-width:900px){
    .clubs-main-title { font-size: 2rem; }
    .club-menu-item { font-size: 1.1rem; padding: 15px; }
    .club-title { font-size: 2.2rem; }
}
