/* reset & base */
* { margin:0; padding:0; box-sizing:border-box; }

/* HAMBURGER MENU POSITIONING VARIABLES - MODIFY THESE VALUES TO ADJUST POSITION */
:root {
  /* Flexbox order (1 = first, 2 = second, etc.) */
  --hamburger-order: 1;
  
  /* Margin values */
  --hamburger-margin-right: auto;
  --hamburger-margin-left: 0px;
  --hamburger-margin-top: 10px;
  --hamburger-margin-bottom: 0;
  
  /* Padding */
  --hamburger-padding: 6px 12px;
  
  /* Position and coordinates */
  --hamburger-position: static;
  --hamburger-top: auto;
  --hamburger-left: -120px;
  --hamburger-right: auto;
  --hamburger-bottom: auto;
  
  /* Transform (for rotation, scaling, etc.) */
  --hamburger-transform: none;
  
  /* HAMBURGER MENU ANIMATION VARIABLES */
  --menu-slide-direction: left; /* left, right, top, bottom */
  --menu-slide-distance: -100%; /* Distance to slide from */
  --menu-item-slide-distance: -50px; /* Distance for individual items */
  --menu-animation-duration: 0.8s; /* Animation duration */
  
  /* HAMBURGER MENU BUTTON DIMENSIONS */
  --menu-button-width: 100px; /* Width of each button */
  --menu-button-height: 30px; /* Height of each button */
  --menu-button-padding: 2px 2px; /* Internal padding */
  --menu-dropdown-width: 200px; /* Width of the dropdown menu */
  
  /* BOOK A TABLE BUTTON POSITIONING VARIABLES - MODIFY THESE VALUES TO ADJUST POSITION */
  /* Flexbox order (1 = first, 2 = second, etc.) */
  --book-button-order: 3;
  
  /* Margin values */
  --book-button-margin-right: -35px;
  --book-button-margin-left: auto;
  --book-button-margin-top: 0;
  --book-button-margin-bottom: 0;
  
  /* Padding */
  --book-button-padding: 14px 28px;
  
  /* Position and coordinates */
  --book-button-position: static;
  --book-button-top: auto;
  --book-button-left: auto;
  --book-button-right: auto;
  --book-button-bottom: auto;
  
  /* Transform (for rotation, scaling, etc.) */
  --book-button-transform: none;
}

body { 
  font-family: 'Segoe UI', sans-serif; 
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.01) 100%);
  min-height: 100vh;
}

/* General responsive image and video scaling */
img, video {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

/* Responsive logo styles */
.responsive-logo {
  /* Mobile styles (default) */
  width: min(180px, 90vw);
  max-width: 180px;
  padding-top: 15px;

}

/* Desktop styles */
@media screen and (min-width: 768px) {
  .responsive-logo {
    width: min(380px, 90vw);
    max-width: 380px;
  }
}

/* Large desktop styles */
@media screen and (min-width: 1200px) {
  .responsive-logo {
    width: min(450px, 90vw);
    max-width: 450px;
  }
}

/* Responsive logo container spacing */
.logo-container {
  /* Mobile styles (default) */
  top: 15px;
}

/* Desktop styles - reduce distance from navigation */
@media screen and (min-width: 768px) {
  .logo-container {
    top: 5px;
  }
}

/* Large desktop styles - even closer spacing */
@media screen and (min-width: 1200px) {
  .logo-container {
    top: 0px;
  }
}

/* Desktop-first responsive design */
/* Base desktop styles */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 10;
  flex-wrap: nowrap;
  background: linear-gradient(135deg, rgba(141, 141, 141, 0.171) 0%, rgba(37, 36, 36, 0.8) 100%);
  -webkit-backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin: 20px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Ensure book button stays on the right */
.navbar .btn-book {
  order: var(--book-button-order, 3);
  margin-right: var(--book-button-margin-right, 10px);
  margin-left: var(--book-button-margin-left, auto);
  margin-top: var(--book-button-margin-top, 0);
  margin-bottom: var(--book-button-margin-bottom, 0);
  padding: var(--book-button-padding, 14px 28px);
  position: var(--book-button-position, static);
  top: var(--book-button-top, auto);
  left: var(--book-button-left, auto);
  right: var(--book-button-right, auto);
  bottom: var(--book-button-bottom, auto);
  transform: var(--book-button-transform, none);
  flex-shrink: 0;
}

/* Fixed navigation for pages that need it */
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(135deg, rgba(141, 141, 141, 0.171) 0%, rgba(37, 36, 36, 0.8) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Ensure menu page navigation gets proper styling */
.menu-page .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 0 0 20px 20px;
  z-index: 1000;
}

/* Ensure menu page content has proper spacing */
.menu-page .menu-bg {
  padding-top: 8rem !important;
}

/* Fixed navigation for other pages that need it */
.about-page .navbar,
.gallery-page .navbar,
.jobs-page .navbar,
.booking-page .navbar,
.strver-page .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 0 0 20px 20px;
  z-index: 1000;
}

