/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #fff;
}

/* Background Image */
#bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/bg-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.3;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
  z-index: 1; /* Ensure header is above video */
}

.logo {
  width: 100px;
}

/* Navbar */
.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 2rem;
}

.navbar ul li a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.navbar ul li a:hover {
  color: #ff0080;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a; /* Solid dark background */
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

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

.dropdown-menu a {
  display: block;
  margin: 0.5rem 0;
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.dropdown-menu a:hover {
  color: #ff0080;
}

/* Auth Section */
#auth-section .neon-btn {
  margin-left: 1rem;
}

/* Neon Button */
.neon-btn {
  color: #fff;
  background: transparent;
  border: 2px solid #ff0080;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 15px #ff0080, 0 0 30px #ff0080;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.neon-btn:hover {
  box-shadow: 0 0 30px #ff0080, 0 0 60px #ff0080;
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 5rem 0;
  z-index: 1; /* Ensure it’s above video */
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  /* text-shadow: 0 0 20px, 2px 2px 5px rgba(0, 0, 0, 0.8); Enhanced for readability */
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  /* text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); For readability */
}

/* Theatre Section */
.theatre-section {
  padding: 3rem 0;
  position: relative;
  z-index: 1; /* Ensure it’s above video */
}

.theatre-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.card {
  background: #1a1a1a; /* Solid dark background */
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 128, 0.3); /* Pink border for neon effect */
  padding: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.2); /* Pink shadow */
  width: 300px;
  text-align: center;
  transition: transform 0.5s ease;
}

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

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

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

/* Slider Styles (for booking.html) */
.theatre-image {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  text-align: center;
}

