/* =========================
   GENERAL STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

/* =========================
   NAVBAR (SHRINK ON SCROLL)
========================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 9998;
}

#navbar.show {
  transform: translateY(0);
}

.nav-brand img {
  height: 40px;
}

/* =========================
   HERO SECTION
========================= */
#hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Add this overlay to darken the hero image */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (last value) to control darkness */
  z-index: 1;
}

/* Make sure the content appears above the overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 180px;
  margin-bottom: 20px;
}

#hero h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

#hero p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #FFB74D;
  color: #111;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #ffa500;
}
/* =========================
   SECTIONS
========================= */
section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

/* =========================
   ABOUT
========================= */
#about p {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 20px;
}

.social-icons {
  text-align: center;
}

.social-icons a {
  margin: 0 10px;
  color: #FFB74D;
  text-decoration: none;
  font-weight: 600;
}

.social-icons a:hover {
  color: #ffa500;
}

/* =========================
   PORTFOLIO
========================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  display: block;
}

.project-card h3 {
  margin: 10px;
}

.project-card p {
  margin: 0 10px 10px;
}

.booking-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .booking-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
   GALLERY SECTION
========================= */
#gallery {
  padding: 0;
  max-width: 100%;
}

.gallery-container {
  position: relative;
  text-align: center;
}

.gallery-container img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  font-size: 18px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}

.gallery-btn:hover {
  background-color: #333;
}

/* =========================
   CONTACT
========================= */
#contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

#contact input,
#contact textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

#contact button {
  background-color: #FFB74D;
  color: #111;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

#contact button:hover {
  background-color: #ffa500;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  margin-top: 40px;
}

/* =========================
   SLIDESHOW
========================= */
#slideshow {
  width: 100%;
  background: #000;
  padding: 0;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 60vh;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption */
.caption {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.5rem;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 5px;
}

/* Dots */
.dots-container {
  text-align: center;
  padding: 15px 0;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #777;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #FFB74D;
}

/* =========================
   HAPPY NEW YEAR POPUP
========================= */
.ny-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ny-popup-content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 10px;
  animation: popupFade 0.5s ease-in-out;
}

.ny-popup-content h1 {
  color: #e91e63;
  margin-bottom: 15px;
}

.ny-popup-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #111;
}

.ny-popup-content button {
  padding: 10px 20px;
  background: #e91e63;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.ny-popup-content button:hover {
  background: #c2185b;
}

.ny-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  #hero h3 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1.2rem;
  }

  .slideshow-container {
    height: 50vh;
  }

  .caption {
    font-size: 1.1rem;
    bottom: 10%;
  }
}