/* Shared styles across site */

body {
  font-family: Arial, sans-serif;
}

.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: #facc15;
  color: #0f172a;
  font-weight: 700;
}

.header-container {
  display: flex;
  align-items: center;
}

/* Push nav + hamburger to right */
.nav-links {
  margin-left: auto;
}

/* Hamburger always at far right */
.hamburger {
  margin-left: auto;
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}

/* =========================
   SIDE NAV
========================= */
.side-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #0f172a;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1001;
}
.side-nav span {
font-weight: 500;
text-decoration: solid;
}


.side-nav a {
  display: block;
  padding: 14px 0;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.side-nav a:hover {
  color: #facc15;
}

.side-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.side-nav-header button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   OVERLAY
========================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}

/* =========================
   RESPONSIVE NAV
========================= */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
