/* Mana Oils Link-in-Bio — Mobile-first, organic pill design */

:root {
  /* Brand palette */
  --green: #445633;         /* deep green */
  --green-2: #3b492b;       /* hover shade */
  --yellow: #f9ec69;        /* mango yellow */
  --yellow-2: #e8da5d;      /* hover */
  --orange: #ec682a;        /* cedar orange */
  --orange-2: #d95c23;      /* hover */
  --pink: #f1d4e7;          /* blush */
  --pink-2: #e9c2db;        /* hover */
  --beige: #f2e1d0;         /* soft sand */

  /* UI tokens */
  --bg: var(--orange);
  --bg-2: var(--orange-2);
  --ink: var(--green);
  --radius-pill: 999px;
  --shadow: 0 10px 18px rgba(68, 86, 51, 0.18);
  --shadow-sm: 0 6px 12px rgba(68, 86, 51, 0.14);
}

/* Custom brand font: Moga */
@font-face {
  font-family: "Moga";
  src: url("assets/moga.woff2") format("woff2"),
       url("assets/moga.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Moga", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  /* Use brand background image with color fallback */
  background-color: var(--bg);
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-art {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 24px clamp(16px, 4vw, 40px) 32px;
}

.brand { text-align: center; }
.logo {
  width: clamp(120px, 28vw, 180px);
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(16,52,31,0.18));
}
.eyebrow {
  margin: 8px 0 6px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.8;
}
.tagline {
  margin: 8px 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--yellow);
}

/* Social icon row under the tagline */
.socials {
  display: inline-flex;
  gap: 14px;
  margin: 18px 0 10px;
}
.socials .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}
.socials .social::after { content: none; }
.socials .social:hover { transform: translateY(-1px) scale(1.06); }
.socials .social:active { transform: translateY(0) scale(1.0); }
.socials img.icon { display: block; width: 32px; height: 32px; object-fit: contain; }

/* Ensure all variants have no background */
.socials .social.wa,
.socials .social.ig,
.socials .social.tt,
.socials .social.em { background: transparent; box-shadow: none; border: 0; color: inherit; }

.links {
  width: min(720px, 92vw);
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.btn {
  --padY: clamp(18px, 4.2vw, 24px);
  --padX: clamp(22px, 5vw, 34px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--padY) var(--padX);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  font-size: clamp(20px, 4vw, 30px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background-color: transparent;
  background-image: url("assets/button.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-shadow: none;
  transition: transform .15s ease, filter .15s ease;
  border: 0;
  position: relative;
  isolation: isolate;
}

/* Organic blobby edges using variable radii to avoid perfectly uniform pills */
.btn { border-radius: var(--radius-pill); }
.btn:hover { transform: translateY(-2px); filter: brightness(1.06) saturate(1.02); }
.btn:active { transform: translateY(0); filter: brightness(0.96) saturate(0.98); }


.footer { margin-top: 32px; opacity: 0.9; }
.footer small { font-size: clamp(14px, 1.8vw, 18px); line-height: 1.6; }
.footer a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer a:hover { text-decoration-thickness: 2px; }

/* Desktop tweaks */
@media (min-width: 900px) {
  .tagline { font-size: 28px; }
  .links { gap: 18px; }
}

.hidden { position: absolute; width: 0; height: 0; overflow: hidden; }
