*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.banner{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(dream\ lono.JPG);
    background-size: cover;
    background-position: center;
}

.navbar{
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a{
    text-decoration: none;
    color:#fff;
    text-transform: uppercase;
}

.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0%;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after{
    width: 100%;
}

.content{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align:center;
    color: #fff;
}

.content h1{
    font-size: 70px;
    margin-top: 80px;
}

.content p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}

button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

span{
    background: #009688;
    height: 100%;
    width: 0%;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

button:hover span{
    width: 100%;
}

button:hover{
    border:none;
}

.logo{
    width: 150px;
}

.slideshow-section {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.slideshow-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.slideshow-container {
    width: 100%;
    max-width: 800px;
    height: 450px; /* Fixed height for consistency */
    margin: 0 auto;
    overflow: hidden;
    border: 10px solid #009688;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    background-color: #fff;
    position: relative;
}





.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 🔄 Changed from 'cover' to 'contain' */
    display: block;
    border-radius: 5px;
    background-color: #fff; /* Optional: helps fill gaps if aspect ratio differs */
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
    max-width: 1000px;
    margin: auto;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}



.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
  object-fit: contain;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.lightbox:hover img {
  transform: scale(1.02);
}

body.lightbox-open {
  overflow: hidden;
}


/*background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)), url('dream lono.JPG');*/

@media (max-width: 600px) {
    .content h1 {
        font-size: 40px;
    }

    .slideshow-container {
        height: 250px;
        border: 5px solid #009688;
    }

    button {
        width: 150px;
        padding: 10px 0;
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}
.navbar ul li a.active {
    color: #009688;
}


.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
  padding: 20px;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border: 2px solid #009688;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  position: relative;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #009688;
  text-align: center;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
}

.modal-content button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background-color: #009688;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.modal-content button[type="submit"]:hover {
  background-color: #00796b;
}

.close {
  position: absolute;
  top: 10px;
  right: 12px;
  color: #000; /* Black icon */
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
}

.close:hover {
  transform: scale(1.2);
}



@media (max-width: 600px) {
  .modal-content {
    padding: 20px;
  }

  .modal-content h2 {
    font-size: 22px;
  }
}



.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
    max-width: 1000px;
    margin: auto;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}




.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-section h2 {
  font-size: 36px;
  color: #009688;
  margin-bottom: 30px;
}

.about-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.about-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #009688;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.about-contact {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}




.location-text {
  margin-top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.animated-text-container {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #009688;
  height: 30px;
  overflow: hidden;
}



@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .navbar ul li {
    margin: 10px 0;
  }

  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 16px;
  }

  .location-text {
    font-size: 22px;
  }

  .about-description,
  .about-contact {
    font-size: 16px;
    padding: 0 10px;
  }

  .modal-content {
    width: 95%;
  }

  .photo-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 0 10px;
  }

  .photo-gallery img {
    height: 150px;
  }

  .video-gallery video {
    width: 100%;
    height: auto;
  }

  button {
    width: 100%;
    margin: 10px 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 14px;
  }

  .location-text {
    font-size: 18px;
  }

  .navbar img.logo {
    width: 120px;
  }

  .modal-content input,
  .modal-content textarea,
  .modal-content select {
    font-size: 14px;
    padding: 10px;
  }

  .modal-content button[type="submit"] {
    font-size: 14px;
    padding: 12px;
  }

  .photo-gallery img {
    height: 120px;
  }
}




@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .navbar ul li {
    margin: 10px 0;
  }

  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 16px;
  }

  .location-text {
    font-size: 22px;
  }

  .about-description,
  .about-contact {
    font-size: 16px;
    padding: 0 10px;
  }

  .modal-content {
    width: 95%;
  }

  .photo-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 0 10px;
  }

  .photo-gallery img {
    height: 150px;
  }

  .video-gallery video {
    width: 100%;
    height: auto;
  }

  button {
    width: 100%;
    margin: 10px 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 14px;
  }

  .location-text {
    font-size: 18px;
  }

  .navbar img.logo {
    width: 120px;
  }

  .modal-content input,
  .modal-content textarea,
  .modal-content select {
    font-size: 14px;
    padding: 10px;
  }

  .modal-content button[type="submit"] {
    font-size: 14px;
    padding: 12px;
  }

  .photo-gallery img {
    height: 120px;
  }
}


.navbar {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: transparent;
    z-index: 1000;
}

.hamburger {
    display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 70px;
    top: 30px;
    z-index: 1001;
  }

  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    text-align: center;
  }

  #navLinks.show {
    display: flex;
  }

  #navLinks li {
    margin: 10px 0;
  }

  .navbar ul li a {
    display: block;
    color: white;
    padding: 10px 0;
    width: 100%;
  }
}
