:root {
  --nav-color: #181165;
  --nav-text: #f3deba;
  --primary-color: #011517;
  --secondary-color: #f3deba;
  --hover-color: #a9907e;
  --card-bg: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.14);
}

@font-face {
  font-family: "Firlest";
  src: url("../assets/fonts/firlest/Firlest-Regular.otf") format("opentype");
  font-display: swap;
}

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

html{
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--primary-color);
  color: var(--nav-text);
  line-height: 1.5;
}

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(121, 186, 159, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

#mana-icon-white {
  background-color: #fdfbce;
  border-radius: 50%;
  border: 2px solid black;
  padding: 0.2em;
}

#mana-icon-black {
  background-color: #0d0c0c;
  border-radius: 50%;
  border: 2px solid black;
  padding: 0.2em;
}

#mana-icon-red {
  background-color: #943d1a;
  border-radius: 50%;
  border: 2px solid black;
  padding: 0.2em;
}

#mana-icon-green {
  background-color: #38a44a;
  border-radius: 50%;
  border: 2px solid black;
  padding: 0.2em;
}

#mana-icon-blue {
  background-color: #3a7ab6;
  border-radius: 50%;
  border: 2px solid black;
  padding: 0.2em;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.brand {
  font-family: "Firlest", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
}

.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--nav-text);
}

.nav-list a:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.08);
}

.nav-list a:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  place-items: center;
  background-image: url("../img/wizardbookls.png");
  alt: Generated with Openai ChatGPT;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 21, 23, 0.65) 0%,
    rgba(1, 21, 23, 0.85) 65%,
    rgba(1, 21, 23, 1) 100%
  );
}

.hero-content {
  position: relative;
  padding: 3.5rem 0;
}

.hero-title {
  margin: 0;
  font-family: "Firlest", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--secondary-color);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  margin: 0.75rem 0 0;
  max-width: 60ch;
  color: rgba(171, 214, 182, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Sections */
.section {
  padding: 3rem 0;
}

h2 {
  margin: 0 0 0.75rem;
  color: var(--secondary-color);
}

h3 {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.callout {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(243, 222, 186, 0.25);
  background: rgba(24, 17, 101, 0.25);
}

/* Form */
.form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  max-width: 520px;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  color: var(--nav-text);
}

textarea {
  resize: vertical;
}

.fineprint {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
/* Location */
.location {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  max-width: 720px;
}


/* WhatsApp */
.whatsapp {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  max-width: 720px;
}

.whatsapp h3 {
  margin: 0;
  color: var(--secondary-color);
}

.whatsapp-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.qr {
  padding: 0.6rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
}

.qr img {
  width: 220px;
  height: 220px;
  z-index: 9999;
}

@media (max-width: 520px) {
  .qr img {
    width: 180px;
    height: 180px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #111;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.03);
}

.btn-ghost {
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid rgba(243, 222, 186, 0.35);
}

.btn-ghost:hover {
  background: rgba(243, 222, 186, 0.12);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.muted {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}