* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}
h1, h2, h3, .site-name {
  font-family: 'Playfair Display', serif;
}

/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff; /* semi-transparent */
  padding: 15px 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

/* Navbar links */
.nav-links {
  font-size: 1rem;
  list-style: none;
  display: flex;
  gap: 15px; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
}

/* Hero section */
.hero {
  min-height: 100vh; 
  width: 100%;
  background: url('https://plus.unsplash.com/premium_photo-1661883991651-b5487771e9aa?q=80&w=1216&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000%;
  padding: 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #FFD700; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
}

/* Search box */
.search-box { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  background: #fff;
  border-radius: 50px; 
  padding: 5px; 
  max-width: 500px; 
  margin: 0 auto; 
}

.search-box input {
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 50px 0 0 50px;
  flex: 1;
  font-size: 1rem;
}

.search-box button {
  background: linear-gradient(45deg, #3B2F2F, #2E8B57);
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 50px 50px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background: linear-gradient(45deg, #2E8B57, #3B2F2F);
}

/* Destinations Section */
.destinations {
  padding: 50px 10% 50px;
  background: linear-gradient(135deg, #ffafbd, #ffc3a0);   
  color: #fff;
  text-align: center;
  margin-top: 50px;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  color: #2E8B57;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 3px solid #2E8B57;
  border-radius: 50px;
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Grid layout */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Destination Card */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Info Box */
.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  cursor: pointer;
}

.destination-info h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.destination-info p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Button */
.destination-info button {
  padding: 6px 15px;
  background: #2E8B57;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.destination-info button:hover {
  background: #006400;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card:hover .destination-info {
  transform: translateY(0);
}

/* Refresh Destinations Button */
#refreshDestinations {
  background: linear-gradient(135deg, #FF6B6B, #FFD93D, #6BCB77); 
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  margin-top: 50px;
}

#refreshDestinations:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #6BCB77, #FFD93D, #FF6B6B); 
}

#refreshDestinations:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

#refreshDestinations:hover::after {
  content: "✈️";
  display: inline-block;
  animation: fly 1s ease-in-out infinite alternate;
  margin-left: 5px;
}

@keyframes fly {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-5px) translateX(5px); }
}

/* Activities Section */
.activities {
  padding:  50px 10% 50px;
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee); 
  color: #fff;
  text-align: center;
  margin-top: 50px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.activity-card {
  background: rgba(255, 255, 255, 255);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.activity-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.activity-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2E8B57;
}

.activity-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Weather Section */
.weather {
  padding: 50px 10% 50px;
  background: linear-gradient(135deg, #d8a7b1, #fbcabb);
  color: #5a3e36;
  text-align: center;
  border-radius: 0px;
  margin: auto auto;
  margin-top: 50px;
}

.weather-box {
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 5px;
  max-width: 500px;
  flex-wrap: wrap;
}

.weather-box input {
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 50px 0 0 50px;
  flex: 1;
  font-size: 1rem;
  min-width: 200px;
}

.weather-box button {
  background: linear-gradient(45deg, #3B2F2F, #2E8B57);
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 0 50px 50px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.weather-result {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 500;
}

/* Travel Inspiration Section */
.inspiration {
  padding: 50px 10% 50px;
  background: linear-gradient(135deg, #fddb92, #d1fdff); 
  color: #3B2F2F;
  text-align: center;
  margin-top: 50px;
}

.inspiration-subtitle {
  padding: 15px;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.inspiration-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.4s ease;
}

.inspiration-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Inspiration Card Overlay */
.inspiration-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.4s ease;
}

.inspiration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay container */
.inspiration-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

/* Show overlay on hover */
.inspiration-card:hover img {
  transform: scale(1.1);
}

.inspiration-card:hover .inspiration-hover {
  transform: translateY(0);
  opacity: 1;
}

.inspiration-hover h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.inspiration-hover p {
  margin: 5px 0 0;
  font-size: 1rem;
}

/* Surprise Me Button */
#resetInspiration {
  background: linear-gradient(135deg, #FF9A8B, #FF6A88, #FF99AC);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 14px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

/* Hover effect */
#resetInspiration:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #FF99AC, #FF6A88, #FF9A8B); /* reverse gradient */
}

/* Click/Active effect */
#resetInspiration:active {
  transform: translateY(0px) scale(0.97);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Floating suitcase animation */
#resetInspiration::after {
  content: "🧳";
  position: absolute;
  right: 15px;
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

#resetInspiration:hover::after {
  opacity: 1;
  animation: floatSuitcase 1s ease-in-out infinite alternate;
}

/* Float animation */
@keyframes floatSuitcase {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-5px) translateX(5px); }
}

/* Travel Info Section */
#travel-info {
  padding: 60px 10%;
  background: linear-gradient(135deg, #e0c3a3, #f4e2d8);
  color: black;
  text-align: center;
}

#travel-info h2 {
  font-size: 1.5rem;
  color: #2E8B57;
  margin-bottom: 40px;
}

.travel-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.travel-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.travel-card h3 {
  margin-bottom: 15px;
  color: #0f172a;
}

.travel-card ul {
  list-style: none;
  padding: 0;
}

.travel-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #334155;
}

#foodPhotos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px; 
  margin-top: 20px;
}

.food-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.food-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

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

