/* Reset + Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}

/* Header + Menu */
header {
  background-color: #333;
  padding: 10px 20px;
  position: relative;
}
.menu-toggle {
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #333;
  padding: 10px 15px;
  border: none;
  display: block;
}
nav#drawer {
  display: none;
  background-color: #222;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px;
}
nav#drawer ul {
  list-style: none;
  padding: 0;
}
nav#drawer ul li {
  margin: 10px 0;
}
nav#drawer ul li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 15px;
  display: block;
}
nav#drawer ul li a:hover {
  background-color: #444;
}

/* Make Navigation Responsive */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  nav#drawer {
    display: block !important;
    position: static;
    background-color: transparent;
    padding: 0;
  }
  nav#drawer ul {
    display: flex;
    justify-content: left;
    gap: 20px;
  }
  nav#drawer ul li {
    margin: 0;
  }
  nav#drawer ul li a {
    background: none;
    color: #fff;
    font-weight: bold;
  }
}

/* Banner Section */
.banner {
  background-color: #2e2e2e;
  height: auto;
  text-align: center;
  padding: 40px 20px;
}
.banner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.banner p {
  font-size: 18px;
  color: #ccc;
}
.banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 12px auto;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}
.card {
  background-color: #333;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}
.card p {
  padding: 10px;
  color: #ccc;
}
.main-content {
  padding: 20px;
  text-align: center;
}

.main-content h1 {
  margin-bottom: 8px;
}

.main-content p {
  margin-top: 0;
}

/* Photo Gallery Styling */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.photo-item img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

.photo-item p {
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Shorts Gallery for Mobile */
.shorts-gallery {
  display: none;
}
@media (max-width: 767px) {
  .shorts-gallery {
    display: block;
    padding: 20px;
    background-color: #111;
    color: #fff;
    text-align: center;
  }
  .shorts-gallery h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }

  .short iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  }
}

/* Video Gallery Styling */
.video-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}
.video-item h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #fff;
}
.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}
.video-item p {
  text-align: left;
  padding: 10px 0;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .video-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */
footer {
  background-color: #111;
  color: #bbb;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
}
footer .social-icons {
  margin: 10px 0;
}
footer .social-icons a {
  margin: 0 10px;
  color: #bbb;
  text-decoration: none;
}
footer .social-icons a:hover {
  color: #fff;
}

/* Global Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Styling for Google Map container */
.google-map {
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for Site Map list */
.site-map {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.site-map h2 {
  margin-top: 0;
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333;
}

.site-map ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.site-map li {
  margin-bottom: 12px;
}

.site-map a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
}

.site-map a:hover {
  color: #007bff;
  text-decoration: underline;
}

