/* Global Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

  header {
  background-color: #9118A8;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.Logo {
  height: 100px;
  border-radius: 8px;
  flex-shrink: 0;
}

.header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Main Title */
header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  white-space: nowrap;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* City Name */
header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #E0AE57; /* mustard gold for visibility */
  margin: 0;
  white-space: nowrap;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

nav {
  margin-left: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #E0AE57;
}

.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}


/* MOBILE STYLES */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .Logo {
    height: 50px;
  }

  header h1 {
    font-size: 1.4rem;
    width: 100%;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
  }

  nav {
    width: 100%;
    order: 3;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    background-color: #9118A8;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    text-align: left;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
  }
}
/* === HERO SECTION STYLES === */
.hero-section {
  position: relative;
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 2rem;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  z-index: 1;
  max-width: 800px;
}

.overlay h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.overlay .highlight {
  color: #9118A8;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2);
}

.overlay p {
  font-size: 1.1rem;
  margin-top: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn-purple {
  background-color: #9118A8;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-purple:hover {
  background-color: #7e1293;
}

.btn-instagram {
  background: white;
  color: #9118A8;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-instagram i {
  font-size: 1.2rem;
}

/* Call-to-action button */
.cta-button {
  background-color: #E0AE57;
  color: #9118A8;
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #c7953a;
  color: white;
}

/* === MOBILE RESPONSIVE QUERIES === */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    height: auto;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .overlay {
    max-width: 100%;
    padding: 1rem 0;
  }

  .overlay h1 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .overlay .highlight {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-purple,
  .btn-instagram {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .overlay h1 {
    font-size: 1.6rem;
  }

  .overlay .highlight {
    font-size: 1.6rem;
  }

  .overlay p {
    font-size: 0.95rem;
  }

  .btn-purple,
  .btn-instagram {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}


.why-choose-us {
  background-color: #f9f4fd;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 5px solid #f0e1fa;
  
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #9118A8;
  margin-bottom: 0.5rem;
}

.why-choose-us .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
}

.feature-grid {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.feature-item {
  flex: 1 1 300px;
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(145, 24, 168, 0.3);
}

.feature-item img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.5rem;
  color: #9118A8;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 1rem;
  color: #333;
}

.highlight-section {
  background-color: #fff;
  padding: 4rem 2rem;
  border-top: 5px solid #f0e1fa;
}

.highlight-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.highlight-text {
  flex: 1 1 500px;
  padding: 1rem;
  text-align: center;
}

.highlight-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.highlight-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.highlight-image {
  flex: 1 1 500px;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.highlight-image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.purple {
  color: #9118A8;
  font-weight: bold;
}

.btn-purple {
  display: inline-block;
  background-color: #9118A8;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-purple:hover {
  background-color: #6f1282;
}


.our-screens {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  border-top: 5px solid #f0e1fa;
}

.our-screens h2 {
  font-size: 2rem;
  color: #9118A8;
  margin-bottom: 40px;
  font-weight: 700;
}

.screens-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.screen-card {
  background-color: #f3f3f3;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(145, 24, 168, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(145, 24, 168, 0.2);
}

.screen-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.screen-card h3 {
  font-size: 1.4rem;
  margin: 15px 0 5px;
  color: #9118A8;
}

.screen-card p {
  padding: 0 15px 20px;
  color: #333;
  font-size: 0.95rem;
}

.things-to-note {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 5px solid #f0e1fa;
}

.things-to-note h2 {
  font-size: 2.5rem;
  color: #9118A8;
  margin-bottom: 2rem;
}

.notes-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: nowrap; /* Force single row */
  overflow-x: auto;   /* Allow scroll on smaller screens */
  padding: 1rem 0;
}

.note-card {
  flex: 0 0 220px;
  background-color: #f9f4fd;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(145, 24, 168, 0.1);
  transition: transform 0.3s ease;
}

.note-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(145, 24, 168, 0.15);
}

.note-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.note-card h3 {
  font-size: 1.2rem;
  color: #9118A8;
  margin-bottom: 0.5rem;
}

.note-card p {
  font-size: 0.95rem;
  color: #333;
}

.site-footer {
  background-color: #1f1b2e;
  color: #f0e1fa;
  padding: 3rem 2rem 1rem;
  font-family: 'Poppins', sans-serif;
}

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

.footer-brand {
  flex: 1 1 250px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #ccc;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  color: #E0AE57;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: #f0e1fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #E0AE57;
}

.footer-contact p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-socials a {
  color: #f0e1fa;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #E0AE57;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.location-section {
  background-color: #f9f4fd;
  padding: 4rem 2rem;
  text-align: center;
}

.location-section h2 {
  font-size: 2.5rem;
  color: #9118A8;
  margin-bottom: 1rem;
}

.location-section p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(145, 24, 168, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.about-us {
  padding: 4rem 2rem;
  background-color: #f9f4fd;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(145, 24, 168, 0.2);
}

.about-text {
  flex: 1 1 500px;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #9118A8;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-text .btn-purple {
  margin-top: 1rem;
  display: inline-block;
}

.gallery-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #9118A8;
  margin-bottom: 0.5rem;
}

.gallery-header p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(145, 24, 168, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(145, 24, 168, 0.25);
}

.addons-section {
  padding: 40px 20px;
  background: #fefefe;
}

.addons-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111;
}

