/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #fdf6f0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.navbar .logo img {
  height: 60px;
}

.navbar .search-bar {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 30px;
}

.navbar .search-bar input {
  width: 60%;
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  outline: none;
  transition: 0.3s;
}

.navbar .search-bar input:focus {
  border-color: #ff7e5f;
  box-shadow: 0 4px 10px rgba(255,126,95,0.3);
}

.navbar .phone {
  font-weight: bold;
  color: #333;
}

/* Banner Section */
.banner {
  position: relative;
  height: 80vh;
  background: url('images/banner.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.banner-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}

.banner h1 {
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.banner p {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.banner .enquire-btn {
  padding: 15px 35px;
  font-size: 1.2em;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255,126,95,0.5);
}

.banner .enquire-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255,126,95,0.6);
}

/* Animations */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(50px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }

  .navbar .search-bar input {
    width: 90%;
    margin: 10px 0;
  }

  .banner h1 {
    font-size: 2em;
  }

  .banner p {
    font-size: 1em;
  }
}


/* Overview Section */
.overview {
  padding: 80px 50px;
  background: #fff8f5;
}

.overview .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.overview-column {
  flex: 1;
  min-width: 300px;
}

.overview-column h2 {
  font-size: 2em;
  color: #ff7e5f;
  margin-bottom: 20px;
}

.overview-column p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

/* Activities Section */
.activities {
  padding: 80px 50px;
  text-align: center;
  background: url('images/night.jpeg') center/cover no-repeat;
  position: relative;
  color: #fff;
}

.activities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay for readability */
  z-index: 1;
}

.activities .section-title {
  font-size: 2.5em;
  color: #ffebcd; /* slightly off-white for contrast */
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.activities-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.activity-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px 20px;
  width: 220px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  color: #333;
}

.activity-card i {
  font-size: 2.5em;
  color: #ff7e5f;
  margin-bottom: 15px;
}

.activity-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.activity-card p {
  font-size: 0.95em;
  line-height: 1.4;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .activities-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Featured Section */
.featured {
  padding: 80px 50px;
  background: #fff8f5;
}

.featured-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.featured-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.featured-image img:hover {
  transform: scale(1.05);
}

.featured-text h2 {
  font-size: 2.2em;
  color: #ff7e5f;
  margin-bottom: 20px;
}

.featured-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.read-more-btn {
  padding: 12px 30px;
  font-size: 1em;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255,126,95,0.5);
}

.read-more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255,126,95,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .featured-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-text h2 {
    font-size: 1.8em;
  }
}

/* Featured Section Alternate */
.featured-alt .featured-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* Swap order for desktop */
.featured-alt .featured-container .featured-text {
  order: 1;
}

.featured-alt .featured-container .featured-image {
  order: 2;
}

/* On smaller screens, stack vertically */
@media (max-width: 768px) {
  .featured-alt .featured-container {
    grid-template-columns: 1fr;
  }

  .featured-alt .featured-container .featured-text,
  .featured-alt .featured-container .featured-image {
    order: initial;
  }
}


/* Gallery Section */
.gallery {
  padding: 80px 50px;
  background: #fff8f5;
  text-align: center;
}

.gallery .section-title {
  font-size: 2.5em;
  color: #ff7e5f;
  margin-bottom: 50px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* larger images */
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 250px; /* equal height for all images */
}

.gallery-item img {
  width: 100%;
  height: 100%; /* fill the container */
  object-fit: cover; /* maintain aspect ratio and fill */
  border-radius: 15px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 10px;
  background: rgba(0,0,0,0.3); /* subtle overlay for readability */
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay h3 {
  font-size: 1.5em;
  color: #ffebcd;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-item {
    height: 200px; /* smaller height for mobile */
  }
}


/* Map Section */
.map-section {
  padding: 80px 50px;
  background: #fff8f5;
  text-align: center;
}

.map-section .section-title {
  font-size: 2.5em;
  color: #ff7e5f;
  margin-bottom: 40px;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 450px;
  border-radius: 15px;
}


/* Footer Section */
.footer {
  background: #1B262C;
  color: #fff;
  padding: 50px 20px 30px 20px;
  text-align: left;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-column h3 {
  color: #ff7e5f;
  margin-bottom: 15px;
}

.footer-column p {
  color: #ccc;
  margin-bottom: 10px;
  font-size: 0.95em;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px 10px 0;
  color: #ff7e5f;
  font-size: 1.2em;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #feb47b;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9em;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-social a {
    margin: 0 8px 8px 0;
  }
}


/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  transition: 0.3s;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  0% {transform: translateY(-50px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #ff7e5f;
  text-align: center;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1em;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #ff7e5f;
  box-shadow: 0 0 10px rgba(255,126,95,0.3);
}

.submit-btn {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255,126,95,0.6);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close:hover {
  color: #ff7e5f;
}


/* Video Section */
.video-section {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.video-section .section-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}

.video-container {
  max-width: 900px; /* keeps it centered and neat */
  margin: 0 auto;   /* centers the video */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .video-container iframe,
  .video-container video {
    height: 250px;
  }
}


