/*
 * Kanha Library - Modern CSS Overhaul
 * Designed for a clean, aesthetic, and responsive user experience.
 */

/* 1. FONT IMPORT & GLOBAL SETUP
/* ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* CSS Variables for easy theme management */
:root {
  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --accent-color: #fe5e36;
  --accent-hover-color: #feb47b;
 --background-dark:linear-gradient(-80deg, #12C2E9 , #F64F59);
  --background-light: #1e1e1e;
  --text-primary: #f5f5f5;
  --text-secondary: #ffffff;
  --border-color: rgba(255, 255, 255, 0.1);
  --success-color: #4CAF50;
  --danger-color: #f44336;
  --warning-color: #ffa726;
  --info-color: #8e44ad;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(0, 0, 0, 0.25);
  --welcome-text-gradient: linear-gradient(100deg,#6a11cb, #2575fc );
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



body {
  font-family: 'Poppins', sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* 2. HEADER & NAVIGATION
/* ========================================================================== */

header {
  background: rgba(18, 18, 18, 0.8); /* Slightly transparent dark background */
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border-bottom: 1px solid var(--border-color);
  animation: slideDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}

.logo {
  height: 45px;    /* adjust as needed */
  width: 45px;     /* make it square so circle looks perfect */
  border-radius: 50%;
  object-fit: cover; /* ensures image fills the circle nicely */
  border: 2px solid white; /* optional: adds border */
}

header h2 {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 5px 0;
}

header nav a:hover,
header nav a.active {
  color: var(--text-primary);
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

#user-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

#user-section button {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-left: 10px;
}

#user-section button:hover {
    background-color: var(--accent-color);
    color: white;
}


/* 3. GENERAL CONTENT & SECTIONS
/* ========================================================================== */

section {
  padding: 80px 5%; /* Use percentage for responsive padding */
  max-width: 1200px;
  margin: 0 auto;
}

section h1, section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

section h1 {
    font-size: 2.8rem;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

section h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
}
section h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
}

.welcome-text {
  padding: 20px;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(
    270deg,
    #ff0080,
    #00ffff,
    #ffcc00,
    #00ff00,
    #ff0080
  );
  background-size: 1000% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flowingGradient 8s linear infinite;
}

@keyframes flowingGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.credit-text {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  padding: 0.5rem;
  background-color: #000;
}

/* 4. HOME SECTION & CAROUSEL
/* ========================================================================== */

.home {
  padding-top: 5px;

}

/* Carousel container */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 1rem auto;
  overflow: hidden;
  border-radius: 20px;
  /* stable responsive height: min 220px, preferred 40vh, max 450px */
  height: clamp(220px, 40vh, 450px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  background: #000; /* fallback while images load */
}

/* Track and slides */
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.22,.9,.26,1);
  will-change: transform;
  height: 100%;
}

.carousel-slide {
  flex: 0 0 100%; /* each slide is full width of carousel */
  height: 100%;
  display: block;
}

/* Images: fill slide and cover */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* removes small baseline gaps */
  user-select: none;
  -webkit-user-drag: none;
}

/* Controls */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.carousel-button:focus { outline: 2px solid var(--primary-color); }

.carousel-button.prev { left: 12px; }
.carousel-button.next { right: 12px; }

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap: 8px;
  z-index: 30;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.carousel-indicators button[aria-current="true"] {
  background: linear-gradient(45deg,var(--primary-color),var(--secondary-color));
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* Pause animation visually on hover (JS will handle pause) */
.carousel:hover .carousel-button { background: rgba(0,0,0,0.65); }

/* Prevent lateral scroll issues on smaller breakpoints */
@media (max-width: 768px) {
  .carousel { height: clamp(180px, 35vh, 300px); border-radius: 12px; }
  .carousel-button { width:36px; height:36px; }
}
/* Slightly taller on laptop / desktop */
@media (min-width: 1024px) {
  .carousel {
    height: clamp(480px, 55vh, 1000px);
  }
}





/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}

/* 5. SEAT AVAILABILITY & LAYOUT
/* ========================================================================== */

#calendar-date {
    display: block;
    margin: 0 auto 2rem auto;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--background-light);
    color: var(--text-primary);
    max-width: 300px;
    text-align: center;
}

