/* ===========================================================
   The Alicias — shared stylesheet
   Palette: shoegaze / dream-pop — baby blue, recolored —
   deep navy-black base, washed baby-blue & sky-blue blooms,
   soft blurred glows, faint grain.
   =========================================================== */

:root {
  --ink: #eaf6ff;          /* main text — soft off-white, blue-tinted */
  --ink-dim: #b7d2e3;      /* secondary text */
  --paper: #000000;        /* page background — black */
  --paper-2: #141414;      /* card background — near-black grey */
  --haze-pink: #a8d8f0;    /* primary accent — baby blue */
  --haze-lav: #7ec8e3;     /* secondary accent — sky blue */
  --haze-blue: #cfe8fa;    /* tertiary accent — powder blue */
  --glow-pink: rgba(168, 216, 240, 0.55);
  --glow-lav: rgba(126, 200, 227, 0.5);
  --line: rgba(234, 246, 255, 0.14);
  --pink: #ff6fb2;         /* button accent */
  --pink-2: #ff9ecf;
  --glow-btn: rgba(255, 111, 178, 0.55);
  --max-width: 1100px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, #141414 0%, #000000 45%, #000000 100%);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* faint film-grain wash over everything, shoegaze-style */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 5px;
}

.brand span {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding-bottom: 4px;
  color: var(--ink-dim);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--haze-pink);
  color: var(--haze-pink);
  text-shadow: 0 0 10px var(--glow-pink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  padding: 84px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 25%, rgba(232, 163, 196, 0.28), transparent 42%),
    radial-gradient(circle at 82% 20%, rgba(127, 179, 217, 0.24), transparent 46%),
    radial-gradient(circle at 50% 90%, rgba(168, 160, 232, 0.22), transparent 50%);
  filter: blur(30px);
}

.hero-photo {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.55) 80%,
    #000000 100%
  );
}

.hero-photo .container { width: 100%; }

.hero-logo {
  width: 210px;
  height: 210px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  filter: invert(1) brightness(1.3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 0.2em;
  background: linear-gradient(90deg, var(--pink), var(--pink-2) 55%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px var(--glow-btn);
}

.hero p.tagline {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--ink-dim);
}

.button-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--pink-2));
  border-color: transparent;
  color: #2b0f1e;
  box-shadow: 0 0 24px var(--glow-btn);
}

.btn-secondary {
  background: rgba(255, 111, 178, 0.08);
  border-color: var(--pink);
  color: var(--pink);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary:hover { box-shadow: 0 0 34px var(--glow-btn), 0 0 50px rgba(255, 158, 207, 0.4); }
.btn-secondary:hover { background: var(--pink); border-color: var(--pink); color: #2b0f1e; }

/* ---------- Section framing ---------- */

section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

section:last-of-type { border-bottom: none; }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 8px;
  color: var(--pink);
  text-shadow: 0 0 20px var(--glow-btn);
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--pink);
  text-shadow: 0 0 12px var(--glow-btn);
  margin-bottom: 8px;
  display: block;
}

.section-lede {
  max-width: 640px;
  color: var(--ink-dim);
  margin-bottom: 32px;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-card {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(168, 160, 232, 0.08);
}

.about-card ul {
  padding-left: 18px;
  margin: 0;
}

.about-card li { margin-bottom: 6px; }

/* ---------- Music page ---------- */

.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.embed-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(232, 163, 196, 0.1);
}

.embed-card iframe {
  width: 100%;
  border: none;
  display: block;
}

.embed-card .embed-label {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(232, 163, 196, 0.18), rgba(168, 160, 232, 0.18));
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--pink);
  text-shadow: 0 0 12px var(--glow-btn);
}

.stream-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.stream-links a {
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.stream-links a:hover {
  background: rgba(127, 179, 217, 0.15);
  border-color: var(--haze-blue);
  color: var(--haze-blue);
  box-shadow: 0 0 20px rgba(127, 179, 217, 0.3);
}

/* ---------- Gigs ---------- */

.gig-list { list-style: none; margin: 0; padding: 0; }

.gig-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.gig-date {
  font-weight: 700;
  color: var(--pink);
  text-shadow: 0 0 10px var(--glow-btn);
}

.gig-venue strong { display: block; }
.gig-venue span { color: var(--ink-dim); font-size: 0.92rem; }

/* ---------- Contact / booking ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 0 40px rgba(168, 160, 232, 0.08);
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.contact-info-card .section-kicker { margin-top: 14px; margin-bottom: 4px; }
.contact-info-card .section-kicker:first-of-type { margin-top: 0; }
.contact-info-card p { margin: 0 auto; font-size: 0.9rem; }

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  display: block;
  color: var(--ink-dim);
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(241, 233, 245, 0.05);
  color: var(--ink);
}

textarea { resize: vertical; min-height: 120px; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: normal;
  background: rgba(241, 233, 245, 0.05);
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--pink);
  margin: 0;
}

.radio-option:has(input:checked) {
  background: linear-gradient(90deg, var(--pink), var(--pink-2));
  border-color: var(--pink);
  color: #2b0f1e;
  box-shadow: 0 0 18px var(--glow-btn);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--haze-lav);
  box-shadow: 0 0 0 3px rgba(168, 160, 232, 0.2);
}

.form-status {
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}

.form-status.show { display: block; }
.form-status.success { background: rgba(127, 179, 217, 0.15); color: var(--haze-blue); }

/* ---------- Social row ---------- */

.social-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}

.social-row a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.2s ease, border-color 0.15s ease;
}

.social-row a:hover {
  background: linear-gradient(135deg, var(--haze-pink), var(--haze-lav));
  border-color: transparent;
  color: #0d2233;
  box-shadow: 0 0 22px var(--glow-pink);
}

.social-row a svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ---------- Footer ---------- */

footer {
  padding: 40px 0;
  text-align: center;
  background: #000000;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

footer .container > * + * { margin-top: 14px; }

footer a { text-decoration: none; }

footer .foot-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 5px;
  margin: 16px auto 0;
  display: block;
}

footer p { color: var(--ink-dim); font-size: 0.85rem; margin: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid var(--line); width: 100%; }
  .nav-links a { display: block; padding: 16px 24px; border-bottom: none; }
  .nav-toggle { display: block; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gig-row { grid-template-columns: 1fr; text-align: left; gap: 4px; padding: 14px 0; }
}
