/* CSS Variables & Reset */
:root {
  /* Primary Colors */
  --primary-100: #ff6b6b; /* Bright Coral */
  --primary-200: #e84c4c; /* Darker Coral */
  --primary-300: #d42e2e; /* Deep Coral */
  
  /* Secondary Colors */
  --secondary-100: #4ecdc4; /* Turquoise */
  --secondary-200: #36b5ac; /* Darker Turquoise */
  --secondary-300: #2a9d94; /* Deep Turquoise */
  
  /* Accent Colors */
  --accent-100: #ffe66d; /* Bright Yellow */
  --accent-200: #fed766; /* Golden Yellow */
  --accent-300: #f0c94a; /* Deep Yellow */
  
  /* Neutral Colors */
  --neutral-100: #ffffff; /* White */
  --neutral-200: #f9f9f9; /* Light Gray */
  --neutral-300: #f0f0f0; /* Medium Light Gray */
  --neutral-400: #e0e0e0; /* Medium Gray */
  --neutral-500: #c5c5c5; /* Gray */
  --neutral-600: #a3a3a3; /* Medium Dark Gray */
  --neutral-700: #6d6d6d; /* Dark Gray */
  --neutral-800: #3a3a3a; /* Charcoal */
  --neutral-900: #1a1a1a; /* Near Black */
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Fonts */
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  line-height: 1.6;
  background-color: var(--neutral-100);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--neutral-900);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: var(--space-md);
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-100);
  background: linear-gradient(to right, var(--primary-100), var(--secondary-100));
  border-radius: var(--radius-sm);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-200);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-300);
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: var(--space-xl) 0;
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Global Section Styles */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .subtitle {
  color: var(--neutral-700);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: -10px;
}

.light-text {
  color: var(--neutral-100);
}

.light-text h2 {
  color: var(--neutral-100);
}

.light-text .subtitle {
  color: var(--neutral-300);
}

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  background-color: var(--primary-100);
  color: var(--neutral-100);
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: var(--primary-200);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary-100);
  color: var(--neutral-100);
}

.btn-primary:hover {
  background-color: var(--primary-200);
}

.btn-secondary {
  background-color: var(--secondary-100);
  color: var(--neutral-100);
}

.btn-secondary:hover {
  background-color: var(--secondary-200);
}

.btn-light {
  background-color: var(--neutral-100);
  color: var(--primary-200);
}

.btn-light:hover {
  background-color: var(--neutral-200);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 60px;
  width: auto;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.desktop-nav a {
  color: var(--neutral-800);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary-100), var(--secondary-100));
  transition: width var(--transition-normal);
}

.desktop-nav a:hover {
  color: var(--primary-200);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  z-index: 999;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav li {
  margin-bottom: var(--space-sm);
}

.mobile-nav a {
  color: var(--neutral-900);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: var(--space-sm) 0;
}

.mobile-nav a:hover {
  color: var(--primary-200);
}

/* Hero Section */
.hero-section {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-content {
  text-align: center;
  color: var(--neutral-100);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  color: var(--neutral-100);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--neutral-100);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* About/Vision Section */
.about-section {
  background-color: var(--neutral-200);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.about-text, .about-image {
  flex: 1;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Features/Hobbies Section */
.hobbies-section {
  background-color: var(--neutral-100);
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary-200);
}

.card-content p {
  margin-bottom: var(--space-md);
  flex: 1;
}

/* Resources Section */
.resources-section {
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.resource-card {
  background-color: var(--neutral-100);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.resource-card h3 {
  margin-bottom: var(--space-md);
  color: var(--primary-200);
  text-align: center;
}

.resource-card ul {
  list-style-type: none;
}

.resource-card li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  position: relative;
}

.resource-card li::before {
  content: '•';
  color: var(--primary-100);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.resource-card a {
  font-weight: 600;
}

/* Events Section */
.events-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--neutral-100);
}

.events-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.event-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: var(--space-md);
}

.event-date {
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  color: var(--neutral-100);
  border-radius: var(--radius-md);
  min-width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.event-date .month {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
}

.event-details {
  flex: 1;
}

.event-details h3 {
  color: var(--neutral-100);
  margin-bottom: var(--space-xs);
}

.event-meta {
  font-size: 0.9rem;
  color: var(--neutral-300);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.event-details p:not(.event-meta) {
  margin-bottom: var(--space-md);
}

/* Team Section */
.team-section {
  background-color: var(--neutral-100);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.team-grid .card {
  text-align: center;
}

.team-grid .card-image {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-round);
  overflow: hidden;
  margin: var(--space-md) auto;
}

.team-grid .card-content .position {
  color: var(--primary-100);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--neutral-200);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-100);
  transition: transform var(--transition-normal);
}

.faq-answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  max-height: 500px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
}

.contact-info {
  background-color: var(--primary-100);
  color: var(--neutral-100);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  color: var(--neutral-100);
  margin-bottom: var(--space-md);
}

.contact-details {
  list-style-type: none;
  margin: var(--space-lg) 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-details i {
  font-size: 1.5rem;
}

.office-hours h4 {
  color: var(--neutral-100);
  margin-bottom: var(--space-sm);
}

.office-hours p {
  margin-bottom: var(--space-xs);
}

.contact-form-container {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

.contact-form {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: var(--space-sm);
  border: 1px solid var(--neutral-400);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
  font-family: var(--font-body);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--primary-100);
  outline: none;
}

/* Footer */
.site-footer {
  background-color: var(--neutral-900);
  color: var(--neutral-400);
  padding: var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-column h3 {
  color: var(--neutral-100);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-100);
}

.social-links {
  list-style: none;
  margin-bottom: var(--space-md);
}

.social-links li {
  margin-bottom: var(--space-xs);
}

.social-links a {
  color: var(--neutral-400);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-100);
}

.newsletter h4 {
  color: var(--neutral-100);
  margin-bottom: var(--space-sm);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--neutral-700);
  background-color: var(--neutral-800);
  color: var(--neutral-100);
  border-radius: var(--radius-sm);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-100);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-800);
  display: flex;
  justify-content: space-between;
  color: var(--neutral-600);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
  text-align: center;
}

.success-content {
  max-width: 600px;
  animation: fadeIn 1s ease;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-100);
  margin-bottom: var(--space-md);
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h2, .terms-content h2 {
  margin-top: var(--space-lg);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .hobbies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
  }
  
  .hobbies-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 80px;
    margin: 0 auto var(--space-sm);
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }
}

@media (max-width: 576px) {
  section {
    padding: var(--space-lg) 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .btn {
    width: 100%;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
html,body{
  overflow-x: hidden;
}