.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.addon-item {
  text-align: center;
  width: 160px;
}

.addon-item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: transform 0.3s ease;
}

.addon-item img:hover {
  transform: scale(1.05);
}

.addon-item h3 {
  margin-top: 10px;
  font-size: 16px;
  color: #222;
}

.addon-item p {
  margin-top: 4px;
  color: #555;
  font-weight: 600;
}

/* Reviews Section */
#reviews {
  background-color: #f8f8f8;
  padding: 60px 20px;
  border-top: 5px solid #f0e1fa;
}

#reviews h2 {
  font-size: 2.2rem;
  text-align: center;
  color: #9118A8;
  margin-bottom: 30px;
  font-weight: 700;
}

#reviews .elfsight-app-035fce8d-245f-4c64-a218-c5718e64b39c {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  background: #fff;
}

/* Default nav style for desktop */
.mobile-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #9118A8;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1001;
}

/* Mobile-specific nav */
@media (max-width: 768px) {
  .mobile-nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    border: 1px solid #ccc;
    display: none;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}




/* Medium screens (tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  header {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
  }
}

/* Why choose Us */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 1.5rem;
  }

  .feature-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    flex: 1 1 80%;
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }

  .why-choose-us h2 {
    font-size: 2rem;
  }

  .why-choose-us .subtitle {
    font-size: 1rem;
  }

  .feature-item h3 {
    font-size: 1.25rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  #reviews {
    padding: 40px 10px;
  }

  #reviews h2 {
    font-size: 1.7rem;
  }
}

/* Book Now  */

.booking-cards {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
      padding: 2rem;
    }

    .theatre-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      padding: 1.5rem;
      max-width: 350px;
      text-align: center;
    }

    .theatre-card img {
      width: 100%;
      border-radius: 10px;
    }

    .price {
      font-weight: bold;
      color: #9118A8;
    }

    .slot-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin: 1rem 0;
    }

    .slot-buttons button {
      padding: 0.5rem 1rem;
      border-radius: 20px;
      background: #eaeaea;
      color: #333;
      border: none;
      font-weight: bold;
      cursor: default;
      opacity: 1;
      text-decoration: none;
    }

    .slot-buttons button:disabled {
      pointer-events: none;
    }

    .proceed-btn {
      background-color: #9118A8;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      border: none;
      font-weight: bold;
      cursor: pointer;
    }

    .proceed-btn:hover {
      background-color: #7a137a;
    }

    /* Modal styles */
.modal {
  display: none; /* Hidden initially */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex; /* ✅ this overrides display: none */
}


    .modal-content {
      background-color: #fff;
      padding: 25px 30px;
      border-radius: 8px;
      width: 90%;
      max-width: 400px;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .close {
      position: absolute;
      top: 12px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      color: #aaa;
      cursor: pointer;
    }

    .close:hover {
      color: #000;
    }

    /* Form styles */
    #bookingForm input, #bookingForm button {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 16px;
      box-sizing: border-box;
    }

    #bookingForm button {
      background-color: #9118A8;
      color: white;
      border: none;
      cursor: pointer;
      font-weight: 600;
    }

    #bookingForm button:hover {
      background-color: #7a137a;
    }

    .booknow-header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: white;
  color: #9118A8 ;
}

.booknow-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.booknow-header p {
  font-size: 1.2rem;
  color: #444;
}

.call-button {
  display: block;
  margin: 12px auto 20px auto; /* 20px bottom margin */
  padding: 0.5rem 1.2rem;
  background-color: #7a137a;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  width: fit-content;
  border: none;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #c9973c;
}

/* Responsive styles for Book Now section */
@media (max-width: 900px) {
  .booking-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .theatre-card {
    max-width: 90%;
  }
}

/* Smaller screens like mobiles */
@media (max-width: 480px) {
  .theatre-card {
    padding: 1rem;
  }

  .slot-buttons button {
    padding: 0.4rem 0.8rem;
    font-size: 14px;
  }

  .proceed-btn {
    padding: 0.6rem 1.2rem;
    font-size: 14px;
  }

  /* Modal content narrower on mobile */
  .modal-content {
    width: 95%;
    padding: 20px;
  }

  /* Book on Call button smaller and fixed bottom */
  .call-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  background-color: #E0AE57;
  color: #9118A8;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  max-width: 140px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


.header-call:hover {
  background-color: #ffce65;
}

@media (max-width: 768px) {
  .header-text {
    width: 100%;
    align-items: flex-start; /* Align left */
  }

  .header-call {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}




