/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-font: Cambria, "Times New Roman", serif;
}



body {
  font-family: var(--main-font);
  background:  linear-gradient(to right, #cec48b, #c2e59c);
  color: #000000;
}

/* Header & Nav */
header {
 background: linear-gradient(to right, #829169, #152802);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #ffffff;
  flex-wrap: wrap;
}



/* Responsive adjustments */
@media (max-width: 600px) {
  header .logo {
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
    margin: 0 auto;             /* Center the logo */
    display: block;
  }

  header {
    justify-content: center;
  }
}

.logo {
  margin-right: auto; /* Push everything else to the right */
}

.logo img {
  height: 96px;   /* Adjust as needed */
  width: 120px;    /* Maintains aspect ratio */
  display: block;
  margin-left: 20px; /* Optional: push away from edge */
}



nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
}

/* Reset button-like appearance */
.dropbtn {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* On hover - optional underline or change color */
.dropbtn:hover {
  text-decoration: underline;
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #152802; /* ✅ Set correct background */
  color: #fff; /* Optional: white text for better contrast */
  min-width: 280px;
  z-index: 1001;
  margin-top: 5px;
  border-radius: 5px;
  max-height: 800px;
  overflow-y: auto;
}



.dropdown-content a {
  color: rgb(255, 254, 254);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #d8f0fd;
}

.show {
  display: grid;
}



/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #201c1c;
  font-size: 4.2rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 5;
}

/* Hover effect remains only for desktop/tablet */
.hero-text:hover {
  transform: translate(-50%, -50%) scale(1.05);
  color: #152802;
  text-shadow: 1px 1px 10px #ffffff;
}

/* Hide hero text for all devices below 768px */
@media (max-width: 767px) {
  .hero-text {
    display: none;
  }
}





/* Search Box */
.search-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: linear-gradient(to right, #cec48b, #c2e59c);
  padding: 1rem;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow: visible;
}

.search-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 180px;
  position: relative;
}

.search-item label {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}

.search-item input,
.search-item select {
  padding: 0.75rem;
  font-family: Cambria, "Times New Roman", serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.search-btn {
  padding: 1rem 1.5rem;
  font-family: Cambria, "Times New Roman", serif;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-end;
  min-width: 120px;
  
}

/* Base menu toggle style */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
  z-index: 999; /* Keep it on top */
}

/* Responsive styling */
@media (max-width: 768px) {
  header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* below header */
    right: 0;
    background-color: #152802;
    width: 100%;
    z-index: 998;
    padding: 1rem 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border-top: 1px solid #333;
    color: white;
    text-align: left;
  }
}


/* DESTINATION */
.destination-section {
  padding: 2rem;
  background:  linear-gradient(to right, #cec48b, #c2e59c);
  text-align: center;
  font-size: x-large;
  color: #000000;
}

.destination-section h2 {
  font-family: Cambria, "Times New Roman", serif;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.circle-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem;
}

.circle-item {
  text-align: center;
}

.circle-item a {
  text-decoration: none;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-item span{
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: Cambria, "Times New Roman", serif;
  color: rgb(0, 0, 0);
}

.circle-icon {
  width: 70px; /* adjust to fit your image size */
  height: auto;
  margin-bottom: 10px;
  
}



/* ESCAPE CATEGORY */
.escape-section {
  margin-top: 0;
  padding-top: 1rem;
  padding: 2rem;
  margin-bottom: 0;      /* Or a smaller value like 1rem */
  padding-bottom: 0rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color:linear-gradient(to right, #cec48b, #c2e59c);
}

.escape-section h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: Cambria, "Times New Roman", serif;
  color: rgb(0, 0, 0);
}

.escape-scroll {
  overflow: hidden;
  position: relative;
}

.escape-track {
  display: flex;
  width: max-content;
  animation: scrollCards 35s linear infinite;
  gap: 1rem; /* Space between cards */
}

@keyframes scrollCards {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.escape-card {
  flex: 0 0 auto;
  width: 290px;
  height: 190px;
  position: relative;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  border: 1px solid #c2e59c;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  color: #000000;
  
}

/* Gradient overlay */
.escape-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(225, 249, 183, 0.1), rgba(194, 229, 156, 0.1));
  z-index: 1;
  border-radius: 15px;
}

/* Text appears on top */
.escape-card span {
  position: relative;
  z-index: 2;
  -webkit-text-stroke: 0.3px black;
}

.escape-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


/* COLLECTION SECTION */
.collection-section {
  padding: 1rem 2rem 2rem 2rem;
  background: linear-gradient(to right, #cec48b, #c2e59c);
  font-size: x-large;
   margin-top:1rem;
   text-decoration: none;
}

.collection-section h2 {
  font-family: Cambria, "Times New Roman", serif;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.collection-scroll {
  position: relative;
  padding: 2.2rem;
}
.collection-cards {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;

  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.collection-cards::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.collection-card {
  flex: 0 0 auto;
  width: 350px;
  background: linear-gradient(to right, #cec48b, #c2e59c);
  text-align: left;
  overflow: hidden;
  transition: border-radius 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
}

.collection-card:hover,
.collection-card:active {
  border-radius: 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.collection-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: border-radius 0.3s ease;
  border-radius: 0;
}

.collection-card img:hover {
  border-radius: 50px;
}

.collection-card p {
  color: #000;
  text-decoration: none;
  font-weight: 800;
  font-size: large;
}

/* ✅ RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .collection-card {
    width: 300px;
  }

  .collection-card img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .collection-card {
    width: 250px;
  }

  .collection-card img {
    height: 300px;
  }

  .collection-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .collection-card {
    width: 220px;
  }

  .collection-card img {
    height: 250px;
  }

  .collection-card p {
    font-size: 0.9rem;
  }

  .collection-cards {
    gap: 1rem;
    padding: 0.5rem;
  }
}


/* Optional: Scroll buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* FOOTER */

.site-footer {
  background: linear-gradient(to right, #829169, #152802);

  padding: 3rem 2rem;
  font-family: Cambria, "Times New Roman", serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-column {
  min-width: 180px;
  flex: 1;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  color: #ffcc66; /* Gold-yellow heading */
}

.footer-column h4::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  background: #ffcc66;
  margin-top: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}
