/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  /* PRIMARY & SECONDARY - Change these to customize colors */
  --primary: #000000;
  --primary-light: #1a1a1a;
  --primary-dark: #000000;
  --secondary: #ffffff;
  --secondary-light: #ffffff;
  --secondary-dark: #f5f5f5;
  /* Neutrals - Derived from primary/secondary */
  --gray-100: #f8f8f8;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-400: #a0a0a0;
  --gray-500: #707070;
  --gray-600: #505050;
  --gray-700: #303030;
  --gray-800: #1a1a1a;
  --gray-900: #0a0a0a;
  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 2rem; /* 32px */
  --font-size-4xl: 2.5rem; /* 40px */
  --font-size-5xl: 3.5rem; /* 56px */
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ==============================================
   UTILITIES
   ============================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
}

section {
  width: 100%;
}
section > .container > .wrapper {
  width: 100%;
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-primary:disabled {
  background: var(--gray-400);
  border-color: var(--gray-400);
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
}

.btn-full {
  width: 100%;
}

/* Inter font-face declarations for self-hosted font */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Inter", sans-serif;
}

/* ==============================================
   NAVIGATION
   ============================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--secondary);
  border-bottom: 1px solid var(--gray-200);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav-container .custom-logo-link {
  display: flex;
  align-items: center;
}

.nav-container .custom-logo-link img {
  max-height: 40px;
  width: auto;
}

.nav-logo {
  font-size: var(--font-size-lg);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray-600);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--space-2);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-container {
    height: 64px;
    padding: 0 var(--space-4);
  }
  .nav-logo {
    font-size: var(--font-size-base);
  }
  .nav-container .custom-logo-link img {
    max-height: 32px;
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--secondary);
    padding: var(--space-8) var(--space-6);
    gap: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
    display: none;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  .nav-links li {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .nav-links a {
    display: block;
    padding: var(--space-3) 0;
    font-size: var(--font-size-base);
    border-bottom: 1px solid var(--gray-100);
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* Bullet style for nav and footer menus */
.nav-menu-bullets,
.footer-menu-bullets {
  list-style: disc inside;
  padding-left: 1.5em;
}

.nav-menu-bullets li,
.footer-menu-bullets li {
  margin-left: 0;
}

.nav-links li,
.footer-links li {
  margin-left: 12px;
  marker: none;
  display: inline;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--primary);
  color: var(--secondary);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-8);
}

.footer-logo {
  font-size: var(--font-size-lg);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.footer-brand p {
  margin-top: var(--space-2);
  opacity: 0.6;
  font-size: var(--font-size-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  font-size: var(--font-size-sm);
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom p {
  font-size: var(--font-size-sm);
  opacity: 0.4;
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    padding: var(--space-12) 0 var(--space-6);
  }
  .footer-content {
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    width: 100%;
  }
  .footer-brand p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: var(--space-4);
  }
  .footer-links li {
    display: block;
    margin-left: 0;
  }
  .footer-links a {
    display: block;
    padding: var(--space-2) 0;
    font-size: var(--font-size-base);
  }
  .footer-bottom {
    margin-top: var(--space-6);
  }
  .footer-bottom p {
    font-size: var(--font-size-xs);
  }
}

/*# sourceMappingURL=main.css.map */
