/* =========================================================
   Baja Uncovered - Global Site CSS (paste into /css/site.css)
   Foundation stylesheet you can reuse across pages.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  /* Colors */
  --bg:#071018;                 /* page background */
  --surface:#0c1722;            /* card surface */
  --text:#f3f6f8;
  --muted:#b7c4cc;

  --border:rgba(255,255,255,.12);
  --border-strong:rgba(255,255,255,.18);

  --accent:#00c2ff;             /* primary accent */
  --accent-ink:#061018;         /* text on accent */
  --shadow: 0 20px 60px rgba(0,0,0,.55);

  /* Radius */
  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:12px;

  /* Spacing scale */
  --space-1:6px;
  --space-2:10px;
  --space-3:14px;
  --space-4:18px;
  --space-5:22px;
  --space-6:26px;

  /* Container width */
  --container-max: 980px;

  /* Icon System (global) */
  --icon-size: 48px;       /* change once, updates everywhere */
  --icon-radius: 12px;     /* rounded square corners */

  /* Follow gradients */
  --fb1:#1f4fbf; --fb2:#163c98;
  --ig1:#5b2abf; --ig2:#c13584;
  --tt1:#0d0f14; --tt2:#000000;
  --yt1:#d00000; --yt2:#8f0000;

  /* Spotify gradient (green) */
  --sp1:#1ED760;  /* bright top */
  --sp2:#1DB954;  /* official spotify green */
  --sp3:#169c46;  /* deeper bottom */
}

/* ---------- Base / Reset ---------- */
*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 35% -10%, rgba(0,194,255,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(0,255,179,.10), transparent 55%),
    var(--bg);
}

img{ max-width:100%; height:auto; }
a{ color:inherit; }
strong{ font-weight:800; }

/* ---------- Layout ---------- */
.container{
  width:min(var(--container-max), 92vw);
  margin:40px auto 70px;
}

.card{
  background: rgba(12,23,34,.92);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card__header{
  padding: var(--space-6) var(--space-6) 10px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,194,255,.14), transparent 70%);
}

.grid-2{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:0;
}

@media (max-width: 860px){
  .grid-2{ grid-template-columns: 1fr; }
}

.section{
  padding: var(--space-5) var(--space-6) 28px;
}

.section + .section{
  border-left: 1px solid var(--border);
}

@media (max-width: 860px){
  .section + .section{
    border-left:none;
    border-top:1px solid var(--border);
  }
}

/* ---------- Typography ---------- */
.h1{
  margin:0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing:.2px;
}
.h2{
  margin:0 0 10px;
  font-size: 18px;
}
.sub{
  margin:0 0 14px;
  color:var(--muted);
  line-height: 1.45;
  font-size: 15px;
}
.note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ---------- Logo/Image block ---------- */
.media-center{ display:flex; justify-content:center; }
.logo-block{ margin: 6px 0 18px; }
.logo-block__img{
  width: min(420px, 100%);
  display:block;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(0,0,0,.12);
  padding: 10px; /* remove if you want image flush */
}

/* ---------- Forms ---------- */
.form{ margin-top: 8px; }

.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px){
  .form__row{ grid-template-columns: 1fr; }
}

.label{
  display:block;
  font-weight: 800;
  margin: 12px 0 7px;
  font-size: 13px;
  color: #eaf1f5;
}

.input, .select, .textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
  font-size: 15px;
}

.textarea{ min-height: 110px; resize: vertical; }

.input::placeholder, .textarea::placeholder{
  color: rgba(243,246,248,.55);
}

.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.18);
}
.consent input{ width:auto; margin-top:3px; }
.consent small{ color: var(--muted); line-height:1.35; }

.actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

/* ---------- Buttons ---------- */
.btn{
  cursor:pointer;
  border:none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  transition: transform .06s ease, filter .2s ease;
}
.btn:active{ transform: translateY(1px); }
.btn:hover{ filter: brightness(1.06); }

.btn--primary{
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--secondary{
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--text);
}

/* ---------- Honeypot anti-spam ---------- */
.hp{ position:absolute; left:-5000px; }

/* =========================================================
   GLOBAL ICON SYSTEM (edge-to-edge, no padding)
   Use: <div class="icon-box"><img ...></div>
   ========================================================= */
.icon-box{
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: var(--icon-radius);
  overflow: hidden;         /* keeps rounded corners clean */
  display:block;
  padding: 0;               /* no padding */
  flex: 0 0 auto;
}
.icon-box img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;        /* fills square completely */
  object-position: center;
}

/* Optional icon modifiers for future use */
.icon-box--circle{ border-radius: 999px; }
.icon-box--shadow{ box-shadow: 0 10px 22px rgba(0,0,0,.28); }
.icon-box--border{ border: 1px solid rgba(255,255,255,.18); }

/* ---------- Follow List Component ---------- */
.follow-list{
  display:grid;
  gap: 14px;
  margin-top: 10px;
}

.follow-item{
  text-decoration:none;
  color: var(--text);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  display:flex;
  align-items:center;
  justify-content: space-between;
  min-height: 64px;
  transition: transform .08s ease, filter .2s ease;
}
.follow-item:hover{ filter: brightness(1.08); }
.follow-item:active{ transform: translateY(1px); }

.follow-left{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px;
  min-width:0;
}

.follow-name{
  font-weight: 900;
  font-size: 18px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.follow-cta{
  margin-right: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  min-width: 110px;
  text-align:center;
}

/* Follow backgrounds */
.bg-facebook{ background: linear-gradient(180deg, var(--fb1), var(--fb2)); }
.bg-instagram{ background: linear-gradient(90deg, var(--ig1), var(--ig2)); }
.bg-tiktok{ background: linear-gradient(180deg, var(--tt1), var(--tt2)); }
.bg-youtube{ background: linear-gradient(180deg, var(--yt1), var(--yt2)); }

/* ✅ Spotify (GREEN gradient) */
.bg-spotify{
  background: linear-gradient(180deg, var(--sp1) 0%, var(--sp2) 45%, var(--sp3) 100%);
}

/* ---------- Footer ---------- */
.footer{
  padding: 14px 26px 22px;
  border-top: 1px solid var(--border);
  color: rgba(243,246,248,.60);
  font-size: 12px;
  line-height:1.35;
}

/* ---------- Small utility helpers (optional) ---------- */
.mt-0{ margin-top:0 !important; }
.mb-0{ margin-bottom:0 !important; }
.center{ text-align:center; }