 /* Reset and base styles */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-wrapper {
  max-width: 1215px;
  margin: 0 auto;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff !important;
  background-color: #141414;
}

#calendar-date-selection a {
  color: #E65800;
}

#room-nav-wrap {
  color: #fff
}

/* Header styles */
header {
  background-color: #000;
  padding: 1rem;
}

/* Header styles */
.site-header {
  background-color: #000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo a {
  color: #E65800;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
}

.search-bar {
  flex-grow: 1;
  max-width: 400px; /* Adjust this value to control the search bar width */
  margin: 0 2rem;
}

.search-form {
  display: flex;
  background-color: #2c2c2c;
  border-radius: 20px;
  overflow: hidden;
}

.search-field {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 0.9rem; /* Adjust font size if needed */
}

.search-submit {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul.header-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul.header-menu li {
  margin-left: 1rem;
}

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

/* Placeholder styling */
.search-field::placeholder {
  color: #888;
}

/* Focus styles */
.search-field:focus {
  outline: none;
}

.search-form:focus-within {
  box-shadow: 0 0 0 2px #E65800;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  max-height: 500px; /* Adjust this value as needed */
}

.slide {
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 500px; /* Same as hero-slider max-height */
  object-fit: cover; /* This will cover the area without stretching */
}

/* Rest of your CSS remains the same */

/* Date Selector */
/* Date Selector */
.date-selector {
  background-color: #141414;
  padding: 1rem 0;
  overflow-x: auto;
  margin-top: 40px;;
}

.date-slider {
  display: flex;
  justify-content: flex-start;
  padding: 0 1rem;
}

.date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-right: 0.5rem;
  min-width: 100px;
  cursor: pointer;
  border: 1px solid #333;
}

.date-item.active {
  background-color: #E65800;
  border-color: #E65800;
}

.date-item .day {
  font-weight: bold;
  font-size: 0.9rem;
}

.date-item .date {
  font-size: 0.8rem;
  color: #999;
}

.date-item.active .date {
  color: #fff;
}

/* Movie List */
/* Movie List */
.movie-list {
  padding: 2rem 1rem;
}

.movie-item {
  display: flex;
  margin-bottom: 2rem;
  background-color: #2c2c2c;
  border-radius: 5px;
  overflow: hidden;
  max-height: 550px;;
  
}

.movie-poster {
  flex: 0 0 350px;
  overflow: hidden;
}

.movie-poster img {
  width: auto;
  height: 100%;
  display: block;
}

.movie-info {
  flex: 1;
  padding: 1rem;
}

.movie-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

h1 {
  margin: 40px 0px;
  font-size: 2rem;
}

.movie-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.movie-meta p {
  margin-bottom: 0.25rem;
}

.showtime-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.showtime-buttons button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #141414;
  border: 1px solid #444;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

.showtime-buttons button:hover {
  background-color: #E65800;
}


.site-footer {
  background-color: #1D1F2A;
  color: #fff;
  padding: 40px 0;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-logo a {
  color: #E65800;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: #fff;
}

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

.footer-nav li {
  margin-bottom: 10px;
}

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

.footer-right .payment-methods {
  max-width: 200px;
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-nav, .footer-right {
      margin-top: 30px;
  }
}


.seatreg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.showtime-button {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  background-color: #E65800;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.showtime-button:hover {
  background-color: #ff6a00;
}


.seatreg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.seatreg-container iframe {
  width: 100%;
  height: 800px;
  border: none;
  overflow: auto;
}


.booking-details-container {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.booking-info {
  flex: 1;
  padding-right: 2rem;
}

.booking-info h1 {
  color: #333;
  margin-bottom: 1rem;
}

.booking-info p {
  color: #333;
  margin-bottom: 0.5rem;
}

.qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.qr-code img {
  margin-bottom: 1rem;
}

.qr-code p {
  text-align: center;
  color: #666;
}


.booking-details-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.booking-info {
  flex: 0 0 300px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.booking-info h1 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.5rem;
}

.booking-info p {
  margin-bottom: 0.5rem;
}

.booking-info span {
  color: #666;
}

.tickets-container {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: 2rem;
}

.ticket {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  margin: 0 1rem 1rem 0;
  width: calc(50% - 1rem);
  text-align: center;
}

.ticket .movie-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.ticket .date {
  color: #666;
  margin-bottom: 1rem;
}

.ticket img {
  display: block;
  margin: 0 auto 1rem;
}

.ticket .seat-info {
  display: flex;
  justify-content: space-around;
  color: #666;
}

.ticket .seat-info span {
  display: inline-block;
}

@media (max-width: 1024px) {
  .booking-details-container {
      flex-direction: column;
  }

  .booking-info {
      margin-bottom: 2rem;
  }

  .tickets-container {
      margin-left: 0;
  }

  .ticket {
      width: 100%;
      margin-right: 0;
  }
}


#booking-form {
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
  margin: 40px auto;
  width: 100%;
  height: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.booking-form-container h2 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
  border-color: #E65800;
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 0.5rem;
}

.checkbox-group label {
  font-weight: normal;
  color: #333;
}

.submit-btn {
  background-color: #E65800;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

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

@media (max-width: 768px) {
  .booking-form-container {
      padding: 1.5rem;
      margin: 1rem;
  }
}
.verify-ticket-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.verify-ticket-container.success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.verify-ticket-container.error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}


.event-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.event-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.event-poster {
  flex: 0 0 300px;
}

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

.event-info {
  flex: 1;
}

.event-info h1 {
  margin-bottom: 20px;
}

.event-meta {
  margin-bottom: 20px;
}

.event-meta p {
  margin-bottom: 10px;
}

.event-description {
  margin-bottom: 20px;
}

.showtime-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showtime-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E65800;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.showtime-button:hover {
  background-color: #d65000;
}

@media (max-width: 768px) {
  .event-item {
      flex-direction: column;
  }

  .event-poster {
      flex: 0 0 auto;
      margin-bottom: 20px;
  }
  .header-container {
    flex-direction: column;
    row-gap: 10px;
  }
  .movie-poster {
    flex: 0 0 0px;
  }
  .site-wrapper {
    max-width: 100%;
  }
  .slide img {
    max-width: 100%;
  }
  .slide-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
