/* ============================================================
   YourSiteSpace - style.css
   ============================================================ */

:root {
  --pink:  #E8387A;
  --sky:   #5BC8F5;
  --green: #6DBF4A;
  --amber: #F59E0B;
  --dark:  #0a0a0a;
  --navy:  #0D1B2A;
  --white: #ffffff;
  --cream: #f0f0f0;
  --muted: #aaaaaa;
  --r:     4px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}

/* LOGO */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo {
  height: 44px;
  width: auto;
  display: block;
  max-width: 280px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  max-width: 240px;
  margin-bottom: 14px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--pink); }
.header-nav .nav-login {
  background: var(--pink);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
}
.header-nav .nav-login:hover { background: #c42d65; color: var(--white); }

/* HAMBURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .nav-login {
  margin-top: 12px;
  background: var(--pink);
  color: var(--white);
  padding: 13px;
  border-radius: 20px;
  text-align: center;
  border-bottom: none !important;
}

/* ============================================================
   VIDEO BACKGROUNDS
   ============================================================ */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

/* ============================================================
   FULL-SCREEN SECTIONS
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.bg-space {
  background: linear-gradient(135deg, #0a0a14 0%, #0d1b35 50%, #0a0a14 100%);
}
.bg-social  { background: #080808; }
.bg-bespoke { background: #080808; }
.bg-seo     { background: #080808; }

.bg-dark-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
}
.section-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* HERO STAR FIELD */
.hero-stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232,56,122,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(109,191,74,0.08) 0%, transparent 40%);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.highlight-pink  { color: var(--pink); }
.highlight-sky   { color: var(--sky); }
.highlight-green { color: var(--green); }

.hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.7;
  max-width: 680px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-bold {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 32px;
}
.section-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.section-body {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 700px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.section-body strong { color: var(--pink); }
.section-body a { color: var(--pink); text-decoration: underline; }

.social-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 20px;
}
.social-list li { font-size: 18px; font-weight: 700; color: var(--sky); }

/* SLIDE DOTS */
.slide-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.slide-dots span { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dot-pink  { background: var(--pink); }
.dot-sky   { background: var(--sky); }
.dot-green { background: var(--green); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: #c42d65; box-shadow: 0 8px 20px rgba(232,56,122,0.4); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }

/* ============================================================
   SUPPORT BAND
   ============================================================ */
.support-band {
  background: var(--navy);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.support-band h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}
.support-band p {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.support-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.support-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.support-card .icon { font-size: 40px; margin-bottom: 16px; }
.support-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.support-card p { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.support-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.work-section { background: #080808; padding: 96px 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.work-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.work-card:hover { transform: translateY(-4px); border-color: var(--pink); }
.work-card-preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.work-card-body { padding: 24px; }
.work-card-body h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.work-card-body .work-type {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
}
.work-card-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.work-card-body a { font-size: 13px; font-weight: 600; color: var(--sky); transition: color 0.2s; }
.work-card-body a:hover { color: var(--white); }
.work-card-body a::after { content: ' >'; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #080814 0%, #0d1b35 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,56,122,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.prose h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.prose p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--pink);
  border-radius: 6px;
  padding: 24px 20px;
}
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.75; max-width: 240px; margin-bottom: 16px; }
.footer-contact a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--cream); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-fb a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-fb a:hover { color: var(--pink); }

/* ============================================================
   COOKIE BAR
   ============================================================ */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie p { font-size: 13px; color: var(--muted); }
.cookie button {
  background: var(--pink); color: var(--white); border: none;
  padding: 9px 22px; border-radius: 20px; font-size: 13px;
  font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.cookie button:hover { background: #c42d65; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .slide-dots { display: none; }
  .hero-section { min-height: auto; padding: 90px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .site-logo { height: 36px; max-width: 220px; }
  .header-inner { height: 56px; }
}
@media (max-width: 480px) {
  .site-logo { height: 30px; max-width: 180px; }
  .footer-logo-img { height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
