/* ═══════════════════════════════════════════════════════
   FOUR COUNTIES SPICE — RESPONSIVE STYLESHEET
═══════════════════════════════════════════════════════ */

/* ─── LARGE DESKTOP (1400px+) ─────────────────────────── */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 128px;
  }
}

/* ─── TABLET LANDSCAPE (max 1200px) ──────────────────── */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    gap: 60px;
  }

  .booking-inner {
    flex-direction: column;
    text-align: center;
  }

  .booking-content p {
    margin: 0 auto;
  }

  .booking-actions {
    justify-content: center;
  }
}

/* ─── TABLET (max 1024px) ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(56px, 8vw, 88px);
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-wrap {
    max-width: 560px;
    margin: 0 auto;
  }

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

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

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

  .info-bar-inner {
    justify-content: center;
  }

  .info-divider {
    display: none;
  }
}

/* ─── MOBILE LANDSCAPE / SMALL TABLET (max 1024px) ──── */
@media (max-width: 1024px) {
  /* Header */
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: rgba(5,5,5,0.98);
    border-left: 1px solid var(--gold-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    display: flex;
  }

  .main-navigation.is-open {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .nav-menu li a {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
  }

  .nav-menu li a:hover,
  .nav-menu li a.active {
    color: var(--gold);
  }

  .mobile-menu-toggle {
    display: flex !important;
    z-index: 1002;
    position: relative;
  }

  .mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* Mobile nav overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    pointer-events: all;
  }

  .book-btn {
    display: none;
  }
}

/* ─── MOBILE (max 767px) ──────────────────────────────── */
@media (max-width: 767px) {
  /* Typography */
  .section-title {
    font-size: clamp(28px, 7vw, 44px);
  }

  /* Hero */
  .hero-section {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(48px, 12vw, 68px);
  }

  .hero-subtitle {
    font-size: clamp(20px, 5vw, 28px);
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .welcome-badge {
    font-size: 10px;
    letter-spacing: 4px;
  }

  /* Info bar */
  .info-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .info-tagline {
    margin-top: 8px;
  }

  /* Features */
  .features-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-box {
    padding: 32px 28px;
  }

  /* About */
  .about-section {
    padding: 80px 0;
  }

  .about-badge {
    width: 90px;
    height: 90px;
    bottom: -18px;
    right: -12px;
  }

  .badge-number {
    font-size: 22px;
  }

  .badge-text {
    font-size: 8px;
  }

  /* Menu */
  .menu-preview-section {
    padding: 80px 0;
  }

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

  /* Testimonials */
  .testimonials-section {
    padding: 80px 0;
  }

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

  /* Booking */
  .booking-section {
    padding: 80px 0;
  }

  .booking-inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .booking-actions {
    flex-direction: column;
    width: 100%;
  }

  .booking-actions .btn {
    justify-content: center;
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-nav {
    gap: 20px;
  }

  /* Error page */
  .error-number {
    font-size: 100px;
  }

  .error-title {
    font-size: 32px;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Posts grid */
  .posts-grid {
    grid-template-columns: 1fr;
  }

  /* Page hero */
  .page-hero {
    min-height: 240px;
    padding: 100px 0 40px;
  }

  /* Section headings */
  .section-heading.center {
    margin-bottom: 44px;
  }
}

/* ─── SMALL MOBILE (max 400px) ────────────────────────── */
@media (max-width: 400px) {
  .container {
    width: 94%;
  }

  .hero-title {
    font-size: clamp(40px, 13vw, 56px);
  }

  .btn {
    padding: 14px 28px;
    font-size: 12px;
  }

  .feature-box {
    padding: 28px 22px;
  }
}

/* ─── PRINT ───────────────────────────────────────────── */
@media print {
  .site-header,
  .hero-section,
  .booking-section,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* ─── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .scroll-line {
    animation: none;
  }
}

/* ─── HIGH CONTRAST ───────────────────────────────────── */
@media (forced-colors: active) {
  .btn-primary,
  .book-btn {
    border: 2px solid ButtonText;
  }
}
