/* style.css */
/* =========================================================
   Qaintai.org - Global Stylesheet (Final Planet Consistent Edition)
   ========================================================= */

:root {
  --accent: #00ff88;
  --accent-gold: #d4af37;
  --text: #e9e9e9;
  --bg: #000;
  --glass: rgba(0, 0, 0, 0.45);
  --glass-strong: rgba(0, 0, 0, 0.6);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.5);
  --muted: #999;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* =========================================================
   BACKGROUND - STARFIELD
   ========================================================= */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.05), transparent 70%),
    url('/media/img/stars.png') center center / cover no-repeat;
  opacity: 0.65;
  background-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

nav, main, footer {
  position: relative;
  z-index: 2;
}

/* =========================================================
   NAVIGATION - PLANET CONSISTENT WITH GREEN BUTTONS
   ========================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--line);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}

nav ul li a {
  display: inline-block;
  padding: 0.5em 1em;
  border: 2px solid var(--accent);
  border-radius: 10px;
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
  background: var(--accent);
  color: #000;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(0,255,136,0.4);
  border-radius: 5px;
  overflow: hidden;
}
.lang-switch a {
  flex: 1;
  padding: 6px 12px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9em;
  color: white;
}
.lang-switch a.en { background-color: #00cc66; }
.lang-switch a.nl { background-color: #cc0000; }

/* =========================================================
   PANELS & CONTENT BLOCKS
   ========================================================= */
.panel, .intro-container {
  position: relative;
  margin: 160px auto 120px auto;
  max-width: 800px;
  width: min(92vw, 800px);
  padding: 2rem;
  background: transparent;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.intro-container-about {
  position: relative;
  margin: 160px auto 120px auto;
  max-width: 800px;
  width: min(92vw, 800px);
  padding: 2rem;
  background: transparent;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.panel h1, .intro-container h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  margin-bottom: 0.2em;
  text-shadow: 0 0 15px rgba(0,255,136,0.25);
}

.panel h2, .intro-container h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent-gold);
  margin-bottom: 1em;
  text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.intro-container-about h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--accent);
  margin: 0.8em 0;
  text-shadow: 0 0 10px rgba(0,255,136,0.3);
}

.intro-container-about p {
  margin: 1em 0;
  line-height: 1.8;
}

.intro-container-about a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.intro-container-about a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.intro-container-about a:visited {
  color: var(--accent);
}

.intro-container-about small {
  color: var(--muted);
  font-size: 0.9em;
}

.watermark-container {
  position: relative;
  margin: 3rem 0;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watermark {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: rgba(0, 255, 136, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  user-select: none;
  pointer-events: none;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.cta-mail {
  margin-top: 20px;
  line-height: 1.8;
}

.cta-mail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-mail a {
  color: var(--accent);
  font-weight: bold;
}

/* =========================================================
   FORMS
   ========================================================= */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input[type="text"], input[type="email"], textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

button, input[type="submit"] {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

button:hover, input[type="submit"]:hover {
  background: var(--accent-gold);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9em;
  color: #aaa;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}

footer a {
  color: #aaa;
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  nav ul {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav ul li a {
    padding: 0.4em 0.8em;
    font-size: 0.9rem;
  }
  .panel, .intro-container, .intro-container-about {
    margin: 100px auto;
    padding: 1.5rem;
  }
}
/* style.css */