.food-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.food-card:hover .food-overlay {
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
  padding: 50px 10% 50px;
  background: linear-gradient(135deg, #fad0c4, #ffd1ff);
  color: #1e293b;
  text-align: center;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 1100px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 40px;
  margin-top: -10px;
  font-weight: 700;
}

.testimonial-carousel-container {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  opacity: 0.6;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #334155;
}

.stars {
  font-size: 1.3rem;
  color: #facc15;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0f172a;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0ea5e9;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: #0284c7;
}

.prev {
  left: 15px;
}
.next {
  right: 15px;
}

.add-review {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.add-review h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #333;
}

.add-review form {
  display: flex;
  flex-direction: column;
}

.add-review input,
.add-review textarea {
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
}

.add-review button[type="submit"] {
  padding: 12px 20px;
  background: #ff6b6b;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.add-review button[type="submit"]:hover {
  background: #ff3b3b;
}

.rating-input label {
  cursor: pointer;
  font-size: 1rem;
  color: #333;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffb3a7, #ff9f91);
  color: #333333;
  text-align: center;
  margin-top: 50px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333333;
}

.contact p {
  color: #333333;
  margin-bottom: 40px;
  font-size: 1.4rem;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  background: #ff7e5f; 
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #eb4d4b; 
}

.contact-info {
  color: #333333;
  text-align: left;
  max-width: 300px;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact .social-icons a {
  color: #333333;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-direction: row;
}

/* Hover colors for each social icon */
.contact .social-icons a.facebook:hover {
  color: #1877F2; 
}

.contact .social-icons a.x:hover {
  color: white; 
}

.contact .social-icons a.instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact .social-icons a.linkedin:hover {
  color: #0A66C2; 
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #4db6ac, #ffe29f);
  color: #333333;
  background-size: 300% 300%;
  animation: gradientFlow 12s ease infinite;
  padding: 80px 20px 20px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

/* Brand */
.footer-brand h2 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffe66d;
  text-shadow: 0px 0px 8px rgba(255, 230, 109, 0.7);
}

.footer-brand p {
  font-size: 1.5rem;
  color: #fefefe;
  opacity: 0.85;
  text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.5);
}

/* Glass cards */
.footer-links, .footer-social {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0px;
}

.footer-links:hover, .footer-social:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0,0,0,0.4);
}

.footer-links h3, .footer-social h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  border-bottom: 2px solid #ffe66d;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer-links ul li a:hover {
  color: #ffe66d;
  text-shadow: 0px 0px 6px rgba(255, 230, 109, 0.7);
}

/* Social icons */
.footer-social-icons {
  display: flex;
  flex-direction: column;  
  align-items: center;    
  gap: 12px;               
}

.footer-social-icons a {
  color: #333333;
  transition: all 0.3s ease;
  font-size: 20px;
}

.footer-social-icons a:hover.facebook {
  color: #1877F2;
}

.footer-social-icons a:hover.x {
  color: white;
}

.footer-social-icons a:hover.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-social-icons a:hover.linkedin {
  color: #0A66C2;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  color: #5a3e36;
}

/* Floating travel emojis */
.footer::before {
  content: "🏝️";
  font-size: 5rem;
  position: absolute;
  top: 15%;
  left: 5%;
  opacity: 0.15;
}

.footer::after {
  content: "✈️";
  font-size: 4.5rem;
  position: absolute;
  bottom: 20%;
  right: 8%;
  opacity: 0.15;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-20px); }
}

.footer-logo {
  width: 210px;
  height: auto;
  margin-top: 50px;
  margin-bottom: 15px;
  margin-left: 10px;
  filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.4));
  transition: transform 0.4s ease, filter 0.4s ease;  
}

.footer-logo:hover {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0px 8px 16px rgba(255,230,109,0.6));
}

/* Section Divider with Animated Icons */
.section-divider {
  display: flex;
  justify-content: center;
  margin: 50px 0;
  width: 100%;
}

.section-divider .icons {
  display: flex;
  justify-content: space-between; 
  width: 90%; 
}

.section-divider .icons i {
  font-size: 2.2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #2E8B57, #20B2AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wave 2s infinite ease-in-out;
}

.section-divider .icons i:nth-child(2) {
  background: linear-gradient(45deg, #1E90FF, #00CED1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.2s;
}
.section-divider .icons i:nth-child(3) {
  background: linear-gradient(45deg, #FF6347, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.4s;
}
.section-divider .icons i:nth-child(4) {
  background: linear-gradient(45deg, #8A2BE2, #DA70D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.6s;
}
.section-divider .icons i:nth-child(5) {
  background: linear-gradient(45deg, #FF1493, #FF69B4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.8s;
}
.section-divider .icons i:nth-child(6) {
  background: linear-gradient(45deg, #FF8C00, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 1s;
}
.section-divider .icons i:nth-child(7) {
  background: linear-gradient(45deg, #2E8B57, #3CB371);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 1.2s;
}

/* Wave animation */
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #006400, #008080);
    position: absolute;
    top: 60px;
    right: 0;
    width: 60%;
    padding: 15px;
    border-radius: 0 0 0 10px;
  }

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

  .hamburger {
    display: block;
  }

  .hero {
    height: 70vh; 
    padding: 40px 20px;
    text-align: center;
    background-size: cover; 
    background-position: center center;
    background-attachment: scroll;
  }

  .hero-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .hero-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .weather-box {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
  }

  .weather-box input {
    border-radius: 20px;
    width: 100%;
    margin-bottom: 10px;
  }

  .weather-box button {
    border-radius: 20px;
    width: 100%;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonials h2 {
    font-size: 2rem;
  }

  .add-review h3 {
    font-size: 1.5rem;
  }

  #travelInfo {
    display: block;
    font-size: 14px;
  }
}