/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .about-content,
  .venue-about .about-content,
  .happy-hour-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

  .about-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
  }

  .stats,
  .venue-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .venues-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .specialties-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 4rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 4rem);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.125rem;
    padding: 1rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .reserve-btn {
    display: none;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

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

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .venues-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .specialty-item {
    padding: 1rem;
  }

  .specialty-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .stats,
  .venue-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .venue-hero {
    height: 50vh;
  }

  .happy-hour-image {
    height: 16rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .venue-content {
    padding: 1rem;
  }

  .specialty-item {
    padding: 0.75rem;
  }

  .specialty-item h3 {
    font-size: 0.75rem;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .modal-content {
    margin: 5% auto;
  }

  .modal-header {
    padding: 1rem;
  }

  .reservation-form {
    padding: 1rem;
  }

  .menu-item {
    padding: 1rem;
  }

  .venue-cta h2 {
    font-size: 1.75rem;
  }

  .venue-cta p {
    font-size: 1rem;
  }

  .happy-hour-text {
    padding: 2rem;
  }
}

/* Print Styles */
@media print {

  .navbar,
  .back-to-top,
  .modal,
  #loading-screen {
    display: none !important;
  }

  .hero,
  .venue-hero {
    height: auto;
    padding: 2rem 0;
  }

  .hero-background {
    display: none;
  }

  .hero-content {
    color: var(--text-dark);
  }

  section {
    padding: 1rem 0;
    break-inside: avoid;
  }

  .btn {
    display: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --text-light: #000000;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.3);
  }

  .btn-primary,
  .btn-secondary {
    background: #000000;
    color: #ffffff;
  }

  .btn-outline {
    border-color: #000000;
    color: #000000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1f2937;
    --text-dark: #f9fafb;
    --text-light: #d1d5db;
    --light-bg: #374151;
  }

  body {
    background-color: var(--white);
    color: var(--text-dark);
  }

  .navbar,
  .venue-navbar {
    background: rgba(31, 41, 55, 0.95);
  }

  .venue-card,
  .specialty-item,
  .about-card,
  .modal-content,
  .menu-item {
    background: #374151;
    border-color: #4b5563;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: #374151;
    border-color: #4b5563;
    color: var(--text-dark);
  }
}