.seat-layout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto;
  gap: 20px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 100%;
  overflow-x: auto;
}

.seat-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.seat-box {
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 12px 8px;
  margin: 5px;
  display: inline-block;
  min-width: 50px;
  text-align: center;
  border-radius: 8px;
  cursor: default;
  box-shadow: 0 4px 8px var(--shadow-light);
}

.seat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px var(--shadow-light);
}

.fans-top, .fan-bottom {
  display: flex;
  gap: 100px;
  justify-content: center;
  width: 100%;
}

.fan-icon, .ac-icon {
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
  color: var(--text-secondary);
}

.legend-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 2rem;
}

.legend-item {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px var(--shadow-light);
}

/* Seat status colors */
.legend-available, .seat-box[style*="background-color: white;"] { background-color: #e0e0e0; color: #333; }
.legend-full-booked, .seat-box[style*="background-color: red;"] { background-color: var(--danger-color); color: white; }
.legend-am-booked, .seat-box[style*="background-color: orange;"] { background-color: var(--warning-color); color: white; }
.legend-pm-booked, .seat-box[style*="background-color: purple;"] { background-color: var(--info-color); color: white; }


/* 6. BUTTONS & INTERACTIVE ELEMENTS
/* ========================================================================== */
.book-now-btn {
  padding: 16px 50px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;

  /* Flashy flowing animation */
  background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet, red);
  background-size: 1000% 100%;
  animation: flowingColors 5s linear infinite;

  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Push button down to avoid overlap */
  margin-top: 50px;
  z-index: 1;
  position: relative;
}

.book-now-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px white;
}

@keyframes flowingColors {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}



.install-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto;
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.install-app-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.install-icon {
  width: 24px;
  height: 24px;
}

/* 7. MODAL & BOOKING CARDS
/* ========================================================================== */

.modal {
  display: flex; /* Use flex for centering */
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
  background: var(--background-light);
  padding: 2rem;
  width: 90%;
  max-width: 450px;
  border-radius: 16px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.modal:not(.hidden) .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

#close-modal {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}

#close-modal:hover {
    background: var(--accent-hover-color);
}

#my-bookings {
  background-color: rgba(255, 255, 255, 0.05); /* Light frosted layer */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


#booking-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.booking-card {
  background: var(--background-dark);
  color: var(--text-primary);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px var(--shadow-color);
}

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

.extend-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 20px;
  width: 100%;
  transition: background-color 0.3s;
}

.extend-btn:hover {
  background-color: var(--primary-color);
}


/* 8. ABOUT, CONTACT & FOOTER
/* ========================================================================== */

#about ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

#about li {
    margin-bottom: 0.5rem;
}

#about p, #contact p {
    max-width: 700px;
    margin: 0 auto 1rem auto;
    text-align: center;
    color: var(--text-secondary);
}

#contact iframe {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    filter: invert(90%) hue-rotate(180deg); /* Modern dark mode map */
}

footer {
  background: #000;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}


/* 9. ANIMATIONS
/* ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Base section style */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  border-radius: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}


/* About Section - glassmorphism with gentle pulse */
#about {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  color: #222;
  animation: pulseGlow 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(74, 20, 140, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(74, 20, 140, 0.7);
  }
}



/* Footer - subtle fade and slight scale */
footer {
  background: #111;
  color: #bbb;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  animation: footerFadeScale 2s ease forwards;
}

@keyframes footerFadeScale {
  from { opacity: 0; transform: scale(0.95);}
  to { opacity: 1; transform: scale(1);}
}