/* Ensure content has proper spacing for fixed navigation */
.about-page main,
.gallery-page main,
.jobs-page main,
.booking-page main,
.strver-page main {
  padding-top: 8rem !important;
}

/* Home page specific styling (index.html) */
.home-page .navbar {
  background: transparent !important; /* Remove background */
  backdrop-filter: none !important; /* Remove backdrop filter */
  border-radius: 0 !important; /* Remove border radius */
  margin: 0 !important;
  border: none !important; /* Remove border */
  box-shadow: none !important; /* Remove box shadow */
  padding: 20px 40px !important;
  top: 30px !important; /* Move navigation bar 30px down */
}

/* Ensure home page navigation text is visible on dark background */
.home-page .nav-links a {
  color: #fff !important;
  background: transparent !important; /* Remove background */
  border: none !important; /* Remove border */
  border-radius: 0 !important; /* Remove border radius */
  box-shadow: none !important; /* Remove box shadow */
  text-decoration: none !important;
  padding: 10px 15px !important;
  transition: color 0.3s ease !important;
  font-size: 1.2rem !important; /* Increase font size */
  font-weight: 500 !important; /* Make text slightly bolder */
}

.home-page .nav-links a:hover, 
.home-page .nav-links a.active {
  color: #fff !important;
  background: transparent !important; /* Remove hover background */
  border: none !important; /* Remove hover border */
  transform: none !important; /* Remove hover transform */
  box-shadow: none !important; /* Remove hover box shadow */
  text-decoration: none !important;
}

.home-page .btn-book {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}

/* Ensure all navigation elements on home page are transparent */
.home-page .desktop-nav,
.home-page .mobile-nav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  top: 30px !important; /* Move mobile navigation 30px down */
}

.home-page .desktop-language-selector,
.home-page .mobile-language-btn {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  order: 1;
  flex-shrink: 0;
}

/* Logo image scaling - specific selectors for different contexts */
/* Navbar logo - smaller size */
.logo img,
.navbar img[src*="Logo.png"] {
  height: 50px !important;
  width: auto !important;
  max-width: auto !important;
  transition: all 0.3s ease;
}

/* Hero logo styling for larger logo images in hero sections */
.hero-logo {
  height: 150px !important;
  width: auto !important;
  max-width: auto !important;
  margin-bottom: 0.5rem !important;
  transition: all 0.3s ease;
}

/* Medium logo styling for 120px logos in other sections */
.medium-logo {
  height: 120px !important;
  width: auto !important;
  max-width: 120px !important;
  transition: all 0.3s ease;
}

/* Pizza slice image styling for strver.html - main image size for desktop */
img[src*="Slice_with_dimensions.png"] {
  max-width: 160px !important;
  height: auto !important;
  width: auto !important;
  transition: all 0.3s ease;
}

