:root {
  --primary: #5e2b1f;
  --secondary: #f2b53d;
  --bg: #fdfaf6;
  --text: #333;
  --max-width: 1100px;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(0,0,0,0.1);
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* NAVBAR */
.navbar {
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.brand h1 {
  margin: 0;
  color: var(--primary);
  font-family: 'Merriweather', serif;
}

.menu a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}

.menu a:hover {
  color: var(--secondary);
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  background: url('../assets/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* ===== HERO WATERMARK LOGO ===== ADD 1/13/2026*/
/* ===== HERO WATERMARK (FIXED & FIT) ===== */
.hero::before {
  content: "";
  position: absolute;
  inset: 0; /* full hero cover */
  background: url('../assets/watermark.png') center center no-repeat;
  background-size: 85%;   /* 👈 ye magic line hai */
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {   /* 1-13-2026*/
  z-index: 2;
}

.hero-content {     /* 1-13-2026 */
  position: relative;
  z-index: 3;
}




.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* =====background: rgba(0, 0, 0, 0.55); ====== 1-13-2026*/
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  margin-bottom: 12px;
  /* ADD NEW 1/13/2026*/
  opacity: 0.80;
  color: var(--primary);
}
.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  /* ADD NEW 1/13/2026*/
  opacity: 150;
  color: var(--primary);
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.btn.primary:hover {
  background: #7b3726;
}
.btn.secondary {
  background:  var(--primary); /* add color view in orginal file 1-13-2026 */
  color: #fff;
  border: 1px solid #fff;
}
.btn.secondary:hover {
  background:  #7b3726;   /* add color view in orginal file 1-13-2026 */
}

/* YATRA SECTION */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 20px;
}
.yatras h2, .about h2, .contact h2 {
  text-align: center;
  color: var(--primary);
  font-family: 'Merriweather', serif;
}
.subtext {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}
.yatra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card h3 {
  color: var(--primary);
  margin: 12px 0 6px;
}
.card p {
  color: #555;
  padding: 0 15px 10px;
}

/* ABOUT SECTION */
.about p {
  text-align: center;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.contact-grid a {
  color: var(--primary);
  text-decoration: none;
}
.contact-grid form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-grid input, .contact-grid textarea {
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid #ddd;
}
.contact-grid button {
  width: fit-content;
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero h2 { font-size: 2rem; }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 50px;
  background: #fffaf5;
}

.blog-section h2 {
  text-align: center;
  color: #5e2b1f;
  margin-bottom: 30px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.blog-card h3 {
  color: #4b2e18;
  margin: 15px 0 5px;
}

.blog-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.blog-card .content.hidden {
  display: none;
}

.readMoreBtn {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  background: #5e2b1f;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.readMoreBtn:hover {
  background: #7a3b26;
}

/* ===== ITINERARY SECTION ===== */
.itinerary-section {
  padding: 50px;
  background: #fffefc;
}

.itinerary-section h2 {
  text-align: center;
  color: #5e2b1f;
  margin-bottom: 30px;
}

.itinerary-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.itinerary-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease;
}

.itinerary-card:hover {
  transform: scale(1.02);
}

.itinerary-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.itinerary-card h3 {
  color: #4b2e18;
  margin: 10px 0 5px;
}

.itinerary-card .days {
  color: #6d4b3a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.itinerary-card .desc {
  color: #333;
  font-size: 0.9rem;
  padding: 0 10px;
}

.detailsBtn {
  background: #5e2b1f;
  color: #fff;
  border: none;
  padding: 8px 16px;
  margin: 15px 0;
  border-radius: 8px;
  cursor: pointer;
}
.detailsBtn:hover {
  background: #7a3b26;
}
.itinerary-card .price {
  color: #1a8917;
  font-weight: bold;
  margin: 10px 0;
  font-size: 1rem;
}

.detail-btn {
  background: #2b7a78;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.detail-btn:hover {
  background: #3aafa9;
}

#detailedModal .modal-content {
  max-width: 700px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  overflow-y: auto;
  max-height: 80vh;
}

.day-block {
  background: #fff7f0;
  padding: 12px 15px;
  margin: 12px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.day-block h4 {
  color: #5e2b1f;
  margin-bottom: 8px;
}

/* ===== Header / logo / navbar fixes ===== */
:root {
  --header-height: 72px; /* change kar sakta hai agar aur bada chahiye */
  --header-bg: rgba(255,255,255,0.98);
  --header-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Make header sticky/fixed so it always sits on top */
header {
  position: fixed;        /* fixed so it stays at top */
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background: var(--header-bg);
  box-shadow: var(--header-shadow);
  z-index: 9999;          /* very high so nothing overlaps it */
  backdrop-filter: blur(4px); /* nice glass effect on supported browsers */
}

/* Logo sizing — desktop larger, mobile smaller */
header .logo {
  width: 120px;       /* primary logo size (desktop) */
  height: auto;
  object-fit: contain;
  margin-right: 12px;
}

/* If logo still small, increase above width (e.g. 90px) */

/* Navbar links: aligned and clickable */
header nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
header nav a {
  color: #5e2b1f;    /* adjust to your color */
  text-decoration: none;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 6px;
}
header nav a:hover, header nav a.active {
  background: rgba(94,43,31,0.08);
  color: #7a3b26;
}

/* Push page content down so header does not cover content */
body > *:not(header) {
  /* Add top spacing equal to header height plus small gap */
  padding-top: calc(var(--header-height) + 12px);
}

/* Prevent anchor links (e.g., #blog) from getting hidden behind header */
section, .container, .blog-section, .itinerary-section {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

/* Responsive: smaller header / logo on mobile */
@media (max-width: 768px) {
  :root { --header-height: 62px; }
  header { padding: 6px 12px; }
  header .logo { width: 56px; }
  header nav { gap: 8px; font-size: 0.95rem; }
  body > *:not(header) { padding-top: calc(var(--header-height) + 10px); }
}

/* ====== BOOKING MODAL STYLE ====== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}

.closeBtn {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #444;
}
.closeBtn:hover {
  color: #d33;
}

.modal-content h2 {
  color: #5e2b1f;
  margin-bottom: 10px;
}
.modal-content p {
  color: #333;
  margin: 6px 0;
}
#whatsappBtn {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s;
}
#whatsappBtn:hover {
  background: #20b358;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes slideUp {
  from {transform: translateY(40px);}
  to {transform: translateY(0);}
}

/* ===== Modal Footer Buttons ===== */
.modal-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

#whatsappBtn,
.close-modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#whatsappBtn {
  background: #25D366;
  color: #fff;
}
#whatsappBtn:hover {
  background: #1eb05d;
}

.close-modal-btn {
  background: #e74c3c;
  color: #fff;
}
.close-modal-btn:hover {
  background: #c0392b;
}

/* ===== ADVENTURE SECTION ===== */
.adventure-section {
  padding: 100px 50px;
  background: #fffefc;
  text-align: center;
}

.adventure-section h2 {
  color: #5e2b1f;
  margin-bottom: 10px;
}

.adventure-subtitle {
  color: #7a3b26;
  margin-bottom: 40px;
  font-size: 1rem;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.adventure-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease;
  text-align: center;
  padding-bottom: 20px;
}

.adventure-card:hover {
  transform: scale(1.03);
}

.adventure-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.adventure-card h3 {
  color: #4b2e18;
  margin: 10px 0 5px;
}

.adventure-card .location {
  color: #6d4b3a;
  font-size: 0.9rem;
}

.adventure-card .short {
  color: #444;
  font-size: 0.9rem;
  margin: 10px 15px;
}

.adventure-card .detailsBtn {
  background: #5e2b1f;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.adventure-card .detailsBtn:hover {
  background: #7a3b26;
}

/* ===== CUSTOM TRIP MULTI DESTINATION ===== */
.customize-section {
  padding: 100px 50px;
  background: #fffefc;
  text-align: center;
}

.customize-section h2 {
  color: #5e2b1f;
  margin-bottom: 10px;
}

.subtitle {
  color: #7a3b26;
  margin-bottom: 40px;
  font-size: 1rem;
}

#customTripForm {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  color: #4b2e18;
  display: block;
  margin-bottom: 6px;
}

input, select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.hint {
  color: #666;
  font-size: 0.85rem;
}

.activities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.activities label {
  background: #faf4ef;
  border: 1px solid #ccc;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.activities input {
  margin-right: 6px;
}

.activities label:hover {
  background: #fff0e5;
  border-color: #5e2b1f;
}

.dates {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

button[type="submit"] {
  background: #5e2b1f;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
}
button[type="submit"]:hover {
  background: #7a3b26;
}

.confirm-box {
  background: #e9f6ec;
  border-left: 5px solid #2ecc71;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #2d572c;
  animation: fadeIn 0.5s ease;
  margin-top: 40px;
}
/* ===== multi-customize-section ====*/

.form-section {
  margin-bottom: 20px;
}

.form-section label {
  font-weight: 700;
  color: #4b1f0e;
}

/* Search bar styling */
#destinationSearch {
  width: 100%;
  padding: 8px 12px;
  margin: 10px 0;
  border: 2px solid #e0d4ca;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

#destinationSearch:focus {
  border-color: #8b4513;
}

/* Scrollable Checkbox Container */
.destination-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 180px;
  overflow-y: auto;
  padding: 10px;
  border: 2px solid #e0d4ca;
  border-radius: 10px;
  background-color: #fcf9f6;
}

/* Checkbox style */
.destination-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  background: #f8f5f2;
  border: 2px solid #d5c8c0;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  color: #5b2c1b;
  transition: all 0.2s ease;
}

