body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .hero {
    background: url('/assets/images/mmgga.png') no-repeat center center/cover;
    background-attachment: fixed;
    background-position: center top -250px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.6);
    z-index: -1;
  }
  .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .event-card {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .gallery-img {
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  .gallery-img:hover {
    transform: scale(1.05);
  }
  .gallery-section {
        padding: 60px 20px;
    }
    .gallery-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 40px;
        color: #333;
    }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .gallery-item:hover {
        transform: translateY(-5px);
    }
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      inset: 0;
      background: rgba(19, 0, 44, 0.9);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 20px;
    }

    .modal-image {
        max-width: 90vw;
        max-height: 80vh;
        height: auto;
        width: auto;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,.5);
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.4s ease, transform 0.4s ease;
      }
    .modal.show .modal-image {
      opacity: 1;
      transform: scale(1);
      }
    #caption {
        text-align: center;
        color: #fff;
        margin-top: 10px;
        font-size: 18px;
    }
    .close {
        position: absolute;
        top: 30px;
        right: 50px;
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
    }
    .close:hover {
        color: #ff5252;
    }