.owner-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(145deg, #fff8f0, #ffe6d1, #ffd4b8, #ffeedd);

  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: 40px auto;
  flex-wrap: wrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.son-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(
  145deg,
  #fff8f5,  /* soft cream-white */
  #ffe8ec,  /* pale blush pink */
  #ffdce4,  /* muted pastel pink */
  #fff0f4   /* light rose tint */
);



  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: 40px auto;
  flex-wrap: wrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.owner-image {
  width: 240px; /* bigger image */
  aspect-ratio: 9 / 16;
  background-image: url('images/papa.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  animation: floatImage 4s ease-in-out infinite; /* floating effect */
}
.son-image {
  width: 240px; /* bigger image */
  aspect-ratio: 9 / 16;
  background-image: url('images/chinmay.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  animation: floatImage 4s ease-in-out infinite; /* floating effect */
}

.owner-info {
  flex: 1;
  min-width: 250px;
}

.owner-info h3 {
  margin-bottom: 12px;
  font-size: 2rem; /* slightly bigger */
  font-weight: 600;
  background: linear-gradient(90deg, #4a148c, #7b3ff3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.owner-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Image Animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  .owner-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }
  
  .owner-image {
    width: 70%;
    max-width: 280px;
  }

  .owner-info h3 {
    font-size: 1.6rem;
    margin-top: 15px;
  }

  .owner-info p {
    font-size: 1rem;
  }
}


/* 11. Reviews
/* ========================================================================== */
:root {
  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --accent-color: #2f7aea;
  --accent-hover-color: #feb47b;
  --background-dark: linear-gradient(-80deg, #12C2E9, #F64F59);
  --background-light: #1e1e1e;
  --text-primary: #f5f5f5;
  --text-secondary: #ffffff;
  --border-color: rgba(255, 255, 255, 0.1);
  --success-color: #4CAF50;
  --danger-color: #f44336;
  --warning-color: #ffa726;
  --info-color: #8e44ad;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(0, 0, 0, 0.25);
  --welcome-text-gradient: linear-gradient(100deg, #6a11cb, #2575fc);
}

#google-reviews-container {
  max-width: 1000px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  background: var(--background-dark);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-light);
  overflow: hidden;
  color: var(--text-primary);
}

#google-reviews-container h3 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
}
#google-reviews-container h3 span {
  color: var(--warning-color);
  font-size: 1.2rem;
  margin-left: 8px;
}

/* Slider wrapper */
.reviews-row {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Review card */
.review {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #ffffff; /* White card for contrast */
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 12px var(--shadow-light);
  transition: transform 0.3s ease;
  color: #333; /* Dark text inside cards */
}
.review:hover {
  transform: scale(1.05);
}
.review strong {
  color: #333;
  font-size: 1rem;
}
.review-stars {
  color: var(--warning-color);
  font-size: 0.9rem;
}
.review-text {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #555;
}

/* Button */
.review-button {
  display: block; /* Make it block-level so margin auto works */
  margin: 15px auto 0; /* Top margin 15px, auto center horizontally */
  padding: 12px 17px; /* Smaller size */
  background-color: var(--accent-color);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.review-button:hover {
  background-color: var(--accent-hover-color);
}


review {
  flex: 0 0 calc((100% - 40px) / 3);
}

/* Tablet: 2 reviews per row */
@media (max-width: 768px) {
  .review {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  #google-reviews-container {
    padding: 15px;
  }
}

/* Mobile: 1 review per row */
@media (max-width: 480px) {
  .reviews-row {
    gap: 15px;
  }
  .review {
    flex: 0 0 100%;
  }
  #google-reviews-container {
    padding: 12px;
  }
  .review-button {
    width: 100%;
    font-size: 0.8rem;
    padding: 10px;
  }
}


/* 10. RESPONSIVE DESIGN
/* ========================================================================== */
@media (max-width: 768px) {
  /* HEADER */
  header {
    padding: 0.7rem;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap; /* allow logo/nav to stack if needed */
  }

  header nav {
    gap: 0.5rem;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch; /* smoother scroll on mobile */
  }

  header nav a {
    flex-shrink: 0;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
  section {
    padding: 30px 5%;
  }

  section h1 { font-size: 2.2rem; }
  section h2 { font-size: 1.8rem; }
  .welcome-text { font-size: 1.5rem; }




 




  .seat-layout-container {
    transform: scale(0.45);
    transform-origin: left;
    width: 230%;
    
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
  }

  .seat-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .row {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 12px;
  }

  .seat-box {
    width: 50px;
    height: 55px;
    font-size: 0.90rem;
  }

  .fan-icon, .ac-icon {
    font-size: 13px;
    min-width: 40px;
  }

  .fans-top, .fan-bottom {
    gap: 60px;
  }



  

  .book-now-btn {
    padding: 14px 35px;
    font-size: 1rem;
  }

  .modal-content {
    width: 90%;
    padding: 1.5rem;}

  #user-section button {
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
  }

  #user-section span {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}

