* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background: #111;
  color: white;
  display: flex;
  margin: 0;
  padding: 0;
  font-family: 'Gloock', serif;
}

.sidebar {
  width: 236px;
  height: 100vh;
  background-color: #000;
  padding: 40px 42px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-container {
  text-align: center;
  margin-bottom: 10px;
}

.logo-container img {
  width: 120px;
  margin-bottom: 5px;
}

.sidebar h1 {
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
  cursor: pointer;
}

.sidebar nav a:hover {
  color: #ffd700;
}

.socials {
  text-align: center;
}

.socials a {
  display: inline-block;
  margin: 0 2px;
  color: white;
  font-size: 20px;
}

.socials img {
  vertical-align: middle;
}

.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
  color: #aaa;
}

.main-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-left: 220px;
  width: calc(100% - 220px);
}

.section {
  flex: 1;
}

.hero {
  height: 100vh;
  background-image: url('./home.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-top: 220px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 8px #000;
  margin-bottom: 20px;
}

.hero-subtitle,
.hero-quote {
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 1px 1px 6px #000;
  margin-bottom: 15px;
}

.hero-description-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto;
  color: #eee;
}

.hero-description h2 {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 10px;
}

.hero-description .tagline {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.hero-description .main-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ccc;
}

.about-section {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.about-img {
  max-width: 400px;
  width: 90%;
  height: auto;
  margin: 0 auto 30px auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(255, 204, 0, 0.3);
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-title {
  font-size: 2.2rem;
  color: #ffcc00;
  margin-bottom: 10px;
  text-align: center;
}

.about-tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text h2 {
  margin-top: 30px;
  color: #ffcc00;
  font-size: 1.5rem;
}

.about-text ul {
  list-style: disc;
  padding-left: 20px;
}

.about-text li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.main-footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  background-color: #0c0a0a;
  color: #aaa;
  border-top: 1px solid #333;
}

#audio-control {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
  font-weight: bold;
  transition: background 0.3s;
}

#audio-control:hover {
  background: rgba(255, 255, 255, 0.3);
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

#main-content {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
/* ======= Mobile Responsive Styles (Only max-width: 768px) ======= */

@media (max-width: 768px) {
  /* Sidebar transitions into view from the left */
  .sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .sidebar.active {
    transform: translateX(0);
  }
  

  /* Hamburger icon styling */
  .hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    font-size: 28px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  /* Close (×) button inside sidebar */
  .close-btn {
    display: block;
    text-align: right;
    font-size: 60px;
    cursor: pointer;
    color: white;
    margin: -25px;
    margin-bottom: -45px;
    margin-top: -5px;
    margin-right: -6px;
  }

  /* Remove sidebar-content gap */
  body {
    padding-left: 0 !important;
    margin: 0;
  }

  .main-content, .hero, .section {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  /* Layout stacks vertically */
  .flex-row {
    flex-direction: column;
  }

  /* Responsive text & buttons */
  h1, h2, h3 {
    font-size: 5vw;
  }

  button {
    font-size: 4vw;
    padding: 10px 20px;
  }

  /* Responsive image gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .sidebar {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .main-content {
    width: 100%;
    padding: 0 10px; /* optional inner spacing */
    box-sizing: border-box;
  }

  * {
    box-sizing: border-box;
  }

}

/* Hide close button on desktop */
@media (min-width: 769px) {
  .close-btn {
    display: none !important;
  }
}
.close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 23px;
  color: white;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50%;
  text-align: center;
  width: 40px;     /* Equal width */
  height: 40px;    /* Equal height */
  line-height: 40px; /* Vertically center the X */
  padding: 0;      /* Remove default padding */
  position: absolute;
  top: 20px;
  right: 20px;
}


.gallery-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.gallery-title {
  color: #ffcc00;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: 'Gloock', serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns by default (desktop) */
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  transition: grid-template-columns 0.3s ease;
}

/* For tablets (e.g., screens between 769px and 1024px) */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

/* For mobile (e.g., screens below 768px) */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
  }
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
}

#lightbox img {
  max-width: 100%;
  max-height: 100%;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

#lightbox-controls {
  margin-top: 10px;
}

#lightbox-controls button {
  background: none;
  border: 2px solid white;
  color: white;
  font-size: 30px;
  padding: 5px 10px;
  margin: 0 10px;
  cursor: pointer;
}
.map-container {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  border-radius: 10px;
  overflow: hidden;
}
.centered-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.location-heading {
  font-size: 16px;
  letter-spacing: 4px;
  color: #ffcc00;
  margin-bottom: 30px;
  margin-top: 30px;
}

.write-to-us-heading {
  font-size: 32px;
  color: white;
  font-weight: bold;
  margin-bottom: 30px;
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.contact-section {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info,
.contact-form {
  flex: 1 1 45%;
}

.contact-info h2,
.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffcc00;
}

.contact-form p {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: #151515;
  border: none;
  color: white;
  font-size: 16px;
  font-family: inherit;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form form button {
  padding: 10px 30px;
  background-color: #0d0d0d;
  border: 2px solid #fff;
  color: white;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form form button:hover {
  background-color: white;
  color: black;
}

/* Lightbox Styles */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

#lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-image {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#lightbox-close:hover {
  color: #ffd700;
}

#lightbox-controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 20px;
  box-sizing: border-box;
}

#lightbox-counter {
  position: absolute;
  top: 20px;
  left: 30px;
  color: white;
  font-size: 18px;
}

#prev-btn, #next-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

#prev-btn:hover, #next-btn:hover {
  background: rgba(255, 215, 0, 0.8);
}

/* Navigation Arrows */
#prev-btn {
  margin-right: auto;
}

#next-btn {
  margin-left: auto;
}

.page-footer {
  color: #ccc;
  font-size: 14px;
  text-align: center;
  padding: 20px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
}


