/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Header */
.header {
  background: linear-gradient(135deg, #5d3a63 0%, #4a2f4e 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fbbf24;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Main Content */
main {
  margin-top: 80px;
}

/* Hero Section */
.hero {
  background: transparent;
  color: white;
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(139, 90, 150, 0.5), rgba(107, 78, 113, 0.5)),
    url("background.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #ffb6c1;
  color: #6b4e71;
}

.btn-primary:hover {
  background-color: #ffc0cb;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #6b4e71;
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.section-header h2 {
  color: #6b4e71;
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  color: #6b4e71;
  margin-top: 2rem;
}

.about-text ul {
  list-style: none;
  margin-top: 1rem;
}

.about-text li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.about-text i {
  color: #ffb6c1;
  font-size: 1.2rem;
}

.about-image .about-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image .about-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Activities Section */
.activities {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.activity-icon i {
  font-size: 2rem;
  color: white;
}

.activity-card h3 {
  color: #6b4e71;
  margin-bottom: 1rem;
}

/* Programs Section */
.programs {
  padding: 5rem 0;
  background-color: white;
}

.programs-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.program-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 15px;
  border-left: 5px solid #ffb6c1;
}

.program-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8b5a96, #6b4e71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.program-icon i {
  font-size: 1.8rem;
  color: white;
}

.program-details h3 {
  color: #6b4e71;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #ffb6c1;
  margin-top: 0.5rem;
}

.contact-item h3 {
  color: #6b4e71;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: #6b4e71;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffb6c1;
}

/* Subscribe Section */
.subscribe {
  padding: 5rem 0;
  background-color: white;
}

.subscribe-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.subscribe-text h3 {
  color: #6b4e71;
  margin-bottom: 1rem;
}

.subscribe-text ul {
  list-style: none;
  margin-top: 1rem;
}

.subscribe-text li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.subscribe-text i {
  color: #ffb6c1;
  font-size: 1.2rem;
}

.subscribe-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #e5e7eb;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #6b4e71 0%, #8b5a96 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffb6c1;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffb6c1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about-content,
  .contact-content,
  .subscribe-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .program-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .activity-card,
  .contact-form,
  .subscribe-form {
    padding: 1.5rem;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn-primary {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
  }

  .btn-secondary {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
  }
}

/* Focus Styles for Better Accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: 3px solid #ffb6c1;
  outline-offset: 2px;
}