/* Pizza item images in menu cards - smaller size */
.pizza-item img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}

.logo-h {
  font-size: 2rem;
  margin-right: 4px;
  color: #e74c3c;
}

.nav-links {
  list-style: none;
  display: flex;
  position: static;
  background: transparent;
  flex-direction: row;
  gap: 30px;
  padding: 0;
  box-shadow: none;
  order: 2;
  flex: 1;
  justify-content: center;
  flex-shrink: 1;
  min-width: 0;
}

.nav-links li {
  border-bottom: none;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1.2rem; /* Increased from 0.9rem */
  transition: all 0.3s ease;
  font-weight: 600; /* Change from 300 to 600 for bold */
  letter-spacing: 1.5px;
  padding: 8px 16px;
  display: block;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(231,76,60,0.8) 0%, rgba(192,57,43,0.8) 100%);
  border-color: rgba(231,76,60,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(231,76,60,0.3);
}

/* Mobile menu toggle button - hidden by default on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 6px 12px;
  z-index: 1001;
  transition: none;
  order: 2;
  align-self: flex-end;
  margin-top: auto;
  font-size: 18px;
}

.mobile-menu-toggle svg {
  width: 30px;
  height: 20px;
  transition: none;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.mobile-menu-toggle:hover {
  transform: none;
  color: rgba(255, 255, 255, 0.9);
}

/* Rotate arrow when menu is active */
.nav-links.active + .mobile-menu-toggle,
.mobile-menu-toggle.active {
  transform: none;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

/* HERO wrapper */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/Home_page/image.jpg') center/cover no-repeat;
  opacity: 1;
  transition: none !important;
  pointer-events: none;
}

/* Hero Video Styles */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  display: block;
  transition: opacity 0.5s ease-in-out;
  transform: none !important;
  animation: none !important;
}

.hero-video.active {
  opacity: 1;
}

/* Video container */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* dark overlay to improve text/nav contrast */
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: none !important;
}

/* BOOK BUTTON */
.btn-book {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: var(--book-button-padding, 14px 28px);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600; /* Change from 400 to 600 for bold */
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.btn-book:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231,76,60,0.4);
}

/* HERO TEXT */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 100px;
  z-index: 10;
  padding: 0;
}

/* Hero Menu Button */
.hero-menu-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fcf9f9ef;
  padding: 25px 60px;
  border-radius: 1px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all 0.4s ease;
  border: none;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.hero-menu-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-menu-btn:hover::before {
  left: 100%;
}

.hero-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
}

.hero-menu-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}

.hero-menu-btn .btn-text {
  position: relative;
  z-index: 2;
}

.hero-menu-btn .arrow-icon {
  font-size: 3.5rem;
  font-weight: 300;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  color: #fff;
  line-height: 1;
  animation: textGlare 3s ease-in-out infinite 0.5s;
}

.hero-menu-btn:hover .arrow-icon {
  transform: translateY(-5px) scale(1.2);
  text-shadow: 0 0 25px rgba(255, 255, 255, 1);
  color: #fff;
  animation: textGlare 1.5s ease-in-out infinite 0.3s;
}

.hero-menu-btn .btn-text {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  text-align: center;
  animation: textGlare 3s ease-in-out infinite;
}

.hero-menu-btn:hover .btn-text {
  opacity: 1;
  transform: translateY(-2px);
  animation: textGlare 1.5s ease-in-out infinite;
}

