






/* Gallery Page */
.gallery-section {
   font-family: 'Montserrat', sans-serif;
      background-image: url('gallery.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: #333;
      line-height: 1.6;
     
    }


.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: black;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}





footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}



/* General container for all sections */
.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    text-align: center;
}






/* Content styling */
.content {
  color: white;
  text-align: center;
  padding-top: 20%;
}


/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #111;
  color: white;

  /* Fixed position properties */
  position: fixed;  /* top par fix karega */
  top: 0;           /* upar se 0 distance */
  left: 0;          /* left se 0 distance */
  width: 100%;      /* full width */
  z-index: 1000;    /* content ke upar dikhe */
}

/* Optional: navbar ke neeche content na chipke */
body {
  margin: 0;
  padding-top: 80px; /* navbar height ke approx */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #ffd700;
}
/* =========================
   Mobile Responsive Navbar
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #111;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar nav {
  display: flex;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #ffd700;
}

/* Hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar nav {
    display: none; /* hide menu initially */
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .navbar nav.active {
    display: flex; /* show menu when toggled */
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block; /* show hamburger icon */
  }
}

