/* 
   Learning League Styles
   Based on the branding colors from the logo:
   - Primary: Pink/Magenta tones
   - Secondary: Burgundy/Maroon
   - Accent: Blue (to make male students feel included)
*/

:root {
  /* Color variables based on the logo */
  --primary: #e75a8f; /* Pink/Magenta */
  --primary-light: #f48fb1; /* Lighter pink */
  --primary-dark: #c2185b; /* Darker pink */
  --secondary: #7b1f2d; /* Burgundy/Maroon from the book in the logo */
  --accent: #3f51b5; /* Blue accent */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background: #f9f9f9;
  --gray-light: #eeeeee;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  line-height: 1.2;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header/Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.logo-container {
  margin-bottom: 20px;
  background-color: white;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo {
  max-width: 160px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.coming-soon {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Value Proposition Section */
.value-prop {
  padding: 80px 0;
  background-color: var(--text-light);
}

.value-prop h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.value-prop p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Curriculum Section */
.curriculum {
  padding: 80px 0;
  background-color: var(--gray-light);
  text-align: center;
}

.curriculum h2 {
  color: var(--secondary);
  margin-bottom: 30px;
  font-size: 2rem;
}

.curriculum p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.age-range {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.students, .tutors {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
}

.students {
  border-top: 5px solid var(--primary);
}

.tutors {
  border-top: 5px solid var(--accent);
}

.age-range h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.age-range p {
  margin-bottom: 0;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--text-light);
  text-align: center;
}

.contact h2 {
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: var(--primary-light);
}

footer a:hover {
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .value-prop h2, .curriculum h2, .contact h2 {
    font-size: 1.8rem;
  }
  
  .age-range {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .students, .tutors {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .value-prop h2, .curriculum h2, .contact h2 {
    font-size: 1.5rem;
  }
  
  .value-prop p, .curriculum p, .contact p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
