* /* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #fff7e6; /* Light sacred background */
  color: #333;
}

.logo img {
  height: 80px; /* Adjust height as needed */
  width: 150px;  /* Maintains aspect ratio */
  object-fit: fill; /* Ensures it fits inside the box */
  margin-right: 10px;  /* Space between logo and text */
  vertical-align: middle;
}


.top-register-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background-color: #ff9f1c;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.top-register-btn:hover {
  background-color: #ffbf69;
  color: #fff;
}


/* Navbar */
.navbar {
  background: #aa4a6c; /* Sacred festive pinkish red */
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: #fff;
  color: #d6336c;
  border-radius: 6px;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  background-color: #f8d7da;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  padding-top: 10px; /* closes the gap between nav item and dropdown */
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px; /* invisible bridge covering the gap */
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Register Button */
.register-btn {
  background: #ff9f1c;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.register-btn:hover {
  background: #ffbf69;
  color: #fff;
}

/* Banner */
.banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* Aligns content to the left */
  padding-left: 50px;           /* Adds space from the left edge */
  text-align: left;             /* Aligns text to the left */
  overflow: hidden;             /* Prevents the blur from spilling out */
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('https://res.cloudinary.com/kmadmin/image/upload/v1730108430/kiomoi/kumbh_mela_2024_9309.jpg') no-repeat center center/cover;
  filter: blur(2px);
  z-index: 0; /* stays behind content */
}

.banner-content {
  position: relative;
  z-index: 1; /* brings text above the background */
  max-width: 600px;  /* Limits the width of the content for better readability */
}

.banner-content h2 {
  font-size: 80px;
  color: #fff;
  margin-bottom: 20px; /* Adds space between the heading and the paragraph */
}

.banner-content p {
  font-size: 20px;
  color: #fff;
}

/* Plan Your Pilgrimage */
.pilgrimage, .services, .ghats {
  padding: 60px 0;
  text-align: center;
}

.pilgrimage h2 {
  font-size: 40px; /* Larger font size */
  margin-bottom: 40px; /* Extra space below the heading */
}

.pilgrimage-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px; /* Space between image and purple sections */
}

.pilgrimage-items {
  width: 45%;
}

.pilgrimage-item {
  background-color: #6a0572;
  color: #fff;
  padding: 20px 24px; /* Slightly reduced padding */
  margin-bottom: 20px; /* Reduced space between items */
  border-radius: 10px;
  text-align: left;
}

.main-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}

.content {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.btn {
  background: #fff;
  color: #6a0572;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #a61284;
}

.pilgrimage-image {
  width: 50%;
}

.pilgrimage-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Services Section */
.services h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}

.service-card {
  flex: 1 1 22%;
  background-color: #f1f1f1;
  padding: 25px;
  border-radius: 12px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.service-card:hover {
  background-color: #e0c2e7;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card:hover .card-title {
  color: #6a0572;
}

.card-desc {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}


/* Ghat Locations Section */
.ghats h2 {
  font-size: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.ghat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.ghat-card {
  background: #ffe0e9;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ghat-card:hover {
  transform: translateY(-8px);
  background-color: #f4d0db;
}

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

.ghat-title {
  font-size: 20px;
  font-weight: 600;
  color: #6a0572;
  margin-bottom: 6px;
}

.ghat-address {
  font-size: 14px;
  color: #444;
  font-style: italic;
  margin-bottom: 10px;
}

.ghat-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}


/* Footer */
.footer {
  background: #4b2c20;
  color: white;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-links, .footer-contact {
  text-align: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ffdfba;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  color: #ffdfba;
  margin: 0 5px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}






/* Registration Form */
.register-section {
  padding: 60px 0;
  text-align: center;
}

.register-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff4e6;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

textarea {
  width: 100%; /* Matches input fields */
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical; /* Allow vertical resize only */
  margin-top: 4px;
  font-family: inherit;
  font-size: 16px;
}


label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 4px;
}

input:focus, select:focus {
  outline: none;
  border-color: #d6336c;
}

.register-form .btn {
  width: 100%;
  margin-top: 10px;
}



/* Accommodation Section */
.accommodation-section {
  padding: 60px 0;
  background-color: #fff8f0;
  text-align: center; /* keeps section title centered */
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.accommodation-card {
  background: #ffe6e6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s, background 0.3s;
  text-align: left; /* align text content inside the card to left */
}

.accommodation-card:hover {
  transform: translateY(-5px);
  background: #ffd6d6;
}







.transport-section {
  padding: 60px 0;
  background: #f5f5ff;
  text-align: center;
}

.transport-category {
  margin-top: 40px;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.transport-card {
  background: #e0f7fa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.transport-card:hover {
  background: #b2ebf2;
  transform: translateY(-5px);
}





.healthcare-section {
  padding: 60px 0;
  background: #fff8f0;
  text-align: center;
}

.healthcare-category {
  margin-top: 40px;
}

.healthcare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.healthcare-card {
  background: #ffe0b2;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.healthcare-card:hover {
  background: #ffcc80;
  transform: translateY(-5px);
}






.police-section {
  padding: 60px 0;
  background: #fffdf7;
  text-align: center;
}

.police-category {
  margin-top: 40px;
}

.police-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.police-card {
  background: #e1f5fe;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.police-card:hover {
  background: #b3e5fc;
  transform: translateY(-5px);
}




.lost-found-section {
  padding: 60px 0;
  background: #fff9f0;
  text-align: center;
}

.form-container {
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.lost-found-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.lost-found-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.lost-found-form input,
.lost-found-form textarea,
.lost-found-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.btn-primary {
  background-color: #ff9800;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #fb8c00;
}

.booth-section {
  margin-top: 50px;
}

.booth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.booth-card {
  background: #e1f5fe;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.booth-card:hover {
  background: #b3e5fc;
  transform: translateY(-5px);
}





/* General Section Styling */
section {
  padding: 60px 20px;
  background-color: #fff3f3; /* light pinkish background for fire */
}

/* Booth Section */
.booth-section {
  margin-top: 40px;
}

.booth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.booth-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

/* Emergency Contact Text */
.booth-card p strong {
  color: #d60000; /* Emergency red color */
  font-size: 18px;
}

/* Header / Navbar / Footer already styled above */







/* Incident Form Styling */
.incident-form {
  background: #fff;
  padding: 30px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.incident-form .form-group {
  margin-bottom: 20px;
}

.incident-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.incident-form input,
.incident-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.btn-submit {
  margin-top: 20px;
  background-color: #ff6600;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: #cc5200;
}






/* ================================
   Styles Specific to Stall Page
================================ */

/* Banner Section */
.banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  color: #d32f2f;
  text-align: center;
  margin: 40px 0 20px;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Individual Cards */
.card {
  background: #fff8f0;
  padding: 20px;
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card h3 {
  margin-bottom: 10px;
  color: #ff5722;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 5px;
}

/* Footer Quick Links */
.footer-container ul li a:hover {
  color: #ff9800;
}

/* Navbar Hover Fix */
.nav-links li a:hover,
.dropdown:hover .dropbtn {
  color: #ff9800;
}

/* Dropdown Content */
.dropdown-content li a:hover {
  background-color: #ffe0b2;
}

/* Footer Section */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #ff9800;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #ff9800;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  font-size: 0.85rem;
}