@keyframes textGlare {
  0% {
    background: linear-gradient(90deg, transparent, transparent, transparent);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  25% {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  50% {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  75% {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  100% {
    background: linear-gradient(90deg, transparent, transparent, transparent);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.hero-content h1 {
  font-size: 4rem;
  letter-spacing: 4px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 5px;
  letter-spacing: 2px;
  line-height: 1.4;
}

/* SIMPLE SLIDER */
.slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: -80px auto 60px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

/* FOOTER */
.footer {
  background: #18120c;
  color: #d2c2a6;
  padding: 50px 0 0 0;
  font-family: 'Segoe UI', serif;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 220px;
  margin: 0 20px 40px 20px;
  min-width: 200px;
}

.footer-section h3 {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  color: #d2c2a6;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.footer-section p, .footer-section strong {
  font-size: 1rem;
  color: #d2c2a6;
  line-height: 1.7;
}

.footer-section.partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section.partner img {
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  max-width: none;
}

.footer-bottom {
  background: #6b5c4a;
  color: #e5dbcb;
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 0.95rem;
  position: relative;
  margin-top: 10px;
  width: 100%;
}

.footer-icons {
  margin-top: 10px;
}

.footer-icons a {
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.footer-icons a:hover {
  transform: scale(1.15);
}

/* ABOUT PAGE LAYOUT */
.about-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 70vh;
  background: #fff;
  padding: 60px 0 40px 0;
}

.about-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.about-text {
  flex: 1 1 400px;
  color: #4b3a1e;
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: 'Georgia', serif;
}

.about-text h2 {
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #4b3a1e;
}

.about-sub {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #bfa76a;
}

.about-image {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.lang-switcher .lang {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-weight: 600;
}

.lang-switcher .lang.active,
.lang-switcher .lang:hover {
  opacity: 1;
  color: #e74c3c;
}

/* CAREER FORM */
.career-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 70vh;
  background: #fff;
  padding: 60px 0 40px 0;
}

.career-container {
  background: #f8f5f1;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 40px 32px 32px 32px;
  max-width: 480px;
  width: 100%;
  margin: 40px auto;
}

.career-container h2 {
  text-align: center;
  color: #bfa76a;
  font-size: 2.2rem;
  margin-bottom: 28px;
  font-family: 'Georgia', serif;
}

.career-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.career-form label {
  font-weight: 600;
  color: #4b3a1e;
  margin-bottom: 4px;
}

.career-form label span {
  color: #e74c3c;
  margin-left: 2px;
}

.career-form input[type="text"],
.career-form input[type="email"],
.career-form textarea {
  padding: 10px 12px;
  border: 1px solid #d2c2a6;
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
  color: #2d1c0b;
  font-family: inherit;
  transition: border 0.2s;
}

.career-form input[type="text"]:focus,
.career-form input[type="email"]:focus,
.career-form textarea:focus {
  border: 1.5px solid #bfa76a;
  outline: none;
}

.career-form input[type="file"] {
  border: none;
  background: none;
  font-size: 1rem;
  color: #4b3a1e;
}

.career-form button {
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}

.career-form button:hover {
  background: #c0392b;
}

/* BOOKING FORM */
.booking-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #625f5d 0%, #0e0000 100%);
  padding: 20px;
  position: relative;
}

.booking-container {
  background: rgba(104, 93, 93, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.booking-container h2 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.booking-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  font-weight: 600;
  color: #c0c6c9;
  margin-bottom: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form input[type="number"],
.booking-form textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border: 2px solid #e74c3c;
  outline: none;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.booking-form button {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-form button:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.booking-info {
  text-align: center;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.booking-info p:first-child {
  margin-bottom: 8px;
  font-weight: 600;
}

.booking-info a {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.booking-info a:hover {
  color: #c0392b;
  text-decoration: underline;
}

/* Responsive scaling for different screen sizes */
@media (max-width: 1200px) {
  .logo img,
  .navbar img[src*="Logo.png"] {
    height: 55px !important;
    max-width: 55px !important;
  }
  
  .hero-logo {
    height: 180px !important;
    max-width: 180px !important;
  }
  
  .medium-logo {
    height: 110px !important;
    max-width: 110px !important;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .btn-book {
    padding: 11px 22px;
    font-size: 0.95rem;
  }
  
  /* Pizza slice image scaling - main image only */
  img[src*="Slice_with_dimensions.png"]:not(.pizza-item img) {
    max-width: 144px !important;
  }
}

@media (max-width: 1024px) {
  .logo img,
  .navbar img[src*="Logo.png"] {
    height: 50px !important;
    max-width: 50px !important;
  }
  
  .hero-logo {
    height: 160px !important;
    max-width: 160px !important;
  }
  
  .medium-logo {
    height: 100px !important;
    max-width: 100px !important;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-menu-btn {
    padding: 12px 30px;
    font-size: 1rem;
    margin-top: 25px;
    gap: 10px;
    min-width: 180px;
  }
  
  .hero-menu-btn .arrow-icon {
    font-size: 3rem;
  }
  
  .hero-menu-btn .btn-text {
    font-size: 0.75rem;
  }
  
  .btn-book {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Pizza slice image scaling - main image only */
  img[src*="Slice_with_dimensions.png"]:not(.pizza-item img) {
    max-width: 96px !important;
  }
  
  .navbar {
    padding: 18px 35px;
  }
  
  /* Pizza slice image scaling - main image only */
  img[src*="Slice_with_dimensions.png"]:not(.pizza-item img) {
    max-width: 128px !important;
  }
}

@media (max-width: 900px) {
  .logo img,
  .navbar img[src*="Logo.png"] {
    height: 45px !important;
    max-width: 45px !important;
  }
  
  .hero-logo {
    height: 140px !important;
    max-width: 140px !important;
  }
  
  .medium-logo {
    height: 90px !important;
    max-width: 90px !important;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .btn-book {
    padding: 9px 18px;
    font-size: 0.85rem;
  }
  
  /* Pizza slice image scaling - main image only */
  img[src*="Slice_with_dimensions.png"]:not(.pizza-item img) {
    max-width: 80px !important;
  }
  
  .navbar {
    padding: 15px 30px;
  }
  
  /* Pizza slice image scaling - main image only */
  img[src*="Slice_with_dimensions.png"]:not(.pizza-item img) {
    max-width: 112px !important;
  }
}

/* Tablet styles */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .logo {
    font-size: 1.2rem;
    display: none !important;
  }
  
  .logo img,
  .navbar img[src*="Logo.png"] {
    height: 40px !important;
    max-width: 108px !important;
    display: none !important;
  }
  
  .hero-logo {
    height: 120px !important;
    max-width: 120px !important;
  }
  
  .medium-logo {
    height: 80px !important;
    max-width: 80px !important;
  }
  
  .logo-h {
    font-size: 1.5rem;
  }
  
  .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    visibility: hidden;
    opacity: 0;
  }
  
  .nav-links.active {
    visibility: visible;
    opacity: 1;
  }
  
  .mobile-menu-toggle {
    display: block !important;
    order: var(--hamburger-order, 1);
    margin-right: var(--hamburger-margin-right, auto);
    margin-left: var(--hamburger-margin-left, 0);
    margin-top: var(--hamburger-margin-top, 0);
    margin-bottom: var(--hamburger-margin-bottom, 0);
    padding: var(--hamburger-padding, 4px 8px);
    position: var(--hamburger-position, static);
    top: var(--hamburger-top, auto);
    left: var(--hamburger-left, auto);
    right: var(--hamburger-right, auto);
    bottom: var(--hamburger-bottom, auto);
    transform: var(--hamburger-transform, none);
    transition: none;
    font-size: 16px;
  }
  
  .mobile-menu-toggle svg {
    width: 18px;
    height: 18px;
  }
  
  /* Mobile navigation positioning */
  .navbar {
    position: relative;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-100%);
    width: var(--menu-dropdown-width, 100px);
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(15px);
    justify-content: center;
    gap: 4px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 1000;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform var(--menu-animation-duration, .4s) cubic-bezier(0.4, 0, 0.2, 1),
                opacity var(--menu-animation-duration, .4s) cubic-bezier(0.4, 0, 0.2, 1),
                visibility var(--menu-animation-duration, .4s) cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  /* Reset menu items when menu closes */
  .nav-links:not(.active) a {
    transform: translateX(var(--menu-item-slide-distance, -50px));
    opacity: 0;
    transition-delay: 0s;
  }
  
  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links a {
    color: rgba(255,255,255,0.9);
    padding: var(--menu-button-padding, 2px 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-align: center;
    margin: 2px 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform var(--menu-animation-duration, 0.4s) cubic-bezier(0.4, 0, 0.2, 1), opacity var(--menu-animation-duration, 0.4s) cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem; /* Increased from 0.65rem */
    transform: translateX(var(--menu-item-slide-distance, -50px));
    opacity: 0;
    line-height: 1.2;
    width: var(--menu-button-width, 100px);
    height: var(--menu-button-height, 30px);
    box-sizing: border-box;
    white-space: nowrap;
    overflow: visible;
    text-decoration: none;
  }
  
  .nav-links.active a {
    transform: translateX(0);
    opacity: 1;
  }
  
  /* Staggered animation for menu items */
  .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }
  
  .nav-links a:hover, .nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(231,76,60,0.8) 0%, rgba(192,57,43,0.8) 100%);
    border-color: rgba(231,76,60,0.3);
    transform: none;
  }
  
  /* Hero adjustments for tablet */
  .hero {
    height: 80vh;
  }
  
  .hero-content {
    margin-bottom: 90px;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* Slider adjustments for tablet */
  .slider {
    height: 300px;
    margin: -50px auto 50px auto;
  }
  
  /* Footer adjustments for tablet */
  .footer {
    padding: 40px 0 0 0;
    margin-top: 50px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .footer-section {
    margin: 0 0 30px 0;
    min-width: 0;
    width: 100%;
  }
  
  .footer-section h3 {
    font-size: 1.3rem;
  }
  
  .footer-section p, .footer-section strong {
    font-size: 0.9rem;
  }
  
  .footer-section.partner {
    align-items: center;
  }
  
  .footer-section.partner img {
    max-width: 30px;
  }
  
  /* About page tablet adjustments */
  .about-main {
    padding: 50px 20px;
  }
  
  .about-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  
  .about-text {
    font-size: 1rem;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
  }
  
  .about-sub {
    font-size: 1.8rem;
  }
  
  .about-image img {
    max-width: 80vw;
  }
  
  /* Career form tablet adjustments */
  .career-main {
    padding: 50px 20px;
  }
  
  .career-container {
    padding: 35px 25px;
    margin: 30px auto;
  }
  
  .career-container h2 {
    font-size: 2rem;
  }
  
  /* Booking form tablet adjustments */
  .booking-container {
    padding: 35px 25px;
  }
  
  .booking-container h2 {
    font-size: 2.2rem;
  }
  
  .booking-subtitle {
    font-size: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  /* General mobile adjustments */
  .container, .main-container {
    padding: 0 20px;
  }
  
  /* Grid adjustments */
  .grid, .menu-grid, .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Image adjustments */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Text adjustments */
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.2rem !important; }
  
  /* Button adjustments */
  .btn, button {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    display: block;
  }
  
  /* Form adjustments */
  input, textarea, select {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
  
  /* Menu page specific mobile styles */
  .menu-categories {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .category-tile {
    margin: 0 20px;
  }
  
  .tile-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* Gallery page specific mobile styles */
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .gallery-item {
    margin: 0 20px;
  }
  
  /* Take away menu mobile styles */
  .pizza-item {
    margin: 0 20px 20px 20px;
  }
  
  /* Filter buttons mobile layout */
  .filter-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .filter-buttons button {
    width: 100%;
    max-width: none;
  }
  
  /* Form mobile optimizations */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  /* Sports streaming mobile adjustments */
  .sports-features {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .feature-card {
    margin: 0 20px;
  }
  
  /* About page mobile adjustments */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .feature-card {
    margin: 0 20px;
  }
  
  /* Fixed navigation mobile adjustments */
  .navbar[style*="position: fixed"] {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .navbar[style*="position: fixed"] .nav-links {
    position: fixed;
    top: 80px; /* Adjust based on navbar height */
    left: 0;
    right: 0;
  }
  
  .nav-links {
    background: rgba(0,0,0,0.98);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  /* Ensure content below fixed navbar is properly spaced */
  main[style*="padding-top: 8rem"] {
    padding-top: 6rem !important;
  }
  
  /* Mobile hero section adjustments */
  .hero-section {
    padding-top: 6rem !important;
    min-height: 80vh !important;
  }
  
  /* Mobile grid adjustments for all pages */
  .sports-features, .features-grid, .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Mobile card adjustments */
  .feature-card, .gallery-item, .pizza-item {
    margin: 0 20px 20px 20px;
    padding: 20px;
  }
  
  /* Mobile text adjustments */
  .sports-title, .features-title, .gallery-title {
    font-size: 1.8rem !important;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .sports-subtitle, .sports-description {
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .navbar {
    padding: 10px 15px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo img,
  .navbar img[src*="Logo.png"] {
    height: 20px !important;
    width: 20px !important;
    max-width: 20px !important;
  }
  
  .hero-logo {
    height: 100px !important;
    max-width: 250px !important;
  }
  
  .medium-logo {
    height: 70px !important;
    max-width: 70px !important;
  }
  
  .logo-h {
    font-size: 1.2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .hero-menu-btn {
    padding: 20px 40px;
    font-size: 0.9rem;
    margin-top: 20px;
    gap: 8px;
    min-width: 160px;
  }
  
  .hero-menu-btn .arrow-icon {
    font-size: 2.5rem;
  }
  
  .hero-menu-btn .btn-text {
    font-size: 0.65rem;
  }
  
  .btn-book {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
  }
  
  .footer-section p {
    font-size: 0.8rem;
  }
  
  /* Menu page extra small screen adjustments */
  .category-tile {
    margin: 0 15px;
    padding: 15px;
  }
  
  .tile-image img {
    height: 150px;
  }
  
  /* Gallery extra small screen adjustments */
  .gallery-item {
    margin: 0 15px 15px 15px;
  }
  
  /* Take away menu extra small screen adjustments */
  .pizza-item {
    margin: 0 15px 15px 15px;
    padding: 15px;
  }
  
  .pizza-item img {
    width: 60px;
    height: 60px;
  }
  
  /* Form extra small screen adjustments */
  .booking-container, .career-container {
    padding: 20px 15px;
    margin: 10px;
  }
  
  .booking-container h2, .career-container h2 {
    font-size: 1.8rem;
  }
  
  .booking-subtitle {
    font-size: 0.9rem;
  }
  
  /* Sports streaming extra small screen adjustments */
  .sports-title {
    font-size: 1.8rem;
  }
  
  .sports-subtitle {
    font-size: 1.1rem;
  }
  
  .sports-description {
    font-size: 0.9rem;
  }
  
  /* About page extra small screen adjustments */
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .about-sub {
    font-size: 1.3rem;
  }
  
  .about-text p {
    font-size: 0.9rem;
  }
  
  /* Navigation extra small screen adjustments */
  .nav-links {
    padding: 15px;
  }
  
  .nav-links a {
    padding: 12px 0;
    font-size: 1.1rem; /* Increased from 0.9rem */
  }
  
  /* Button extra small screen adjustments */
  .btn-book {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 25px;
  }
  
  /* Image extra small screen adjustments */
  .hero-content img {
    height: 100px;
  }
  
  /* Slider extra small screen adjustments */
  .slider {
    height: 200px;
    margin: -30px auto 30px auto;
  }
}

/* Mobile Language Menu Animations */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes slideOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* Mobile Language Button Styles */
.mobile-language-btn {
  display: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.mobile-language-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-language-btn:hover::before {
  left: 100%;
}

.mobile-language-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.mobile-language-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-language-btn.active {
  background: linear-gradient(135deg, rgba(231,76,60,0.2), rgba(231,76,60,0.1));
  border-color: rgba(231,76,60,0.3);
}

/* Mobile Language Menu Styles */
.mobile-language-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,20,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  min-width: 200px;
  max-width: 90vw;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  z-index: 2000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform-origin: center;
  animation: slideIn 0.3s ease;
}

.mobile-language-menu .language-option {
  padding: 0.7rem 1rem;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  border: 1px solid transparent;
  margin-bottom: 0.3rem;
}

.mobile-language-menu .language-option:last-child {
  margin-bottom: 0;
}

.mobile-language-menu .language-option:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(5px);
}

.mobile-language-menu .language-option:active {
  transform: translateX(5px) scale(0.98);
}

.mobile-language-menu .language-option span:first-child {
  font-size: 1.2rem;
  min-width: 1.5rem;
  text-align: center;
}

/* Responsive Design for Mobile Language Menu */
@media (max-width: 768px) {
  .language-selector {
    display: none !important;
  }
  
  .mobile-language-btn {
    display: block !important;
  }
  
  .language-menu {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    right: auto !important;
    min-width: 200px !important;
    max-width: 90vw !important;
  }
}

@media (min-width: 769px) {
  .mobile-language-btn {
    display: none !important;
  }
  
  .language-selector {
    display: block !important;
  }
}

/* Language Selector Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
}

.language-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08)) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

.language-option:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  transform: translateX(5px);
}

/* Menu Header Styles */
.menu-header {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.menu-header p {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  animation: simpleFadeIn 1s ease-out;
}

/* Simple animation for Restaurant Menu title */
@keyframes simpleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Mobile styles for menu header */
@media (max-width: 768px) {
  .menu-header {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .menu-header p,
  .menu-header p[data-translate] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    animation: simpleFadeIn 1s ease-out;
  }
}

@media (max-width: 480px) {
  .menu-header p,
  .menu-header p[data-translate] {
    font-size: 1.8rem;
  }
}

/* Mobile styles for booking form */
@media (max-width: 768px) {
  /* Booking form container adjustments */
  .booking-form {
    gap: 15px;
  }
  
  /* Form grid adjustments for mobile */
  .booking-form > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  /* Reduce padding on mobile */
  .booking-form input[type="text"],
  .booking-form input[type="email"],
  .booking-form input[type="tel"],
  .booking-form input[type="date"],
  .booking-form input[type="time"],
  .booking-form input[type="number"],
  .booking-form textarea {
    padding: 10px 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Adjust label sizes for mobile */
  .booking-form label {
    font-size: 0.85rem;
  }
  
  /* Container adjustments for mobile */
  div[style*="max-width: 1000px"] {
    max-width: 100% !important;
    padding: 0 1rem !important;
  }
  
  /* Form wrapper adjustments */
  div[style*="padding: 3rem"] {
    padding: 2rem 1rem !important;
  }
  
  /* Ensure restaurant image fits container properly */
  img[src*="Res_Frontview.png"] {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Hero container adjustments for mobile */
  div[style*="height: 500px"] {
    height: 400px !important;
    width: 100% !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  /* Further adjustments for very small screens */
  div[style*="max-width: 1000px"] {
    padding: 0 0.5rem !important;
  }
  
  div[style*="padding: 3rem"] {
    padding: 1.5rem 0.5rem !important;
  }
  
  .booking-form {
    gap: 12px;
  }
  
  .booking-form input[type="text"],
  .booking-form input[type="email"],
  .booking-form input[type="tel"],
  .booking-form input[type="date"],
  .booking-form input[type="time"],
  .booking-form input[type="number"],
  .booking-form textarea {
    padding: 8px 10px;
  }
  
  /* Further adjust hero container for very small screens */
  div[style*="height: 500px"] {
    height: 300px !important;
  }
}


