/* =======================================================
   Femboy's House – Quark Custom Style (Final Version)
   ======================================================= */

:root {
  --bg-dark: #050618;
  --purple: #a477ff;
  --pink: #ff7ae6;
  --cyan: #7df2ff;
  --text: #f4efff;
}

/* =======================================================
   GLOBAL BACKGROUND
   ======================================================= */

body {
  background:
    radial-gradient(circle at top, rgba(164,119,255,0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(125,242,255,0.18), transparent 60%),
    var(--bg-dark);
  color: var(--text);
}

/* =======================================================
   HEADER + LOGO
   ======================================================= */

#header {
  background: rgba(5,6,24,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(164,119,255,0.55);
}

.fh-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  user-select: none;
}

.fh-logo-icon {
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  filter: drop-shadow(0 0 6px rgba(255,122,230,0.6));
}

.fh-logo-text {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(164,119,255,0.35));
  opacity: 0.95;
}

@media (max-width: 768px) {
  .fh-logo-icon { font-size: 1.2rem; }
  .fh-logo-text { font-size: 0.85rem; letter-spacing: 0.1em; }
}

/* =======================================================
   NAVBAR UNDERLINE + ACTIVE FIX
   ======================================================= */

#navbar a {
  position: relative;
  padding-bottom: 0.25rem;
  color: var(--text) !important;
}

#navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transition: width 0.18s ease;
}

#navbar a:hover::after,
#navbar .active > a::after {
  width: 100%;
}

#navbar .active > a {
  background: none !important;
  color: var(--text) !important;
}

/* =======================================================
   HERO SECTION
   ======================================================= */

.fh-hero {
  position: relative;
  margin: 2rem auto;
  padding: 2.8rem 2.2rem;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5,6,24,0.9), rgba(5,6,40,0.96));
  border: 1px solid rgba(164,119,255,0.8);
  box-shadow:
    0 0 30px rgba(5,0,45,0.9),
    0 0 60px rgba(255,122,230,0.25);
}

.fh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,122,230,0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(125,242,255,0.35), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.fh-hero-inner {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.fh-hero-header {
  margin-bottom: 1.5rem;
}

.fh-hero-kicker {
  letter-spacing: 0.28em;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}

.fh-hero-title {
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}

.fh-gradient {
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fh-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(244,239,255,0.96);
}

/* =======================================================
   BUTTONS
   ======================================================= */

.fh-hero-actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center !important;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.fh-btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

.fh-btn-primary:hover {
  filter: brightness(1.05);
}

.fh-btn-ghost {
  background: rgba(5,6,24,0.75);
  border-color: rgba(244,239,255,0.4);
  color: var(--text) !important;
}

.fh-btn-ghost:hover {
  border-color: var(--pink);
}

.fh-btn:active,
.fh-btn.active,
.fh-btn-primary:active,
.fh-btn-primary.active {
  background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
  color: #fff !important;
}

.fh-btn-ghost.active,
.fh-btn-ghost:active {
  background: rgba(5,6,24,0.75) !important;
  border-color: rgba(244,239,255,0.4) !important;
  color: var(--text) !important;
}

/* =======================================================
   CARDS
   ======================================================= */

.fh-card {
  margin-top: 1.8rem;
  padding: 1.6rem 1.8rem;
  border-radius: 22px;
  background: rgba(5,6,26,0.96);
  border: 1px solid rgba(164,119,255,0.55);
  box-shadow: 0 14px 34px rgba(0,0,0,0.78);
}

/* =======================================================
   FOOTER — Custom + Center Fix + No Blue Links
   ======================================================= */

#fh-footer {
  margin-top: 40px;
  padding: 35px 20px;
  text-align: center !important;
  border-top: 1px solid rgba(164,119,255,0.4);

  background: linear-gradient(
    180deg,
    rgba(5,6,24,0.7),
    rgba(5,6,30,0.95)
  );

  box-shadow: 0 -10px 30px rgba(0,0,0,0.45);
}

.fh-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center !important;
}

#fh-footer * {
  text-align: center !important;
}

.fh-footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* No more blue links */
#fh-footer a {
  color: var(--text) !important;
  opacity: 0.85;
  text-decoration: none;
  transition: 0.2s ease;
}

#fh-footer a:hover {
  opacity: 1;
  color: var(--pink) !important;
  text-shadow: 0 0 8px rgba(255,122,230,0.6);
}

.fh-footer-links,
.fh-footer-socials {
  margin: 8px 0;
  font-size: 0.95rem;
}

.fh-footer-copy {
  margin-top: 14px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* =======================================================
   MOBILE FIXES
   ======================================================= */

@media (max-width: 768px) {

  .fh-hero {
    padding: 2rem 1.2rem !important;
  }

  .fh-hero-title {
    white-space: normal !important;
  }

  .fh-hero-actions {
    flex-direction: column;
  }
}
