/* ==========================================================================
   GLOBAL & LAYOUT STYLES
   ========================================================================== */
body {
  background-color: #030303;
  color: #ffffff;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ==========================================================================
   SITE HEADER & LOGO
   ========================================================================== */
.site-header {
  background: rgba(255, 255, 255);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Image Logo Styling */
.site-logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-logo-img-mobile {
  max-height: 35px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   NAVIGATION & BUTTONS
   ========================================================================== */
.nav-link {
  color: #f14141 !important;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0 !important;
}

.nav-link:hover,
.nav-link.active {
  color: #000000 !important;
}

/* Book Session CTA Button */
.btn-book {
  background: transparent;
  color: #f14141;
  border: 1px solid rgba(241, 65, 65);
  padding: 5px 12px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #f14141;
  color: #000000;
  border-color: #ffffff;
}

/* Mobile Trigger Button */
.menu-btn {
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
}

/* Mobile Offcanvas Drawer Nav Links */
.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #888888;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer {
  background-color: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 40px 0;
  color: #666666;
  font-size: 13px;
}