/*
Theme Name: CSCB Full Width
Theme URI: https://computerservicecostablanca.com
Author: Computer Service Costa Blanca
Author URI: https://computerservicecostablanca.com
Description: Donker navy/electric-cyan full-width thema voor ComputerService Costa Blanca. Gebouwd op Outfit (koppen) en DM Sans (body), met full-width secties, WhatsApp-first call-to-actions en op maat gemaakte dienst-templates.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: cscb-full-width
*/

/* ==========================================================================
   1. CSS VARIABELEN
   ========================================================================== */
:root {
  --navy-950: #070b14;
  --navy-900: #0b1220;
  --navy-800: #101b2e;
  --navy-700: #16243b;
  --navy-600: #1d3050;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --cyan-200: #a5f3fc;
  --white: #f5f7fa;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --success: #34d399;

  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

/* ==========================================================================
   2. RESET & BASIS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-900);
  background-image:
    radial-gradient(800px 500px at 85% -10%, rgba(34, 211, 238, 0.10), transparent 60%),
    radial-gradient(600px 400px at -10% 20%, rgba(34, 211, 238, 0.06), transparent 60%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

a { color: var(--cyan-300); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--cyan-200); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--slate-300); }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.2em; color: var(--slate-300); }
li { margin-bottom: .4em; }

:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.cscb-section {
  width: 100%;
  padding: clamp(48px, 8vw, 96px) var(--pad);
}
.cscb-container {
  max-width: var(--maxw);
  margin: 0 auto;
}
.cscb-section--alt {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cscb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan-300);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.cscb-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 4px rgba(34,211,238,.18); }

.cscb-grid {
  display: grid;
  gap: 24px;
}
.cscb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cscb-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .cscb-grid--3, .cscb-grid--2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   4. HEADER
   ========================================================================== */
.cscb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cscb-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.cscb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}
.cscb-logo img { border-radius: 0; width: auto; }
.cscb-logo span { color: var(--cyan-300); }

.cscb-nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.cscb-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 22px;
}
.cscb-nav a {
  color: var(--slate-300);
  font-size: .95rem;
  font-weight: 500;
}
.cscb-nav a:hover { color: var(--white); }

/* dropdown */
.cscb-nav li { position: relative; }
.cscb-nav .sub-menu {
  display: none;
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 260px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.cscb-nav li:hover > .sub-menu { display: flex; }
.cscb-nav .sub-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: .9rem;
}
.cscb-nav .sub-menu a:hover { background: rgba(34,211,238,.08); color: var(--cyan-300); }

.cscb-header__contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cscb-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}
.cscb-header__phone svg { width: 18px; height: 18px; color: var(--cyan-300); flex-shrink: 0; }
.cscb-header__phone:hover { color: var(--cyan-300); }

.cscb-menu-toggle { display: none; }

@media (max-width: 900px) {
  .cscb-header__inner { justify-content: space-between; }
  .cscb-header__phone span { display: none; }
  .cscb-header__contact { gap: 10px; }
  .cscb-header__phone {
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    padding: 8px 10px;
  }
  .cscb-nav { display: none; flex: 0; }
  .cscb-menu-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    color: var(--white);
    padding: 8px 10px;
    cursor: pointer;
  }
  body.cscb-nav-open .cscb-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--pad) 24px;
  }
  body.cscb-nav-open .cscb-nav ul { flex-direction: column; gap: 6px; width: 100%; }
  body.cscb-nav-open .cscb-nav .sub-menu { position: static; display: flex; margin: 4px 0 8px 12px; }
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.cscb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cscb-btn--primary {
  background: var(--cyan-400);
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(34,211,238,.25);
}
.cscb-btn--primary:hover { background: var(--cyan-300); transform: translateY(-1px); color: var(--navy-950); }
.cscb-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}
.cscb-btn--ghost:hover { border-color: var(--cyan-400); color: var(--cyan-300); }
.cscb-btn--sm { padding: 9px 18px; font-size: .85rem; }

/* ==========================================================================
   6. HERO
   ========================================================================== */
.cscb-hero {
  padding: clamp(64px, 10vw, 120px) var(--pad) clamp(48px, 7vw, 80px);
}
.cscb-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .cscb-hero__inner { grid-template-columns: 1fr; }
}
.cscb-hero__langs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.cscb-lang-pill {
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate-400);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px 12px;
}
.cscb-hero p.lead {
  font-size: 1.15rem;
  color: var(--slate-300);
  max-width: 50ch;
}
.cscb-hero__ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.cscb-hero__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.cscb-hero__art img { border-radius: 0; }

