body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #fff;
    color: #333;
  }
  
  .gallery-header {
    text-align: center;
    padding: 2rem;
    background: #ffe4ec;
    color: #34495e;
  }
  
  .gallery-header h1 {
    margin-bottom: 0.3rem;
    font-size: 2.5rem;
  }
  
  .gallery-section {
    padding: 2rem;
  }
  
  .gallery-section h2 {
    margin-top: 2rem;
    font-size: 1.8rem;
    color: #34495e;
    border-bottom: 2px solid #4c637a;
    display: inline-block;
    padding-bottom: 0.3rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  figure {
    background: #fff0f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  figure:hover {
    transform: scale(1.03);
  }
  
  figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  figcaption {
    padding: 0.8rem;
    font-size: 1rem;
    text-align: center;
    color:  rgb(194, 72, 113);
  }
  
  .footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
  display:flex;
  gap: 2rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .footer-links li a:hover {
    color: #677e96;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #ecf0f1;
  }
  
  .footer-column a:hover {
    color: #677e96;
  }
  
  .footer-bottom {
    text-align: center;
    background-color: #34495e;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .footer-bottom p {
    font-size: 1rem;
    color: #bdc3c7;
  }
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  nav ul li a:hover {
    background-color: #3d5670;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .header {
    background-color: #34495e;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
  }
  .header h1 {
    font-size: 2.5rem;
  }
  .mainevent
  {
    background-color: bisque;
    text-align: center;
  }
  .hero-banner {
    background-color:  rgb(194, 72, 113);
    padding: 120px 20px;
    color: white;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }