/* Reset & Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  position: relative;
}

/* Navbar */
nav {
  position: relative;
  background-color: white;
  padding: 10px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}

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

.nav-left img#logo {
  height: 70px;
  width: auto;
  border-radius: 10px;
}

.nav-right a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Slideshow Fullscreen */
.slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Testimonial Overlay */
.testimonial-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border: 3px solid #ff6d4d;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.testimonial-overlay h2 {
  color: #ff6d4d;
  margin-bottom: 20px;
  font-size: 28px;
}

.testimonial {
  display: none;
  font-size: 18px;
  color: #333;
  font-style: italic;
}

.testimonial.active {
  display: block;
}

.testimonial .author {
  margin-top: 10px;
  font-weight: bold;
}

.testimonial-controls {
  margin-top: 15px;
}

.testimonial-controls button {
  background-color: #ff6d4d;
  border: none;
  color: white;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.testimonial-controls button:hover {
  background-color: #e35c3c;
}

/* Scrollable Container */


/* Footer */
footer {
  background-color: #e1e1e1;
  padding: 20px;
  text-align: center;
}
.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.package {
    flex: 1 1 300px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-sizing: border-box;
    padding-bottom: 160px; /* space equal to negative margin */
}

@media (max-width: 768px) {
    .packages {
        flex-direction: column;
    }
}

#tourimg {
    width: 280px;
    border-radius: 12px;
}
/* Reset & Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar */
nav {
  background-color: white;
  padding: 10px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}

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

#logo {
  height: 70px;
  width: auto;z
  border-radius: 10px;
}

.nav-right a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Slideshow Background */
#slideshow {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

/* Tour Packages */
.container {
  margin-top: 60px;
  padding: 60px 30px;
  background-color: #fff;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.package {
    flex: 1 1 300px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

#tourimg {
    width: 280px;
    border-radius: 12px;
}

/* Footer */
footer {
  background-color: #e1e1e1;
  padding: 20px;
  text-align: center;
}

/* Tour Packages Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto; /* centers and pushes down below navbar */
  background: rgba(255, 255, 255, 0.9); /* semi-transparent white for readability */
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* subtle depth */
  flex: 1;
  position: relative; /* ensures it's above slideshow */
  z-index: 1;
}
