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

body {
  font-family: 'Poppins', sans-serif; /* Mustard yellow background */
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

body > *:not(footer) {
  flex: 1 0 auto; /* Allow content to grow but not shrink */
}

footer {
  flex-shrink: 0; /* Prevent footer from shrinking */
}

/* Header */
.header {
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100; /* Ensure header stays above content */
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 180px;
  height: 100px;
}

.brand {
  font-size: 2rem;
  color: #450202;
  font-weight: bold;
  animation: brandAnimation 1s ease-in-out;
}

@keyframes brandAnimation {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.header-right {
  text-align: right;
  padding-left: 20px;
}

.language-select-container,
.link-container,
.mobile-numbers {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 5px;
}

.language-select {
  padding: 5px;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.link-container a {
  background-color: #DC143C;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 10px;
  color: white;
  transition: color 0.3s ease;
}

.link-container a:hover {
  color: #000;
}

.mobile-numbers {
  font-size: 0.9rem;
  color: #000;
  flex-wrap: wrap;
  flex-direction: column;
}

/* Navigation */
nav {
  background-color: #333;
  padding: 10px 0;
  width: 100%;
  font-family: 'Rubik', sans-serif;
  /* Removed position: sticky; top: 0; */
  position: relative; /* Keeps it in natural flow */
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  color: red;
  display: none; /* Removed hamburger */
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: hidden; /* No horizontal scrolling */
}

.nav-links li {
  flex: 0 1 auto;
  min-width: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 6px 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: #f20000;
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(rgb(0, 0, 0), rgba(0,0,0,0.7)), url('https://source.unsplash.com/1600x900/?hampi,ruins');
  background-size: cover;
  background-position: center;
  height: 50vh; /* Increased for balance with images */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #06fd89; /* High-contrast off-white text */
  animation: fadeIn 1.2s ease-in;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  margin-top: 5%;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgb(255, 0, 8);
}
.hero .image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 1rem auto;
}
.hero .image-grid img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.hero .image-grid img:hover {
  transform: scale(1.05);
}
.hero p {
  font-size: 1.3rem;
  max-width: 600px;
}
/* Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #b19b21; /* Golden yellow container */
}
section {
  margin: 1rem 0;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: slideUp 0.8s ease-out;
}
h2 {
  font-family: 'Cinzel', serif;
  color: red; /* Gold for headings */
  margin-bottom: 1rem;
  font-size: 2rem;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.package {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.package:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}
.package h3 {
  color: #1e3a8a; /* Navy for package titles */
  margin-bottom: 0.5rem;
  font-family: 'Cinzel', serif;
}
.package-details {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #f0f4f8; /* Light blue-gray for package details */
  border-radius: 5px;
}
.package-details.show {
  display: block;
}
.contact a {
  color: red; /* Gold for links */
  text-decoration: none;
  font-weight: 500;
}
.contact a:hover {
  text-decoration: underline;
  color: #1e3a8a; /* Navy on hover */
}
/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero p {
    font-size: 1rem;
  }
  .container {
    padding: 1rem;
  }
  section {
    padding: 1rem;
  }
  .header {
    flex-direction: column;
    gap: 10px;
  }
  .header-right {
    text-align: center;
    padding-left: 0;
  }
  .nav-links {
    gap: 15px;
  }
}
/* Responsive */
@media (max-width: 320px) { /* Very small phones */
  .header {
    padding: 0.5rem 0.5rem;
  }
  .logo {
    width: 100px;
  }
  .brand {
    font-size: 1.2rem;
  }
  .link-container a {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  .mobile-numbers {
    font-size: 0.7rem;
  }
  .hero {
    min-height: 25vh;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }
  .slide {
    max-width: 80vw;
  }
  .slider {
    min-height: 120px;
  }
  .container {
    padding: 0.5rem;
  }
  section {
    padding: 0.8rem;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package h3 {
    font-size: 1rem;
  }
  footer {
    padding: 0.8rem;
    gap: 0.3rem;
  }
  footer span, footer input {
    font-size: 0.7rem;
  }
  footer button {
    padding: 0.3rem 0.6rem;
  }
}
@media (min-width: 321px) and (max-width: 480px) { /* Small mobiles */
  .header {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .header-left {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    width: 120px;
  }
  .brand {
    font-size: 1.5rem;
  }
  .header-right {
    text-align: center;
    padding-left: 0;
  }
  .language-select-container, .link-container, .mobile-numbers {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  .link-container a {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .mobile-numbers {
    font-size: 0.8rem;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
  }
  .nav-links.active a {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  .hero {
    min-height: 30vh;
  }
  .slide {
    max-width: 90vw;
  }
  .slider {
    min-height: 150px;
  }
  .dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
  .container {
    padding: 0.5rem;
  }
  section {
    padding: 1rem;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
  footer span, footer input {
    font-size: 0.8rem;
  }
  footer button {
    padding: 0.4rem 0.8rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) { /* Tablets */
  .header {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  .logo {
    width: 150px;
  }
  .brand {
    font-size: 1.8rem;
  }
  .link-container a {
    font-size: 0.85rem;
  }
  .mobile-numbers {
    font-size: 0.85rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.95rem;
  }
  .hero {
    min-height: 35vh;
  }
  .slide {
    max-width: 250px;
  }
  .slider {
    min-height: 180px;
  }
  .container {
    padding: 1rem;
  }
  .package-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  footer {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) { /* Small desktops */
  .header {
    padding: 1rem 1.5rem;
  }
  .logo {
    width: 160px;
  }
  .brand {
    font-size: 1.9rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .hero {
    min-height: 40vh;
  }
  .slide {
    max-width: 300px;
  }
  .container {
    padding: 1.5rem;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) { /* Medium desktops */
  .container {
    padding: 2rem;
  }
}
@media (min-width: 1201px) { /* Large desktops */
  .hero {
    min-height: 50vh;
  }
  .container {
    padding: 2.5rem;
  }
}