body {
  margin: 0;
  padding-top: 120px; /* 80px navbar + 40px banner */
  font-family: 'Lato', Arial, sans-serif;
  background: #0a0a0f;
  color: #f8f9fa;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-bottom: 1px solid #1a1a2e;
  position: fixed;
  top: 40px; /* Position below banner */
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Mobile menu button - replace hamburger with text */
.hamburger {
  display: none;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
  border: none;
  border-radius: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6em 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hamburger:hover {
  background: linear-gradient(135deg, #ee5a52, #ff6b6b);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Remove hamburger spans - we're using text now */
.hamburger span {
  display: none;
}

.logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ff6b6b;
  letter-spacing: 0.2em;
  z-index: 1001;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: #f8f9fa;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.5em 0;
  display: block;
}
.nav-links a:hover, .nav-links .reserve-btn {
  color: #ff6b6b;
}
.reserve-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff !important;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  font-weight: 700;
  margin-left: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.reserve-btn:hover {
  background: linear-gradient(135deg, #ee5a52, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}
.dropdown {
  position: relative;
}
.dropdown > a {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Add invisible hover area to bridge gap */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  width: calc(100% + 20px);
  height: 30px;
  background: transparent;
  z-index: 999;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid #ff6b6b;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  z-index: 1000;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}

/* Add invisible hover area above submenu */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
  z-index: 999;
}

.dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-content a {
  display: block;
  color: #ff6b6b;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0;
  position: relative;
}

.dropdown-content a:hover {
  color: #fff;
  background: rgba(255, 107, 107, 0.1);
  transform: translateX(5px);
}

.dropdown-content a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ff6b6b;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-content a:hover::before {
  transform: scaleY(1);
}

/* Remove hover areas on mobile */
.dropdown::after,
.dropdown-content::before {
  display: none;
}
.hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0.5em 0 0.2em 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
.hero-content {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1em;
}
.hero-logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #ff6b6b;
  letter-spacing: 0.2em;
  margin-bottom: 0.2em;
  text-align: center;
}
.hero-headline {
  font-size: 1.1rem;
  color: #a8b2d1;
  margin-bottom: 0.2em;
  font-weight: 400;
  text-align: center;
  word-break: break-word;
  margin-top: 0;
}
.hero-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #ff6b6b;
  margin-bottom: 0.2em;
  letter-spacing: 0.1em;
  text-align: center;
  word-break: break-word;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #ff6b6b;
  margin-bottom: 0.2em;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}
.hero p {
  font-size: 1.1rem;
  color: #a8b2d1;
  margin-bottom: 0.7em;
  font-weight: 300;
}
.cta-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
  padding: 1em 2.5em;
  border-radius: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  display: inline-block;
  margin: 0 auto 0.5em auto;
  min-width: 180px;
  max-width: 90vw;
  text-align: center;
}
.cta-btn:hover {
  background: linear-gradient(135deg, #ee5a52, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}
.signature {
  padding: 4em 2em 2em 2em;
  background: #16213e;
  text-align: center;
}
.signature h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #ff6b6b;
  font-size: 2.2rem;
  margin-bottom: 1.5em;
}
.signature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.card {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 2.5em 2em;
  min-width: 220px;
  max-width: 320px;
  color: #f8f9fa;
  border: 1px solid #2a2a4a;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
  border-color: #ff6b6b;
}
.card h3 {
  color: #ff6b6b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1em;
}
.menu-preview {
  padding: 3em 2em;
  background: #0a0a0f;
  text-align: center;
}
.menu-preview h2 {
  color: #ff6b6b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 1em;
}
.menu-links {
  display: flex;
  justify-content: center;
  gap: 2em;
}
.menu-links a {
  color: #a8b2d1;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.8em 1.8em;
  border-radius: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #2a2a4a;
}
.menu-links a:hover {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}
.gallery {
  padding: 3em 2em;
  background: #16213e;
  text-align: center;
}
.gallery h2 {
  color: #ff6b6b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 1em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 1.5em;
}
.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 2px solid #2a2a4a;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.2);
}
.events {
  padding: 3em 2em;
  background: #0a0a0f;
  text-align: center;
}
.events h2 {
  color: #ff6b6b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 1em;
}
.events ul {
  list-style: none;
  padding: 0;
  color: #a8b2d1;
  font-size: 1.1rem;
}
.events li {
  margin-bottom: 0.7em;
  padding: 0.5em 0;
}
.social {
  padding: 3em 2em 2em 2em;
  background: #16213e;
  text-align: center;
}
.social h2 {
  color: #ff6b6b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 1em;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.social-links img {
  width: 32px;
  height: 32px;
  filter: grayscale(1) brightness(1.5);
  transition: all 0.3s ease;
}
.social-links img:hover {
  filter: none;
  transform: scale(1.1);
}
.instagram-feed {
  color: #a8b2d1;
  font-size: 1.1rem;
}
footer {
  background: #0a0a0f;
  color: #a8b2d1;
  text-align: center;
  padding: 2em 1em 1em 1em;
  border-top: 1px solid #1a1a2e;
}
.footer-content a {
  color: #ff6b6b;
  text-decoration: none;
  margin: 0 0.5em;
  transition: color 0.3s ease;
}
.footer-content a:hover {
  color: #ee5a52;
}

/* Modern Menu Page Styles */
.menu-section {
  padding: 2em;
  background: linear-gradient(135deg, #0a0a0f 0%, #16213e 100%);
  min-height: 80vh;
}
.menu-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 3rem;
  color: #ff6b6b;
  text-align: center;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}
.menu-subtitle {
  text-align: center;
  color: #a8b2d1;
  font-size: 1.1rem;
  margin-bottom: 3em;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.menu-categories {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 3em;
}
.menu-categories section {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5em;
  border: 1px solid #2a2a4a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.menu-categories section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
}
.menu-categories h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  color: #ff6b6b;
  margin-bottom: 1.5em;
  text-align: center;
  letter-spacing: 0.05em;
}
.menu-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-categories li {
  color: #f8f9fa;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1em;
  padding: 0.8em 0;
  border-bottom: 1px solid rgba(168, 178, 209, 0.1);
  transition: all 0.3s ease;
}
.menu-categories li:last-child {
  border-bottom: none;
}
.menu-categories li:hover {
  color: #ff6b6b;
  padding-left: 0.5em;
}
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.item-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ff6b6b;
  letter-spacing: 0.02em;
}
.item-description {
  font-size: 1rem;
  color: #a8b2d1;
  font-weight: 300;
  line-height: 1.5;
}
.menu-nav {
  text-align: center;
  margin-top: 3em;
  padding: 2em;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid #2a2a4a;
}
.menu-nav a {
  color: #a8b2d1;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 0 1em;
  padding: 0.5em 1em;
  border-radius: 2em;
  transition: all 0.3s ease;
}
.menu-nav a:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

@media (max-width: 900px) {
  .signature-cards, .menu-links {
    flex-direction: column;
    gap: 1.2em;
  }
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
  .navbar-toggles {
    margin-right: 0;
    margin-bottom: 0;
  }
  .nav-links {
    display: none;
    position: static;
    left: auto;
    top: auto;
    height: auto;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-bottom: 1px solid #222;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.5rem 0;
    margin: 0;
    z-index: auto;
    overflow-y: visible;
    transition: none;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.1rem;
    text-align: center;
    background: none;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .reserve-btn {
    margin: 1rem 0 0 0;
    text-align: center;
    width: 90%;
    padding: 1.1rem 0;
    align-self: center;
  }
  .menu-categories {
    gap: 2em;
  }
  .menu-categories section {
    padding: 2em;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .cta-btn {
    padding: 0.8em 2em;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
    margin: 0.5rem 0;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    text-align: center;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .reserve-btn {
    margin: 2rem 0 0 0;
    text-align: center;
    width: 100%;
    padding: 1.5rem 0;
  }
  
  /* Mobile dropdown - click functionality */
  .dropdown:hover .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  
  .dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Mobile-specific dropdown positioning */
  .dropdown-content {
    position: static;
    background: rgba(255, 107, 107, 0.1);
    border: none;
    box-shadow: none;
    margin: 0.5rem 0 0 0;
    border-radius: 8px;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: #a8b2d1;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    text-align: center;
  }
  
  .dropdown-content a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    transform: none;
  }
  
  .dropdown-content a::before {
    display: none;
  }
  
  /* Disable hover bridge areas on mobile */
  .dropdown::after,
  .dropdown-content::before {
    display: none;
  }
  
  .navbar-toggles {
    display: flex;
    gap: 0.5rem;
  }
  
  .toggle-btn {
    padding: 0.4em 0.8em;
    font-size: 0.9rem;
  }
  
  /* Mobile banner adjustments */
  .happy-hour-banner {
    padding: 0.6rem 0;
  }
  
  .happy-hour-content {
    font-size: 0.85rem;
    gap: 1.5rem;
  }
  
  .happy-hour-text {
    gap: 0.8rem;
  }
  
  .happy-hour-divider {
    height: 1rem;
    margin: 0 0.3rem;
  }
}
@media (max-width: 600px) {
  body {
    padding-top: 80px;
  }
  .hero {
    min-height: 10vh !important;
    padding: 0.5em 0 0.2em 0 !important;
    box-sizing: border-box;
    align-items: center;
  }
  .hero-content {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1em;
    text-align: center;
    overflow-x: hidden;
  }
  .hero-logo {
    font-size: 2rem !important;
    margin-bottom: 0.1em !important;
    letter-spacing: 0.18em !important;
    text-align: center;
  }
  .hero-headline {
    font-size: 1.08rem !important;
    margin-bottom: 0.2em !important;
    color: #a8b2d1 !important;
    text-align: center;
    font-weight: 400 !important;
    word-break: break-word;
    margin-top: 0 !important;
  }
  .hero-tagline {
    font-size: 1.25rem !important;
    margin-bottom: 0.2em !important;
    text-align: center;
    word-break: break-word;
  }
  .cta-btn {
    font-size: 1.08rem;
    padding: 0.9em 2em;
    min-width: 60vw;
    max-width: 90vw;
    margin-bottom: 0.2em;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 8vh !important;
    padding: 0.3em 0 0.1em 0 !important;
  }
  .hero-content {
    max-width: 100vw;
    padding: 0 0.5em;
  }
  .hero-headline {
    font-size: 0.98rem !important;
    margin-bottom: 0.2em !important;
    margin-top: 0 !important;
  }
  .hero-tagline {
    font-size: 1.05rem !important;
    margin-bottom: 0.2em !important;
  }
  .cta-btn {
    font-size: 0.98rem;
    padding: 0.8em 1.2em;
    min-width: 70vw;
    margin-bottom: 0.1em;
  }
}

/* Accessibility Improvements */
.nav-links a:focus,
.menu-links a:focus,
.toggle-btn:focus,
.cta-btn:focus,
.reserve-btn:focus {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
  border-radius: 4px;
}

.card:focus-within {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
}

.menu-categories li:focus-within {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  .card:hover {
    transform: none;
  }
  .menu-categories li:hover {
    padding-left: 0;
  }
  .nav-links a:hover {
    color: inherit;
  }
  .menu-links a:hover {
    transform: none;
  }
  .reserve-btn:hover {
    transform: none;
  }
  .cta-btn:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .navbar {
    border-bottom: 2px solid #ff6b6b;
  }
  .card {
    border: 2px solid #ff6b6b;
  }
  .menu-categories section {
    border: 2px solid #ff6b6b;
  }
  .modal-content {
    border: 2px solid #ff6b6b;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .card:hover,
  .menu-categories li:hover,
  .nav-links a:hover,
  .menu-links a:hover,
  .reserve-btn:hover,
  .cta-btn:hover {
    transform: none;
  }
}

/* Focus visible for keyboard navigation */
.nav-links a:focus-visible,
.menu-links a:focus-visible,
.toggle-btn:focus-visible,
.cta-btn:focus-visible,
.reserve-btn:focus-visible {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #ff6b6b;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* ARIA improvements */
[role="button"],
[role="tab"],
[role="menuitem"] {
  cursor: pointer;
}

[aria-expanded="false"] + .dropdown-content {
  display: none;
}

[aria-expanded="true"] + .dropdown-content {
  display: block;
}

.navbar-toggles {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-right: 1.5em;
}
.toggle-btn {
  background: rgba(26,26,46,0.7);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
  border-radius: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  padding: 0.4em 1.2em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.toggle-btn:hover {
  background: #ff6b6b;
  color: #fff;
}
body.light-mode {
  background: #f8f9fa;
  color: #16213e;
}
body.light-mode .navbar {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e0e0e0;
}
body.light-mode .nav-links a {
  color: #16213e;
}
body.light-mode .nav-links a:hover, body.light-mode .nav-links .reserve-btn {
  color: #ff6b6b;
}
body.light-mode .reserve-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff !important;
}
body.light-mode .hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}
body.light-mode .hero h1 {
  color: #ff6b6b;
  text-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
}
body.light-mode .hero p {
  color: #495057;
}
body.light-mode .signature {
  background: #e9ecef;
}
body.light-mode .card {
  background: rgba(255, 255, 255, 0.9);
  color: #16213e;
  border: 1px solid #dee2e6;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
body.light-mode .card:hover {
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.2);
  border-color: #ff6b6b;
}
body.light-mode .card h3 {
  color: #ff6b6b;
}
body.light-mode .menu-preview {
  background: #f8f9fa;
}
body.light-mode .menu-links a {
  background: rgba(255, 255, 255, 0.9);
  color: #495057;
  border: 1px solid #dee2e6;
}
body.light-mode .menu-links a:hover {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}
body.light-mode .events {
  background: #f8f9fa;
}
body.light-mode .events ul {
  color: #495057;
}
body.light-mode .social {
  background: #e9ecef;
}
body.light-mode .menu-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
body.light-mode .menu-section h1 {
  color: #ff6b6b;
  text-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
}
body.light-mode .menu-subtitle {
  color: #495057;
}
body.light-mode .menu-categories section {
  background: rgba(255, 255, 255, 0.9);
  color: #16213e;
  border: 1px solid #dee2e6;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
body.light-mode .menu-categories section:hover {
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
  border-color: #ff6b6b;
}
body.light-mode .menu-categories h2 {
  color: #ff6b6b;
}
body.light-mode .menu-categories li {
  color: #16213e;
  border-bottom: 1px solid rgba(73, 80, 87, 0.1);
}
body.light-mode .menu-categories li:hover {
  color: #ff6b6b;
}
body.light-mode .item-name {
  color: #ff6b6b;
}
body.light-mode .item-description {
  color: #495057;
}
body.light-mode .menu-nav {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dee2e6;
}
body.light-mode .menu-nav a {
  color: #495057;
}
body.light-mode .menu-nav a:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}
body.light-mode .modal {
  background: rgba(248, 249, 250, 0.85);
}
body.light-mode .modal-content {
  background: linear-gradient(135deg, #e9ecef 80%, #f8f9fa 100%);
  color: #16213e;
  border: 1px solid #ff6b6b;
  box-shadow: 0 8px 40px rgba(255, 107, 107, 0.2);
}
body.light-mode .modal-content h2 {
  color: #ff6b6b;
}
body.light-mode .close {
  color: #ff6b6b;
}
body.light-mode .close:hover {
  color: #16213e;
}
body.light-mode .toggle-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: 1px solid #ddd;
}
body.light-mode .toggle-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #ff6b6b;
}
body.light-mode .hamburger span {
  background: #ff6b6b;
}
body.light-mode .happy-hour-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff6b6b 100%);
  box-shadow: 0 2px 20px rgba(255, 107, 107, 0.2);
}
body.light-mode .happy-hour-banner:hover {
  background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 50%, #ee5a52 100%);
  box-shadow: 0 4px 25px rgba(255, 107, 107, 0.3);
}
body.light-mode .dropdown-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
}
body.light-mode footer {
  background: #f8f9fa;
  color: #333;
  border-top: 1px solid #dee2e6;
}
body.light-mode .footer-content a {
  color: #ff6b6b;
}
body.light-mode .footer-content a:hover {
  color: #ee5a52;
}
/* Add more light mode overrides as needed */

