:root {
  --primary: #25D366;
  --bg: #f8fafc;
  --accent: #c47f00;
  --nav-bg: #007BFF; /* Blue navigation bar */
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: #222;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn, .btn-small, button {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover, .btn-small:hover, button:hover {
  background: #128C7E;
  transform: scale(1.05);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #007BFF; /* Blue color */
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffda79;
}

/* HAMBURGER MENU */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #fff;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

/* MOBILE STYLING */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background: #007BFF;
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 500px; /* large enough to show all links */
  }

  .nav-toggle-label {
    display: flex;
  }
}

/* HERO */
.hero {
  background: url('car-bg.jpg') center/cover no-repeat;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.overlay {
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  max-width: 750px;
}
.hero h1 {
  font-size: 3rem;
  color: #ffda79;
  margin: 0 0 .4rem;
}
.hero h3 {
  margin: 0 0 .5rem;
}
.hero p {
  margin-bottom: 1rem;
}

/* SECTIONS */
section {
  background: #fff;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.about p, #packages p, #sightseeing p {
  text-align: justify;
  line-height: 1.7;
}

/* PACKAGES - KEEP AS-IS */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.3rem;
  margin-top: 1.2rem;
}
.pkg {
  background: #fffdf3;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.pkg img {
  width: 100%;
  height: 250px;  /* same as other packages */
  border-radius: 10px;
  object-fit: cover;
}
.pkg .btn.book-now {
  margin-top: 0.6rem;
}
.pkg img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
}
.pkg h3 {
  margin: .6rem 0;
  color: var(--accent);
  font-size: 1.25rem;
}
.pkg p {
  font-size: .95rem;
  line-height: 1.5;
}
.pkg .btn-small {
  margin-top: .6rem;
}

/* SERVICE ITEMS */
.service-item {
  text-align: center;
  margin: 2rem 0;
}
.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: .6rem;
  color: var(--accent);
}
.service-item img {
  width: 250px;
  height: 250px; /* square-ish */
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: .8rem;
}

/* CARS */
.car-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.car-gallery img {
  width: 220px;
  height: 220px; /* square */
  border-radius: 12px;
  object-fit: cover;
  box-shadow:0 3px 10px rgba(0,0,0,0.12);
}
.car-gallery p {
  margin-top:.5rem;
  font-weight:500;
}

/* MAGH MELA 2026 */
.magh-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}
.magh-gallery img {
  width: 220px;   /* square-ish */
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}
/* Center Book Now buttons */
.magh-gallery .btn.book-now,
.room-gallery .btn.book-now {
  display: block;
  margin: 0.8rem auto 0; /* center horizontally with margin above */
  text-align: center;
}

/* PRAYAGRAJ SIGHTSEEING */
.sightseeing-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center; /* centers images */
}
.sight-item {
  text-align: center;
  width: 220px;   /* fixed width for balance */
}
.sight-item img {
  width: 220px;   /* slightly smaller */
  height: 220px;  /* square */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.sight-item .btn {
  margin-top: 0.5rem;
}

/* PREMIUM ROOM IMAGES */
.room-gallery img {
  width: 200px;   /* slightly smaller */
  height: 200px;  /* square */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1rem;
}
.testimonial-item {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

/* ENQUIRY */
form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
form input, form button {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}
form button {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* CONTACT */
#contact p {
  text-align: center;
  line-height: 1.7;
}
iframe {
  width: 100%;
  border: 1px solid #ccc; /* makes map more visible */
  border-radius: 12px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #fff;
  font-size: .9rem;
}