
  :root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333333;
    --text-light: #777777;
    --background: #ffffff;
    --success: #27ae60;
    --warning: #f39c12;
    --error: #e74c3c;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

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

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    padding: 8rem 0;
    background-color: var(--primary);
    text-align: center;
    color: var(--light);
    overflow: hidden;
    margin-bottom: 4rem;
  }

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

  .hero-section h1 {
    color: var(--light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }

  .hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--light);
    opacity: 0.9;
  }

  /* Upcoming Events */
  .upcoming-events {
    padding: 4rem 0;
    background-color: var(--background);
  }

  .events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .event-card {
    display: flex;
    flex-direction: column;
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .event-card:hover {
    transform: translateY(-5px);
  }

  .event-card img {
    height: 240px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }

  .event-details {
    padding: 1.5rem;
  }

  .event-date, .event-location {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
  }

  .event-date i, .event-location i {
    margin-right: 0.5rem;
    color: var(--secondary);
  }

  .btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-primary:hover {
    background-color: #d35400;
  }

  /* Workshops Section */
  .workshops-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--light);
    margin: 4rem 0;
  }

  .workshops-section h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 3rem;
  }

  .workshops-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--light);
  }

  .workshops-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }

  .workshop-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
  }

  .workshop-item:hover {
    transform: translateY(-5px);
  }

  .workshop-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
  }

  .workshop-date {
    font-size: 0.9rem;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 1rem;
  }

  .workshop-item h3 {
    color: var(--light);
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .btn-secondary {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
  }

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

  /* Festival Section */
  .festival-section {
    padding: 5rem 0;
    background-color: var(--background);
  }

  .festival-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .festival-info {
    flex: 1;
  }

  .festival-image {
    flex: 1;
  }

  .festival-image img {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .festival-date {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }

  .festival-date i {
    margin-right: 0.5rem;
  }

  .festival-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .festival-highlights {
    list-style: none;
    margin-bottom: 2rem;
  }

  .festival-highlights li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }

  .festival-highlights i {
    color: var(--secondary);
    margin-right: 0.75rem;
  }

  .btn-festival {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-festival:hover {
    background-color: #1a2530;
  }

  /* Past Events Gallery */
  .past-events {
    padding: 5rem 0;
    background-color: var(--light);
  }

  .past-events h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .past-events h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
  }

  .gallery-caption h4 {
    color: white;
    margin-bottom: 0.25rem;
  }

  .gallery-caption p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  /* Newsletter Section */
  .newsletter-section {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--light);
  }

  .newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-content h2 {
    color: var(--light);
    margin-bottom: 1.5rem;
  }

  .newsletter-content h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
  }

  .newsletter-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    text-align: left;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
  }

  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .checkbox-group input {
    margin-top: 0.3rem;
  }

  .checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .btn-submit {
    padding: 1rem 2rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
  }

  .btn-submit:hover {
    background-color: #d35400;
  }

  /* Utility Classes */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }

    .events-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .workshops-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .festival-content {
      flex-direction: row;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 4rem;
    }

    .hero-section {
      padding: 10rem 0;
    }

    .events-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .workshops-container {
      grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
