@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");

body {
    margin: 0;
    padding: 0;
    background-color: lightslategray; /* or light gray */
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
  }
  
  
  .navbar {
    background-color: black;
    color: white;
    padding: 5px 10px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .navbar a,
  .nav-left .hashtag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  }
  
  .nav-left .hashtag {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: underline;
  }
  
  .highlight {
    color: #fcbf1e; /* Gold */
    font-weight: bold;
  }
  
  .nav-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* was 15px */
    flex: 1;
  }  
  
  .nav-center a {
    color: white;
    text-decoration: none;
    font-weight: bolder;
    font-size: 1.7rem;
    white-space: nowrap;
  }
  
  .nav-center a:hover {
    color: #fcbf1e;
  }
  
  .nav-right a {
    color: white;
    margin-left: 15px;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-right a:hover {
    color: #fcbf1e;
  }
  
  .hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 30px;
    text-align: center;
  }
  
  .hero-title h1 {
    font-size: 5.0rem;
    font-weight: bold;
    color: gold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
  }

  .hero-container {
    background-color: black;
    color: white;
    width: 100%;
    padding: 40px 20px;
  }
  
  .bd-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 1.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 per row */
    gap: 20px;
    padding: 30px;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.02);
  }

  /* Lightbox background */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
  }
  
  /* Lightbox image */
  .lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    margin-top: 20px;
    border-radius: 10px;
  }
  
  /* Close button */
  .lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: white;
    padding: 16px;
    margin-top: -22px;
    user-select: none;
    font-weight: bold;
    transition: 0.3s;
  }
  .prev:hover, .next:hover {
    color: #fcbf1e;
  }
  .prev {
    left: 30px;
  }
  .next {
    right: 30px;
  }
  
  .lightbox-caption {
    color: white;
    padding-top: 15px;
    font-size: 1rem;
  }
  
  .zoomed {
    transform: scale(1.6);
    transition: transform 0.3s ease;
    cursor: zoom-out;
  }

  .download-button {
    position: absolute;
    bottom: 30px;
    right: 40px;
    background-color: #fcbf1e;
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  
  .download-button:hover {
    background-color: #e0ab15;
  }

  .gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .success-msg {
    color: green;
    font-weight: bold;
  }
  
  .error-msg {
    color: red;
    font-weight: bold;
  }
  
  html {
    scroll-behavior: smooth;
  }

  .contact-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #fff;
    color: #000;
  }
  
  .contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .contact-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  #contact-form button {
    background-color: #fcbf1e;
    color: black;
    padding: 12px 25px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
  }
  
  #contact-form button:hover {
    background-color: #e0ab15;
  }
  
  
  /* Medium screen: 2 per row */
  @media (max-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Small screen: 1 per row */
  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
  @media screen and (max-width: 768px) {
    .hero-title h1 {
      font-size: 2.5rem;
    }
  }
  