/* ==========================================================================
   7. SERVICE CARDS
   ========================================================================== */
.cscb-card {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color .2s ease, transform .2s ease;
}
.cscb-card:hover {
  border-color: rgba(34,211,238,.35);
  transform: translateY(-3px);
}
.cscb-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.25);
  margin-bottom: 18px;
}
.cscb-card h3 { margin-bottom: .4em; }
.cscb-card p { font-size: .95rem; }
.cscb-card a.cscb-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  margin-top: 14px;
  color: var(--cyan-300);
}

/* ==========================================================================
   8. WHY-US / FEATURE LIST
   ========================================================================== */
.cscb-feature {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cscb-feature:last-child { border-bottom: none; }
.cscb-feature__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(52, 211, 153, .12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}
.cscb-feature strong { color: var(--white); display: block; margin-bottom: 2px; }
.cscb-feature span { color: var(--slate-400); font-size: .92rem; }

/* ==========================================================================
   9. PRICING TABLE
   ========================================================================== */
.cscb-price-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cscb-price-card h3 { color: var(--cyan-300); font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.cscb-price-card .cscb-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
}
.cscb-price-card .cscb-price small { font-size: 1rem; color: var(--slate-400); font-weight: 500; }
.cscb-price-card--featured {
  border-color: rgba(34,211,238,.4);
  background: linear-gradient(180deg, rgba(34,211,238,.07), var(--navy-800));
  position: relative;
}
.cscb-price-card--featured::before {
  content: "Populair";
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--cyan-400);
  color: var(--navy-950);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.cscb-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.cscb-faq-item h4 { margin-bottom: .35em; color: var(--cyan-200); font-size: 1.02rem; }

/* ==========================================================================
   10. SERVICE AREA TAGS
   ========================================================================== */
.cscb-area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cscb-area-tag {
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate-300);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 16px;
}

/* ==========================================================================
   11. CTA BANNER
   ========================================================================== */
.cscb-cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34,211,238,.14), var(--navy-800));
  border: 1px solid rgba(34,211,238,.25);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cscb-cta-banner h2 { margin-bottom: .2em; }
.cscb-cta-banner p { margin-bottom: 0; }

/* ==========================================================================
   12. SINGLE SERVICE PAGE TEMPLATE
   ========================================================================== */
.cscb-service-hero {
  padding: clamp(56px, 8vw, 96px) var(--pad) 48px;
}
.cscb-service-hero__inner { max-width: 880px; margin: 0 auto; text-align: left; }
.cscb-service-hero h1 { margin-bottom: .35em; }
.cscb-service-hero .subhead { font-size: 1.2rem; color: var(--cyan-200); font-weight: 500; margin-bottom: 22px; }
.cscb-service-body { max-width: 760px; margin: 0 auto; }
.cscb-service-body p { font-size: 1.05rem; }

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.cscb-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px var(--pad) 28px;
}
.cscb-footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 800px) {
  .cscb-footer__grid { grid-template-columns: 1fr; }
}
.cscb-footer h4 { font-size: .95rem; color: var(--white); margin-bottom: 14px; }
.cscb-footer ul { list-style: none; padding: 0; margin: 0; }
.cscb-footer li { margin-bottom: 8px; }
.cscb-footer a { color: var(--slate-400); font-size: .92rem; }
.cscb-footer a:hover { color: var(--cyan-300); }
.cscb-footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: var(--slate-500);
}

/* ==========================================================================
   14. WHATSAPP FLOATING BUTTON
   ========================================================================== */
.cscb-whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #06210f;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  text-decoration: none;
}
.cscb-whatsapp-float:hover { color: #06210f; transform: translateY(-2px); }
.cscb-whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 600px) {
  .cscb-whatsapp-float span { display: none; }
  .cscb-whatsapp-float { padding: 14px; }
}

/* ==========================================================================
   15. UTIL
   ========================================================================== */
.cscb-center { text-align: center; }
.cscb-narrow { max-width: 700px; margin-left: auto; margin-right: auto; }
.cscb-mt-lg { margin-top: 48px; }
.screen-reader-text {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
