/* base.css */

/* =====================
   ROOT & RESET
===================== */
:root {
  --color-title: #ff4da6;
  --color-subtitle: #9bde53;
  --color-button: #12b888;
  --color-bg-dark: #075e6c;
  --color-text: #e8f5f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oxanium', system-ui, sans-serif;
  font-weight: 400;
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================
   HEADER / NAV
===================== */
#site-header {
  position: sticky;
  top: 0;
  background-color: rgba(7, 94, 108, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-text);
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(7, 94, 108, 0.98);
  flex-direction: column;
  padding: 1rem 1.5rem;
  display: none;
}

.nav-menu.open {
  display: flex;
}

.nav-menu li {
  padding: 0.75rem 0;
}

.nav-cta .btn-primary {
  font-size: 0.85rem;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  background-color: var(--color-button);
  color: #002f2f;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid var(--color-button);
  padding: 0.6rem 1rem;
  border-radius: 6px;
}

.nav-menu a,
.btn-primary,
.btn-secondary {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* =====================
   DESKTOP BREAKPOINT
===================== */
@media (min-width: 1024px) {
  .nav-logo img {
    height: 44px;
  }
  
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
	gap: 22px;
    flex-direction: row;
    background: none;
    padding: 0;
  }

}