:root {
  --text:#111;
  --border:#ddd;
  --bg:#fff;
}

body {
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
}

body.dark {
  --bg:#0f0f0f;
  --text:#fff;
  --border:#333;
}

/* HEADER */
.header {
  border-bottom:1px solid var(--border);
}

.container {
  max-width:1100px;
  margin:auto;
  padding:30px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo {
  font-weight:900;
  font-size:1.4rem;
}

nav a {
  margin-left:26px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  position:relative;
}

nav a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--text);
  transition:.3s;
}

nav a:hover::after {
  width:100%;
}

/* CONTACT */
.contact-page {
  max-width:600px;
  margin:80px auto;
  padding:20px;
}

.contact-page h1 {
  margin-bottom:10px;
}

.contact-page p {
  margin-bottom:30px;
}

form {
  display:flex;
  flex-direction:column;
}

label {
  font-weight:600;
  margin-bottom:6px;
}

input, textarea {
  padding:12px;
  margin-bottom:18px;
  border:1px solid var(--border);
  font-family:inherit;
}

button {
  padding:12px;
  border:1px solid #000;
  background:#000;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

button:hover {
  background:#fff;
  color:#000;
}

#status-message {
  margin-top:12px;
  font-weight:600;
}

/* ================================
   FOOTER – DARK TEXT
================================ */
.footer {
  border-top: 1px solid var(--border);
  background: transparent;
  padding: 28px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left {
  font-size: 14px;
  color: #111; /* dark text */
  white-space: nowrap;
}

/* CENTER – SOCIAL ICONS */
.footer-center {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-center a {
  font-size: 18px;
  color: #111; /* dark */
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-center a:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

/* RIGHT – TERMS & PRIVACY */
.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-right a {
  font-size: 13px;
  color: #111; /* dark text */
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* SAME hover as center */
.footer-right a:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

.hamburger {
    display: none;
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {

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

  .hamburger {
      display: block;
      cursor: pointer;
      font-size: 28px;
      margin-right: 15px;
  }

  /* Hide Desktop Nav */
  nav, 
  .nav-right nav {
      display: none !important;
  }
  /* -------------------------------
   MOBILE DARK MODE NAV
    ---------------------------------*/
    body.dark .mobile-nav {
        background: var(--card); /* dark background */
    }

    body.dark .mobile-nav a {
        color: var(--text); /* white text */
    }

    body.dark .mobile-nav a:hover {
        background: var(--accent); /* hover background in dark mode */
        color: var(--bg);           /* hover text in dark mode */
    }

    body.dark .mobile-close {
        color: var(--text); /* close button white */
    }

    body.dark .mobile-close:hover {
        color: var(--accent); /* hover color for close button */
    }

  /* Mobile Nav Dropdown */
  .mobile-nav {
      display: none;
      flex-direction: column;
      background: #fff;
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 10px 0;
      border-bottom: 1px solid #ccc;
      z-index: 9999 !important;
  }

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

  .mobile-nav a {
      padding: 12px 20px;
      color: #000;
      font-weight: 600;
      text-decoration: none;
      border-top: 1px solid #eee;
  }

  .mobile-nav a:first-child {
      border-top: none;
  }

  .mobile-nav a:hover {
      background: #000;
      color: #fff;
      transition: 0.2s ease;
  }

  .mobile-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text);
    text-align: right;
    width: 100%;
    padding: 10px 20px;
    cursor: pointer;
}

.mobile-close:hover {
    color: var(--accent);
}
.footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-center,
  .footer-right {
    justify-content: center;
  }
}