/* Happy Hour Scrolling Banner */
.happy-hour-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff6b6b 100%);
  color: #fff;
  padding: 0.8rem 0;
  z-index: 1001;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(255, 107, 107, 0.3);
}

.happy-hour-banner:hover {
  background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 50%, #ee5a52 100%);
  transform: translateY(1px);
  box-shadow: 0 4px 25px rgba(255, 107, 107, 0.4);
}

.happy-hour-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  animation: scroll-banner 20s linear infinite;
}

.happy-hour-content:hover {
  animation-play-state: paused;
}

.happy-hour-icon {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.happy-hour-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.happy-hour-divider {
  width: 1px;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Desktop dropdown - hover functionality */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile dropdown - click functionality */
@media (max-width: 768px) {
  .dropdown:hover .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  
  .dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Mobile-specific dropdown positioning */
  .dropdown-content {
    position: static;
    background: rgba(255, 107, 107, 0.1);
    border: none;
    box-shadow: none;
    margin: 0.5rem 0 0 1rem;
    border-radius: 8px;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: #a8b2d1;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .dropdown-content a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    transform: none;
  }
  
  .dropdown-content a::before {
    display: none;
  }
}

/* New Page Styles - Events, Vision, About, Contact */

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Events Page Styles */
.events-hero {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(168, 178, 209, 0.1));
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.event-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid #ff6b6b;
  border-radius: 15px;
  padding: 1.2rem 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.event-header h3 {
  color: #ff6b6b;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.event-day, .event-time {
  display: block;
  color: #a8b2d1;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.event-content p {
  color: #f8f9fa;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.event-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.event-content li {
  color: #a8b2d1;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.event-content li::before {
  content: '•';
  color: #ff6b6b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.event-price {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.special-events {
  padding: 1.5rem 0;
}

.special-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.special-event {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  transition: all 0.3s ease;
}

.special-event:hover {
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.special-event h3 {
  color: #ff6b6b;
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.special-event p {
  color: #a8b2d1;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.event-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.price {
  background: #ff6b6b;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.upgrade, .note {
  color: #a8b2d1;
  font-size: 0.8rem;
  font-style: italic;
}

.private-events {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(168, 178, 209, 0.05), rgba(255, 107, 107, 0.05));
}

.private-events-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.private-event-info h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.private-event-info p {
  color: #a8b2d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.private-event-info h4 {
  color: #f8f9fa;
  margin: 1.5rem 0 0.5rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.private-event-info ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid #ff6b6b;
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-details p {
  color: #a8b2d1;
  margin-bottom: 0.75rem;
}

.contact-details a {
  color: #ff6b6b;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.cta-button {
  margin-top: 2rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Montserrat', Arial, sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary:hover {
  background: #ff6b6b;
  color: #fff;
  transform: translateY(-2px);
}

.upcoming-events {
  padding: 1.5rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.calendar-event {
  display: flex;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  transition: all 0.3s ease;
}

.calendar-event:hover {
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.event-date {
  text-align: center;
  margin-right: 1.5rem;
  min-width: 80px;
}

.month {
  display: block;
  color: #ff6b6b;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.day {
  display: block;
  color: #f8f9fa;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

.event-info h4 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.event-info p {
  color: #a8b2d1;
  line-height: 1.5;
}

/* Vision Page Styles */
.vision-intro {
  padding: 1.5rem 0;
  text-align: center;
}

.vision-statement h2 {
  color: #ff6b6b;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.3;
}

.vision-statement p {
  color: #a8b2d1;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.brand-philosophy {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(168, 178, 209, 0.05));
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.philosophy-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 15px;
  padding: 1.2rem 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.philosophy-card:hover {
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.philosophy-card h3 {
  color: #ff6b6b;
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
}

.philosophy-card p {
  color: #a8b2d1;
  line-height: 1.6;
}

.dual-concept {
  padding: 1.5rem 0;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.concept-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid #ff6b6b;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.concept-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
}

.concept-details h4 {
  color: #f8f9fa;
  margin: 1.5rem 0 0.5rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.concept-details p {
  color: #a8b2d1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.concept-details ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.design-aesthetic {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(168, 178, 209, 0.05), rgba(255, 107, 107, 0.05));
}

.aesthetic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.aesthetic-element h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.aesthetic-element p {
  color: #a8b2d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.aesthetic-element h4 {
  color: #f8f9fa;
  margin: 1.5rem 0 0.5rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.aesthetic-element ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.target-audience {
  padding: 1.5rem 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.audience-card {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.audience-card:hover {
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.audience-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.audience-card p {
  color: #a8b2d1;
  line-height: 1.5;
}

.service-culture {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(168, 178, 209, 0.05));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-element h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.service-element p {
  color: #a8b2d1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-element ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
}

.differentiation {
  padding: 1.5rem 0;
}

.differentiation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.differentiation-item {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.differentiation-item:hover {
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.differentiation-item h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.differentiation-item p {
  color: #a8b2d1;
  line-height: 1.5;
}

.vision-cta {
  padding: 1.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(168, 178, 209, 0.1));
}

.vision-cta h2 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.vision-cta p {
  color: #a8b2d1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Styles */
.our-story {
  padding: 1.5rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.story-text h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.story-text p {
  color: #a8b2d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.story-highlights h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.story-highlights ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
}

.story-highlights li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.operational-model {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(168, 178, 209, 0.05));
}

.operational-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.operational-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.operational-card:hover {
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.operational-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.operational-card p {
  color: #a8b2d1;
  line-height: 1.6;
}

.team-leadership {
  padding: 1.5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.team-member:hover {
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.team-member h3 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.team-member .title {
  color: #a8b2d1;
  font-style: italic;
  margin-bottom: 1rem;
}

.team-member p {
  color: #a8b2d1;
  line-height: 1.5;
}

.team-member a {
  color: #ff6b6b;
  text-decoration: none;
}

.team-member a:hover {
  text-decoration: underline;
}

.service-standards {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(168, 178, 209, 0.05), rgba(255, 107, 107, 0.05));
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.standard-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.standard-card:hover {
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.standard-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.standard-card p {
  color: #a8b2d1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.standard-card ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
}

.launch-strategy {
  padding: 1.5rem 0;
}

.launch-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.launch-phases h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.launch-phases p {
  color: #a8b2d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.launch-phases h4 {
  color: #f8f9fa;
  margin: 1.5rem 0 0.5rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.launch-phases ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-metrics h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric:hover {
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.metric-number {
  display: block;
  color: #ff6b6b;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

.metric-label {
  display: block;
  color: #a8b2d1;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.location-hours {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(168, 178, 209, 0.05));
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.location-info h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.location-info p {
  color: #a8b2d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hours-info h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.hours-grid {
  margin-bottom: 2rem;
}

.day-hours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.day-hours:last-child {
  border-bottom: none;
}

.day {
  color: #f8f9fa;
  font-weight: 500;
}

.hours {
  color: #a8b2d1;
}

.special-hours h4 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.special-hours p {
  color: #a8b2d1;
  line-height: 1.5;
}

.about-cta {
  padding: 1.5rem 0;
  text-align: center;
}

.about-cta h2 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.about-cta p {
  color: #a8b2d1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-info {
  padding: 1.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.contact-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-card p {
  color: #a8b2d1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-card h4 {
  color: #f8f9fa;
  margin: 1.5rem 0 0.5rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-details p, .social-links p {
  color: #a8b2d1;
  margin-bottom: 0.75rem;
}

.contact-details a, .social-links a {
  color: #ff6b6b;
  text-decoration: none;
}

.contact-details a:hover, .social-links a:hover {
  text-decoration: underline;
}

.hours-operation {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(168, 178, 209, 0.05));
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.hours-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.hours-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.hours-list {
  margin-bottom: 2rem;
}

.special-hours-list {
  display: grid;
  gap: 1rem;
}

.special-hour {
  background: rgba(255, 107, 107, 0.1);
  border-radius: 8px;
  padding: 1rem;
}

.special-hour h4 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.special-hour p {
  color: #a8b2d1;
  margin: 0;
}

.reservation-system {
  padding: 1.5rem 0;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.reservation-info h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.reservation-info ul {
  color: #a8b2d1;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.reservation-info li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.reservation-info p {
  color: #a8b2d1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.reservation-form h3 {
  color: #ff6b6b;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-form, .inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  color: #f8f9fa;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  color: #f8f9fa;
  font-family: 'Lato', Arial, sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8b2d1;
}

.inquiry-forms {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(168, 178, 209, 0.05), rgba(255, 107, 107, 0.05));
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.inquiry-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.inquiry-card:hover {
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.inquiry-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.inquiry-card p {
  color: #a8b2d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-cta {
  padding: 1.5rem 0;
  text-align: center;
}

.contact-cta h2 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-cta p {
  color: #a8b2d1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 900px) {
  .events-grid,
  .special-events-grid,
  .philosophy-grid,
  .concept-grid,
  .aesthetic-grid,
  .audience-grid,
  .service-grid,
  .differentiation-grid,
  .operational-grid,
  .team-grid,
  .standards-grid,
  .contact-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  
  .private-events-content,
  .story-content,
  .launch-content,
  .location-grid,
  .reservation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  
  .event-card,
  .philosophy-card,
  .concept-card,
  .operational-card,
  .standard-card,
  .contact-card,
  .inquiry-card {
    padding: 1.5rem;
  }
  
  .calendar-event {
    flex-direction: column;
    text-align: center;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .day-hours {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Light Mode Styles for New Pages */
body.light-mode .event-card,
body.light-mode .philosophy-card,
body.light-mode .concept-card,
body.light-mode .operational-card,
body.light-mode .standard-card,
body.light-mode .contact-card,
body.light-mode .inquiry-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 107, 107, 0.5);
}

body.light-mode .event-card:hover,
body.light-mode .philosophy-card:hover,
body.light-mode .concept-card:hover,
body.light-mode .operational-card:hover,
body.light-mode .standard-card:hover,
body.light-mode .contact-card:hover,
body.light-mode .inquiry-card:hover {
  border-color: #ff6b6b;
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 107, 107, 0.5);
  color: #0a0a0f;
}

body.light-mode .form-group input:focus,
body.light-mode .form-group select:focus,
body.light-mode .form-group textarea:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder {
  color: #666;
}

@media (max-width: 900px) {
  .sidebar, .side-nav, .offcanvas, .drawer, .left-nav {
    display: none !important;
    left: -100vw !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    box-shadow: none !important;
    background: none !important;
  }
  /* Ensure nav-links overlay is fullscreen and not as a sidebar */
  .nav-links {
    left: -100%;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    background: rgba(10, 10, 15, 0.98);
    box-shadow: none;
  }
  .nav-links.active {
    left: 0;
  }
}

@media (max-width: 900px) {
  .nav-links {
    background: #0a0a0f;
  }
  .nav-links a {
    color: #fff;
    font-weight: 600;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover, .nav-links a:focus {
    background: #222;
    color: #ff6b6b;
  }
  .reserve-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff !important;
    font-weight: 700;
    border-radius: 2em;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: none;
  }
}

@media (max-width: 900px) {
  .dropdown-content {
    background: #181824 !important;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border: none;
    padding: 0.2em 0;
  }
  .dropdown-content a {
    color: #fff !important;
    font-weight: 600;
    background: none;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    padding: 1em 0.5em;
    border-radius: 6px;
  }
  .dropdown-content a:hover, .dropdown-content a:focus {
    background: #222 !important;
    color: #ff6b6b !important;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.modal-content {
  background: linear-gradient(135deg, #16213e 80%, #0a0a0f 100%);
  margin: 8vh auto;
  padding: 2.5em 2em 2em 2em;
  border: 1px solid #ff6b6b;
  border-radius: 18px;
  max-width: 480px;
  color: #fff;
  box-shadow: 0 8px 40px rgba(255,107,107,0.15);
  position: relative;
  text-align: center;
  font-family: 'Lato', Arial, sans-serif;
  animation: fadeIn 0.3s;
}

.modal-content h2 {
  color: #ff6b6b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5em;
}

.modal-price {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0.5em 1.5em;
  border-radius: 2em;
  display: inline-block;
  margin: 1em 0;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.close {
  color: #ff6b6b;
  position: absolute;
  top: 1em;
  right: 1.2em;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
  .modal-content {
    margin: 5vh auto;
    padding: 2em 1.5em 1.5em 1.5em;
    max-width: 90vw;
  }
  
  .modal-content h2 {
    font-size: 1.6rem;
  }
  
  .modal-price {
    font-size: 1.2rem;
    padding: 0.4em 1.2em;
  }
  
  .close {
    top: 0.8em;
    right: 1em;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 3vh auto;
    padding: 1.5em 1em 1em 1em;
    max-width: 95vw;
  }
  
  .modal-content h2 {
    font-size: 1.4rem;
  }
  
  .modal-price {
    font-size: 1.1rem;
    padding: 0.3em 1em;
  }
}