:root {
  --primary: #007bff;
  --dark-bg: #212529;
  --light-bg: #f8f9fa;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link:hover {
  color: var(--primary);
  transition: 0.3s;
}

/* Hero Section */

#home.hero {
  height: 100vh;
  background: #495057;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/*
#home.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(185, 239, 190, 0.534),  rgba(237, 243, 237, 0.534));
  z-index: 0;
}
*/
#home .intro {
  position: relative;
  z-index: 1;
}

#home .intro h2 {
  font-size: 3rem;
  font-weight: 700;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

#home .intro p.lead {
  font-size: 1.25rem;
  margin-top: 1rem;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}
/*
.scroll-down {
  position: absolute;
  bottom: 30px;
  font-size: 1.5rem;
  color: #9176ea;
  cursor: pointer;
  animation: bounce 2s infinite;
} */
 
.hero .intro {
  position: relative;
}

.bg-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Dark transparent filter */
}

.text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
}
.hero {
  position: relative;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  color: #0056b3;
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 10;  /* ensures it stays visible above image + overlay */
}

.hero, .hero .intro {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.bg-image {
  width: 100vw;   
  height: 100vh; 
  object-fit: cover;
  display: block; 
  overflow: hidden;
   position: relative;
}
 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
  #home .intro h2 {
    font-size: 2.5rem;
  }

  #home .intro p.lead {
    font-size: 1.15rem;
  }
}

@media (max-width: 992px) {
  #home.hero {
    height: 90vh;
    padding: 0 20px;
  }

  #home .intro h2 {
    font-size: 2.2rem;
  }

  #home .intro p.lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  #home.hero {
    height: 100vh;
    padding: 0 15px;
  }

  #home .intro h2 {
    font-size: 1.8rem;
  }

  #home .intro p.lead {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #home.hero {
    height: 100vh;
    padding: 0 10px;
  }

  #home .intro h2 {
    font-size: 1.5rem;
  }

  #home .intro p.lead {
    font-size: 0.95rem;
  }

  .scroll-down {
    font-size: 1.2rem;
    bottom: 20px;
  }
}

/* Gallery */
.fixed-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .fixed-img {
  transform: scale(1.08);
}

.gallery-item .caption {
  transition: background 0.3s, transform 0.3s;
}

.gallery-item:hover .caption {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

/* About Section */
#about {
  background-color: var(--light-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#about h2 {
  color: #343a40;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
}

#about .list-group-item {
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 1rem;
  color: #495057;
}

#about .btn-primary {
  background-color: var(--primary);
  border: none;
}

#about .btn-primary:hover {
  background-color: #0056b3;
}

/* Contact Section */
#contact {
  background-color: var(--light-bg);
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item {
  font-size: 1.1rem;
  transition: transform 0.3s, background-color 0.3s;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #fff;
  color: #495057;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
  transform: scale(1.05);
  background-color: var(--primary);
  color: #fff;
}

.contact-item i {
  min-width: 30px;
}

/* Location Section */
#location h2 {
  color: #343a40;
}

#location .card {
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#location iframe {
  border-radius: 15px;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: #fff;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  transition: transform 0.3s, background-color 0.3s;
}

footer i:hover {
  transform: scale(1.2);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 5px;
}

/*
.iframe-container {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
}

.iframe-box {
  width: 90%;
  max-width: 1600px;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: #fff;
}

.iframe-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
 */
 
/* Reduce height on smaller devices */
@media (max-width: 992px) {
  .iframe-container {
    height: 80vh;
  }
}

@media (max-width: 576px) {
  .iframe-container {
    height: 80vh;
  }
}



#gallery h2 {
  font-size: 2rem;
  color: #343a40;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.iframe-wrapper {
    width: 100%;
    max-width: 1500px; /* max width for larger screens */
  }

  .gallery-iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
  }

  /* Responsive height for mobile */
  @media (max-width: 768px) {
    .gallery-iframe {
      height: 400px;
    }
  }

  