/* 2QUEER.COM - Bespoke Theme & Stylesheet */

:root {
  --bg-dark: #0f0817;
  --bg-card: #180e25;
  --bg-card-hover: #221435;
  --bg-glass: rgba(24, 14, 37, 0.75);
  --text-main: #f5f0fb;
  --text-muted: #b3a5c7;
  --accent-pink: #ff2a85;
  --accent-cyan: #00f0ff;
  --accent-purple: #9d4edd;
  --accent-gold: #ffb800;
  --border-color: rgba(255, 255, 255, 0.12);
  --gradient-pride: linear-gradient(135deg, #ff2a85 0%, #9d4edd 50%, #00f0ff 100%);
  --shadow-glow: 0 10px 30px rgba(255, 42, 133, 0.25);
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* DOMAIN SALE BANNER - MANDATORY INCLUSION */
.domain-sale-banner {
  position: relative;
  z-index: 9999;
  width: 100%;
  color: #ffffff;
  background: radial-gradient(circle at 15% 50%, rgba(255, 42, 133, 0.45), transparent 34%), linear-gradient(100deg, #0d0614 0%, #1a0b26 58%, #2e0921 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  font-family: var(--font-family);
}
.domain-sale-banner__content {
  width: min(1200px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.domain-sale-banner__text {
  display: grid;
  gap: 4px;
  line-height: 1.35;
}
.domain-sale-banner__text strong {
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: -0.01em;
  color: #ffffff;
}
.domain-sale-banner__text span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.domain-sale-banner__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--gradient-pride);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(255, 42, 133, 0.35);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.domain-sale-banner__button:hover, .domain-sale-banner__button:focus-visible {
  box-shadow: 0 10px 28px rgba(0, 240, 255, 0.45);
  transform: translateY(-2px);
  outline: none;
}
@media (max-width: 680px) {
  .domain-sale-banner__content {
    min-height: auto;
    padding: 14px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .domain-sale-banner__button {
    width: 100%;
  }
}

/* HEADER & NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 8, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.brand-logo img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent-cyan);
}
.cta-link {
  background: rgba(255, 42, 133, 0.15);
  color: var(--accent-pink) !important;
  border: 1px solid var(--accent-pink);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: all 0.2s !important;
}
.cta-link:hover {
  background: var(--accent-pink) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title span {
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gradient-pride);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 42, 133, 0.4);
}
.btn-secondary {
  background: var(--bg-card);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* SECTION COMMON */
.section {
  padding: 4.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* GRID & CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-pink);
  box-shadow: 0 12px 30px rgba(157, 78, 221, 0.15);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 42, 133, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-pink);
}
.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* STATS BAR */
.stats-bar {
  background: var(--bg-card);
  border-y: 1px solid var(--border-color);
  padding: 3rem 1.5rem;
  margin: 2rem 0;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* FORM STYLES */
.form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(15, 8, 23, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
}
.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* FOOTER */
.site-footer {
  margin-top: auto;
  background: #09040e;
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 2rem 1.5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 320px;
  font-size: 0.95rem;
}
.footer-column h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent-cyan);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.show {
    display: flex;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
