/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}

/* Header and Navbar */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-logo h1 {
  font-size: 20px;
  color: #f68b1e;
}

nav a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1548013146-72479768bada') center center/cover no-repeat;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 36px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 18px;
  margin-top: 10px;
}

/* Cards and Sections */
section {
  padding: 60px 20px;
  text-align: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #666;
}

.btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #f68b1e;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #d96f00;
}

/* About Section */
.about-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* About-stay section for Rishikesh */
.about-stay {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  padding: 40px 20px;
}

/* Contact */
.contact-section p {
  font-size: 16px;
}

/* Note for price info */
.note {
  font-size: 14px;
  color: #666;
  margin-top: 30px;
}

/* Optional: Small hero section */
.small-hero {
  height: 40vh;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
}

footer .insta-icon {
  width: 30px;
  margin-top: 10px;
  vertical-align: middle;
}

/* Form Popup Styling (used in adventure/rishikesh/trending) */
#formPopup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

#formPopup.show {
  display: flex;
}

#whatsappForm {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 16px;
  width: 420px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
}

#whatsappForm h3 {
  margin-bottom: 15px;
}

#whatsappForm input,
#whatsappForm select,
#whatsappForm textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

#whatsappForm button {
  background: linear-gradient(to right, #25d366, #128c7e);
  color: white;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background 0.3s ease;
}

#whatsappForm button:hover {
  background: linear-gradient(to right, #1ebd57, #0c7b68);
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

/* Form Popup Styling (used in wedding/pre-wedding) */
.form-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 16px;
  width: 420px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
}

/* ✅ Package Card Row Fix for Trending Events */
.packages .package-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.packages .package-card {
  flex: 1 1 300px;
  max-width: 300px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

/* Fix Trending Events card layout to match other packages */
.trending-events .package-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.trending-events .package-card {
  width: 300px;
  max-width: 100%;
  flex: 0 0 auto;
}

/* Fix for Trending Events cards to match Adventure layout */
.trending-events .package-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.trending-events .package-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trending-events .package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.trending-events .package-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.trending-events .package-card p {
  font-size: 15px;
  color: #666;
}
