#cards-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease-in-out;
    margin-top: 30px;
  }
  
  .festival-card,h2{
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(201, 197, 197, 0.1);
    text-align: center;
  }
  
  
  .festival-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  
  .festival-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .more-read-link {
    display: block;
    text-align: center;
    background-color: #ff7043;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .more-read-link:hover {
    background-color: #e64a19;
  }
  
  .article-section {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 15px;
    max-width: 800px;
    margin: 20px auto;
    animation: fadeIn 0.6s ease-in-out;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .article-section h2 {
    color: #3f6e49;
    margin-bottom: 1rem;
    text-align: center;
  
  }
  
  .article-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  .article-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }
  
  .back-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #f4511e;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .back-button:hover {
    background-color: #bf360c;
  }
  
  
  
  
  footer {
    background-color: rgb(0, 61, 61);
    color: white;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
  }
  
  .footer-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .footer-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 0.9rem;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  
  @media screen and (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      gap: 10px;
      background-color: #fff;
      position: absolute;
      top: 60px;
      right: 20px;
      padding: 15px;
      border-radius: 10px;
    }
}
  
    nav.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(1, 89, 92);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    font-size: 22px;
    font-weight: bold;
    color: #faf5f7;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    text-decoration: none;
    color: #e2dddf;
    font-weight: 600;
  }
  
  nav a:hover {
    color: #007BFF;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #D8125B;
  }