/* Color Palette Variables */
:root {
  --light-green: #BCE784;
  --medium-green: #5DD39E;
  --blue: #348AA7;
  --dark-muted-purple: #525174;
  --dark-purple: #513B56;
}

/* General Body Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
  background-color: var(--blue);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: bold;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--light-green);
}

/* Hero Section */
.hero {
  background: url('Source/hrbg.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 1;
  width: 500px;
  height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15); /* Transparent white background */
  border-radius: 20px;
  backdrop-filter: blur(5px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.hero-btn:hover {
  background-color: #005fa3;
}


/* Subtle pop-up animation on load */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade-in animation for text */
@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1,
.hero-content p,
.hero-btn {
  opacity: 0;             /* Start hidden */
  animation: textFadeIn 1s ease forwards;
}

/* Stagger animation delays for a nice effect */
.hero-content h1 {
  animation-delay: 0.3s;
}

.hero-content p {
  animation-delay: 0.6s;
}

.hero-btn {
  animation-delay: 0.9s;
}

main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

h1, h2, h3 {
  color: var(--blue);
  margin-bottom: 0.5em;
}

p {
  font-size: 1rem;
  margin-bottom: 1em;
}

.booking-card {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.booking-card textarea {
  min-height: 80px;
  resize: vertical;
}

.booking-card .btn {
  background-color: var(--medium-green);
  color: white;
  border: none;
  font-weight: bold;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-card .btn:hover {
  background-color: var(--light-green);
}

#booking-msg {
  text-align: center;
  font-weight: bold;
  color: green;
}

footer {
  background-color: var(--blue);
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.attraction-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.attraction-list article {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.attraction-list article:hover {
  transform: translateY(-5px);
}

.attraction-list img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.attraction-list h3 {
  margin: 0.5rem 1rem 0;
  font-size: 1.2rem;
  color: var(--dark-muted-purple);
}

.attraction-list p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: var(--dark-purple);
}

@media (max-width: 768px) {
  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    margin-top: 1rem;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

.reviews, .add-review {
  margin: 2rem auto;
  max-width: 700px;
}

.review {
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.review .stars {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.add-review form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.add-review select,
.add-review input,
.add-review textarea {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.add-review .btn {
  background-color: #27ae60;
  color: white;
  font-weight: bold;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.add-review .btn:hover {
  background-color: #219150;
}

.star-input span {
  font-size: 2rem;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s ease;
}

.star-input span.selected {
  color: #fbc02d;
}

.star-input span:hover,
.star-input span:hover~span {
  color: #fbc02d;
}

.travel-packages {
  padding: 2rem 1rem;
  background-color: #f2fdf4;
  text-align: center;
}

.travel-packages h2 {
  color: var(--blue);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.package {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
}

.package img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.package h3 {
  color: var(--dark-muted-purple);
  margin: 0.75rem 0 0.5rem;
  font-size: 1.5rem;
}

.package p {
  font-size: 0.95rem;
  color: var(--dark-purple);
  padding: 0 15px;
}

.package .price {
  font-weight: bold;
  color: var(--medium-green);
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.package .btn {
  background-color: var(--medium-green);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin: 15px 0 20px;
  transition: background 0.3s;
}

.package .btn:hover {
  background-color: var(--light-green);
}

html {
  scroll-behavior: smooth;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px dashed var(--medium-green);
  outline-offset: 3px;
}
.travel-packages {
  padding: 2rem;
  text-align: center;
}

.package-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.package {
  width: 280px; /* Adjust width here */
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.package:hover {
  transform: scale(1.03);
}

.package img {
  width: 100%;
  height: 180px; /* Adjust image height here */
  object-fit: cover;
  border-radius: 8px;
}

.package h3 {
  font-size: 1.2rem;
  margin: 0.8rem 0 0.4rem;
}

.package p {
  font-size: 0.95rem;
  color: #333;
}

.price {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.btn {
  padding: 0.6rem 1.2rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: #0056b3;
}
/*vidattrat*/

.video-banner {
  position: relative;
  overflow: hidden;
  height: 50vh;
}
.culture-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
main img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin: 1rem 0;
}

/* Style for section images */
main img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 10px;
}

/*gallery*/

.gallery {
  column-count: 3;
  column-gap: 1rem;
  padding: 1rem;
}

.gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
  break-inside: avoid;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }
}

/*food images sizes*/
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.food-item {
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.food-item img {
  width: 100%;
  height: 200px; /* uniform height */
  object-fit: cover; /* crops and scales to fill the space */
  border-radius: 10px;
}

/* reviews css*/
.reviews {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.review {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  background-color: #fafafa;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.review .stars {
  font-size: 1.2rem;
  color: #f5a623;
  margin-bottom: 0.5rem;
  width: 100%;
}

.review blockquote {
  font-style: italic;
  margin: 0;
  flex: 1 1 250px;
}

.review p {
  margin: 0.5rem 0 0;
  font-weight: bold;
}

.review-image {
  max-width: 150px;
  max-height: 150px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* booking css*/

/* Container for booking section */
.booking-card {
  max-width: 600px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Booking form styles */
#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#booking-form input,
#booking-form select,
#booking-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

#booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

#priceDisplay,
#packageDescription {
  font-size: 0.95rem;
  margin-top: -0.5rem;
  color: #333;
}

/* Submit button */
#booking-form .btn {
  padding: 0.75rem;
  background-color: #007B6E;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

#booking-form .btn:hover {
  background-color: #005f55;
}

/* Booking message */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.popup-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.popup-card {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  max-width: 320px;
}

.popup-card h2 {
  margin-bottom: 1rem;
  color: #2c7a7b;
}

.popup-card p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.popup-card button {
  background-color: #2c7a7b;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.popup-card button:hover {
  background-color: #285e61;
}

/* attraction link*/
  .attraction-link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .attraction-link:hover {
    background-color: #eef6fb;
    cursor: pointer;
  }
  
  /* Optional: make images responsive */
  .attraction-link img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    margin-bottom: 8px;
  }

/*attractionlist*/

.attraction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between cards */
  justify-content: center;
}

.attraction-link {
  display: block;
  width: 300px; /* fixed width */
  text-decoration: none;
  color: inherit;
}

.attraction-link article {
  height: 420px; /* fixed height */
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  background-color: white;
}

.attraction-link:hover article {
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  cursor: pointer;
}

.attraction-link article img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* cover the image container */
}

.attraction-link article h3 {
  margin: 15px 10px 5px 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.attraction-link article p {
  margin: 0 10px 15px 10px;
  font-size: 0.95rem;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*animation*/

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



