/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #fff;
  overflow-x: hidden;
  background-color: #111;
}

/* Hero Section with Background Slideshow */
/* Hero Section - Full Background Image */
.hero {
  position: relative;
  height: 100vh; /* 75% of the screen height */
  width: 100%;
  background-image: url("https://architectureprizecom.s3-us-west-2.amazonaws.com/uploads/96497/22-10274-21/full/0cef41a500fda714aef6ff42f2c8f9ec.jpg"); /* <-- your Rajasthan image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}



/* Keep your hero content on top of overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 2s ease-in-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f5f5f5;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 2s ease-in-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px #000;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  padding: 12px 30px;
  background: #f7b733;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn:hover {
  background: #fc4a1a;
  color: #fff;
  transform: scale(1.1);
}

/* Background Slideshow Animation */
@keyframes slideshow {
  0%   { background-image: url('images/amer_fort.jpg'); }
  25%  { background-image: url('images/lake_pichola.jpg'); }
  50%  { background-image: url('images/mehrangarh_fort.jpg'); }
  75%  { background-image: url('images/jaisalmer_fort.jpg'); }
  100% { background-image: url('images/hawa_mahal.jpg'); }
}

/* Packages Section */
.packages {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-image: url("https://www.itl.cat/pngfile/big/32-328660_rajasthani-wallpaper-thar-desert-hd.jpg"); /* 🔁 Replace with your own image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}

/* ✨ Overlay for better readability */
.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust transparency (0.3–0.6) as you like */
  z-index: 1;
}

/* Ensure text and cards appear above overlay */
.packages h2,
.packages .package-container {
  position: relative;
  z-index: 2;
}

/* 🏰 Section Title */
.packages h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #f7b733;
  margin-bottom: 40px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

/* 📦 Package Cards Layout */
.package-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 25px;
  padding: 0 5%;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

/* 🟦 Smaller Square Package Cards */
.package-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  width: 300px;   /* square width */
  height: 250px;  /* square height, slightly bigger than passport */
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.package-card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-bottom: 2px solid #f7b733;
}

.package-card h3 {
  font-size: 0.9rem;
  color: #f7b733;
  margin: 5px 0 0 0;
}

.package-card p {
  font-size: 0.75rem;
  color: #ddd;
  padding: 0 8px;
}

/* Hover animation */
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.contact {
  background: #000;
  padding: 80px 10%;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #f7b733;
  margin-bottom: 30px;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

button {
  background: #f7b733;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background: #fc4a1a;
  color: #fff;
  transform: scale(1.1);
}

/* Footer */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .package-container { flex-direction: column; align-items: center; }
}
/* Booking Enquiry Section - Horizontal Rectangle Style */
/* --- Booking Enquiry Section --- */
.booking-section {
  width: 100%;
  padding: 70px 0;
  background: url('desert-bg.jpg') center/cover no-repeat; /* optional background */
  display: flex;
  justify-content: center;  /* centers horizontally */
  align-items: center;
  position: relative;
  z-index: 1;
}

.booking-container {
  width: 75%;
  max-width: 1000px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 60px;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.booking-container h2 {
  color: #ffb400;
  font-size: 2.2em;
  margin-bottom: 10px;
}

.booking-container p {
  color: #fff;
  margin-bottom: 25px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.form-row input,
textarea {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
}

textarea {
  resize: none;
  width: 100%;
}

.booking-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}




.booking-btn:hover {
  background: #e6a200;
}

/* Safety: ensures no other section is affected */
.popular-packages,
.booking-section {
  position: relative;
}
.booking-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Spinner hidden by default */
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(0,0,0,0.2);
  border-top: 3px solid black;
  border-radius: 50%;
  display: none;
  animation: spin 1s linear infinite;
}

.booking-btn.loading .spinner {
  display: inline-block;
}

.booking-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.form-success {
  display: none;
  background: #1f8b4c;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Booking status row highlighting ===== */

tr.status-new {
  background-color: rgba(255, 193, 7, 0.15);
}

tr.status-contacted {
  background-color: rgba(13, 110, 253, 0.12);
}

tr.status-confirmed {
  background-color: rgba(25, 135, 84, 0.15);
}

tr.status-cancelled {
  background-color: rgba(220, 53, 69, 0.15);
}

/* Smooth hover */
#bookingTable tr:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Status dropdown styling */
.status-select {
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
}
.status-select {
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
}

.status-New {
  background: #facc15;
  color: #000;
}

.status-Contacted {
  background: #38bdf8;
  color: #000;
}

.status-Confirmed {
  background: #22c55e;
  color: #000;
}

.status-Cancelled {
  background: #ef4444;
  color: #fff;
}
/* ===============================
   MOBILE RESPONSIVE FIX
=============================== */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* HERO */
  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  /* PACKAGES */
  .package-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-card img {
    height: 180px;
    object-fit: cover;
  }

  /* BOOKING FORM */
  .booking-container {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .booking-form input,
  .booking-form textarea {
    width: 100%;
    font-size: 0.95rem;
  }

  .booking-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  /* ADMIN TABLE (future safety) */
  table {
    font-size: 0.8rem;
    overflow-x: auto;
    display: block;
  }
}