.slider-slide img {
  width: 100%;
  border-radius: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

.slider-dots {
  text-align: center;
  margin-top: 1rem;
}

.slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.slider-dot.active {
  background: #ff0080;
  box-shadow: 0 0 5px #ff0080;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.modal-content {
  background: #1a1a1a; /* Solid dark background */
  border-radius: 20px;
  padding: 1.5rem;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

#modal-image {
  max-width: 100%;
  max-height: 40vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 1rem auto;
  border-radius: 10px;
  display: block;
  border: 2px solid #ff0080;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
}

.theatre-image {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #ff0080;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.modal-content ul {
  list-style: none;
  margin: 1rem 0;
  text-align: left;
}

.modal-content ul li {
  margin: 0.5rem 0;
  font-size: 1rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.modal-content p {
  font-size: 1.2rem;
  margin: 1rem 0;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.modal-content button {
  margin: 0.5rem;
}

/* Services Section */
.services {
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 1; /* Ensure it’s above video */
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.inclusions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  margin: 20px 0;
}

.inclusion-item {
  background: #1a1a1a; /* Solid dark background */
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inclusion-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}

.inclusion-item p {
  margin: 10px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.inclusion-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.inclusion-item:hover img {
  opacity: 0.8;
}

.inclusion-item:hover p {
  color: #ff00ff;
}

/* Additional Info */
.additional-info {
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 1; /* Ensure it’s above video */
}

.celebration-text p {
  font-size: 1.2rem;
  color: #bbb;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

/* Booking Form */
.booking-form {
  background: #1a1a1a; /* Solid dark background */
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.booking-form label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff; /* White color for labels */
  display: block; /* Ensure label takes full width */
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.bookings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.bookings-content {
  /* background-color: white; */
  padding: 20px;
  border-radius: 5px;
  max-height: 80vh;
  overflow-y: auto;
}

.neon-btn {
  padding: 10px 20px;
  /* background-color: #ff00ff; */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* .neon-btn:hover {
  /* background-color: #ff00ff; */
/* } */

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
  font-size: 16px;
}

.booking-form input::placeholder,
.booking-form select::placeholder,
.booking-form textarea::placeholder {
  color: #999; /* Placeholder color */
  font-style: italic;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #ff0080; /* Neon pink accent */
  box-shadow: 0 0 5px rgba(255, 0, 128, 0.5);
}

.booking-form textarea {
  min-height: 100px; /* Suitable height for special request textarea */
  resize: vertical; /* Allow vertical resizing only */
}

/* Add-Ons Section */
.add-ons-section {
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 1; /* Ensure it’s above video */
}

.add-ons-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.add-ons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.add-on-item {
  background: #1a1a1a; /* Solid dark background */
  padding: 1rem;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
}

.add-on-item img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.quantity-selector button {
  background: #ff0080;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.quantity-selector span {
  font-size: 1.2rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.customization textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
}

.food-addons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.food-category {
  background: #2a2a2a; /* Solid dark background */
  padding: 1rem;
  border-radius: 10px;
}

.food-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.food-item input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
}

/* Booking Summary */
.booking-summary {
  background: #1a1a1a; /* Solid dark background */
  padding: 1rem;
  border-radius: 10px;
  max-width: 500px;
  margin: 2rem auto;
  text-align: left;
}

.booking-summary h2,
.booking-summary h3 {
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.booking-summary p {
  margin: 0.5rem 0;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

/* Payment Section */
.payment-section {
  background: #1a1a1a; /* Solid dark background */
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 2rem auto;
}

.payment-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.coupon-section {
  margin: 1rem 0;
  text-align: center;
}

.coupon-section input {
  padding: 10px;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
  margin-right: 0.5rem;
}

.total-price {
  text-align: center;
  margin: 1rem 0;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.instructions ol {
  margin-left: 1.5rem;
}

.instructions ol li {
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.terms-agreement {
  margin: 1rem 0;
  text-align: center;
}

.terms-agreement label {
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.payment-methods {
  margin: 2rem 0;
  text-align: center;
}

.payment-option {
  margin: 1rem 0;
}

.payment-option label {
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.qr-code {
  width: 150px;
  margin: 0.5rem auto;
  display: block;
}

.payment-numbers {
  margin-top: 0.5rem;
}

.payment-numbers p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.payment-numbers img {
  width: 20px;
  height: 20px;
}

/* Themes Section */
#theme-details-form {
  margin: 20px 0;
  padding: 20px;
  background: rgba(
    255,
    255,
    255,
    0.1
  ); /* Semi-transparent background to match overlay */
  border-radius: 8px;
  color: #fff; /* White text to match the theme */
  text-align: center;
}

#theme-details-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff; /* White color for the title */
}

#theme-specific-fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#theme-specific-fields label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff; /* White color for labels */
}

#theme-specific-fields input[type="text"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
  font-size: 16px; /* Updated to 16px as requested (assuming '16p' was a typo for '16px') */
}

#theme-specific-fields input[type="text"]::placeholder {
  color: #999; /* Placeholder color */
  font-style: italic;
}

#theme-specific-fields input[type="text"]:focus {
  outline: none;
  border-color: #ff00ff; /* Matching the border color on focus */
  box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

#theme-specific-fields br {
  display: none; /* Remove <br> tags as we're using flexbox for spacing */
}
.themes-section {
  padding: 3rem 0;
  position: relative;
  z-index: 1; /* Ensure it’s above video */
}

.themes-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.theme-card {
  background: #1a1a1a; /* Solid dark background */
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.theme-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.theme-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  display: block;
}

.theme-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.theme-card p {
  font-size: 0.9rem;
  color: #bbb;
  flex-grow: 1;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.theme-details-form {
  background: #1a1a1a; /* Solid dark background */
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  margin: 2rem auto;
}

.theme-details-form h3 {
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.theme-details-form input,
.theme-details-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
}

/* Footer */
footer {
  background: #1a1a1a; /* Solid dark background */
  padding: 2rem 0;
  margin-top: 3rem;
  position: relative;
  z-index: 1; /* Ensure it’s above video */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.footer-section:hover {
  color: #ff0080;
}

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

.footer-section ul li {
  margin: 0.5rem 0;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.footer-links a {
  margin: 0 0.5rem;
  color: #bbb;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Login/Signup Form */
.login-form {
  background: #1a1a1a; /* Solid dark background */
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  margin: 3rem auto;
  text-align: center;
}

.login-form h2 {
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
}

.login-form p {
  margin-top: 1rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.login-form a {
  color: #ff0080;
  text-decoration: underline;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.login-form a:hover {
  color: #ff00ff;
}

/* Confirmation Pop-up */
.confirmation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirmation-content {
  background: #1a1a1a; /* Solid dark background */
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 20px #ff0080;
}

.confirmation-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8); /* For readability */
}

.confirmation-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

.confirmation-content button {
  background: #ff0080;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* For readability */
}

#login-form {
  border: 2px solid #ff00ff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff00ff;
}

#signup-form {
  border: 2px solid #ff00ff;
  padding: 15px;
  border-radius: 8px;
}

/* Styling for signup form inputs */
#signup-name,
#signup-email,
#signup-phone,
#signup-password {
  border: 2px solid;
  box-shadow: 0 0 8px;
  padding: 12px;
  background: #1a1a1a;
  color: #fff;
}

/* Styling for login form inputs */
#login-email,
#login-password {
  border: 2px solid;
  padding: 12px;
  background: #1a1a1a;
  color: #fff;
}

/* Gallery Styles (Merged from gallery.css) */
h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #ff0080;
  font-size: 3rem;
  text-shadow: 0 0 20px #ff00ff, 2px 2px 5px rgba(0, 0, 0, 0.8);
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
  border-bottom: 2px solid #ff0080;
  padding-bottom: 10px;
  transition: color 0.3s ease;
  text-shadow: 0 0 15px #ff00ff, 1px 1px 4px rgba(0, 0, 0, 0.8);
}

h2:hover {
  color: #ff0080;
}

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

.gallery-item {
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 128, 0.3);
  padding: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  opacity: 0.8;
}

.gallery-item .caption {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(255, 0, 128, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
}

.gallery-item:hover .caption {
  color: #ff00ff;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  border: 2px solid #ff0080;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.lightbox .close:hover {
  color: #ff0080;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #ffffff;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #ff0080;
}

.lightbox .prev {
  left: 10px;
}

.lightbox .next {
  right: 10px;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }

  .modal-content {
    width: 95%;
  }

  .theatre-image {
    height: 200px;
  }

  .theatre-image img {
    height: 200px;
  }

  h2#capacity {
    font-size: 1.2rem;
  }

  .inclusion-item img {
    width: 80px;
    height: 80px;
  }

  .booking-form {
    width: 95%;
  }

  header {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    background: #1a1a1a; /* Solid dark background */
    box-shadow: none;
    padding: 0.5rem 0;
  }

  .profile-dropdown {
    width: 200px;
    top: 60px;
  }

  .nav-section {
    width: 100%;
    max-width: 300px;
  }

  /* Gallery Media Queries */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .gallery-item img {
    height: 150px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }
}