.destination-box label:hover {
  background-color: #f3ebe5;
  border-color: #8b4513;
}

.destination-box input[type="checkbox"] {
  accent-color: #8b4513;
  width: 18px;
  height: 18px;
}

/* Scrollbar */
.destination-box::-webkit-scrollbar {
  width: 8px;
}
.destination-box::-webkit-scrollbar-thumb {
  background-color: #c9b8a8;
  border-radius: 10px;
}
.destination-box::-webkit-scrollbar-thumb:hover {
  background-color: #8b4513;
}

/* adventure more detial */

.detail-box {
  display: none;
  background-color: #f9f6f3;
  border: 2px solid #e0d4ca;
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
  color: #4b1f0e;
}

.detail-item {
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

/* addtion of name and email for customize itinerary */

#customTripForm input, 
#customTripForm select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* ye wala blog ke admin wale ke liye hai kyunki usme vo linee box se bhar jaa rahi thi */

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 15px;
  width: 350px;
  margin: 15px auto;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card h3 {
  color: #5e2b1f;
  margin-top: 10px;
  font-weight: bold;
}

.blog-card .excerpt {
  color: #444;
  font-size: 15px;
  margin: 10px 0;
  min-height: 40px;
}

.blog-card .full-content {
  text-align: left;
  color: #444;
  font-size: 15px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.readMoreBtn {
  background: #5e2b1f;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}

.readMoreBtn:hover {
  background: #402017;
}

.blog-card .full-content {
  text-align: justify;
  line-height: 1.6;
  white-space: normal;
  color: #444;
  font-size: 15px;
  margin-top: 10px;
}
.blog-card .full-content {
  max-height: 400px;
  overflow-y: auto;
}

/* ========================
   NAVBAR & HAMBURGER MENU
   ======================== */
.navbar {
  background: #fffaf6;
  border-bottom: 1px solid #eee;
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  gap: 15px; /* 👈 ye line add karni hai */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand h1 {
  color: #5e2b1f;
  font-family: 'Merriweather', serif;
  font-size: 22px;
}

.logo {
  height: 50px;
}

.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #5e2b1f;
  font-weight: 600;
  font-size: 16px;
}

.menu a.active {
  background: #f2b53d1a;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: #5e2b1f;
  cursor: pointer;
}

/* Responsive Menu (Mobile View) */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fffaf6;
    width: 220px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 0 12px;
    z-index: 999;
  }

  .menu a {
    padding: 10px 0;
    font-size: 17px;
    border-bottom: 1px solid #eee;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  /* Responsive Menu (Mobile View) ADD 1/13/2026 */
  @media (max-width: 768px) {
  .hero::before {
    background-size: 170%;
    opacity: 0.30;
  }
}

}
