/* ===== HEADER / NAV ===== */

.site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(13, 31, 54, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(200, 216, 232, 0.2);
    }

.nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

.site-logo {
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }

.site-logo-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }

.site-logo-sub {
      font-size: 0.7rem;
      color: var(--accent);
      letter-spacing: 0.05em;
    }

.nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
    }

.nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 700;
      transition: color 0.3s ease;
      position: relative;
    }

.nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

.nav-links a:hover {
      color: var(--accent);
    }

.nav-links a:hover::after {
      width: 100%;
    }

.nav-book-btn {
      background: var(--accent);
      color: var(--dark) !important;
      padding: 10px 20px;
      border-radius: 12px;
      font-weight: 700 !important;
      transition: background 0.3s ease, transform 0.2s ease !important;
    }

.nav-book-btn:hover {
      background: #fff !important;
      transform: translateY(-2px);
    }

.nav-book-btn::after {
      display: none !important;
    }

.hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

.hamburger-btn span {
      display: block;
      width: 26px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

.hamburger-btn.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

.hamburger-btn.is-open span:nth-child(2) {
      opacity: 0;
    }

.hamburger-btn.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

.mobile-nav {
      display: none;
      flex-direction: column;
      background: var(--dark);
      padding: 20px 24px;
      border-top: 1px solid rgba(200,216,232,0.2);
    }

.mobile-nav.is-open {
      display: flex;
    }

.mobile-nav a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      padding: 14px 0;
      border-bottom: 1px solid rgba(200,216,232,0.1);
      transition: color 0.3s;
    }

.mobile-nav a:hover {
      color: var(--accent);
    }

/* ===== FOOTER ===== */

.site-footer {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
      padding: 72px 0 32px;
    }

.footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 56px;
    }

.footer-brand-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

.footer-brand-sub {
      font-size: 0.75rem;
      color: var(--accent);
      margin-bottom: 16px;
    }

.footer-brand-desc {
      font-size: 0.85rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

.footer-contact-item {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 6px;
    }

.footer-contact-item a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.3s;
    }

.footer-contact-item a:hover {
      color: var(--accent);
    }

.footer-col-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }

.footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

.footer-nav-list a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }

.footer-nav-list a:hover {
      color: var(--accent);
    }

.footer-hours-item {
      display: flex;
      justify-content: space-between;
      font-size: 0.83rem;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

.footer-hours-item:last-child {
      border-bottom: none;
    }

.footer-hours-day {
      color: rgba(255,255,255,0.6);
    }

.footer-hours-time {
      color: rgba(255,255,255,0.9);
      font-weight: 700;
    }

.footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

.footer-copyright {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }

.footer-legal-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

.footer-legal-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.3s;
    }

.footer-legal-links a:hover {
      color: var(--accent);
    }

@media (max-width: 768px) {
  .nav-links {
        display: none;
      }

  .hamburger-btn {
        display: flex;
      }

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

@media (max-width: 480px) {
  .footer-grid {
        grid-template-columns: 1fr;
      }

  .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
}
