/* TOKENS / DESIGN SYSTEM ****************************************************************
*****************************************************************************************/

/* ++ =====================================================
   - Central variables for colour, spacing, typography
   ===================================================== */

:root{ /* variables */
  /* Brand palette */
  --bg: #070707;
  --text: #ffffff;
  --accent: #F1A024;

  /* Utility colours */
  --muted: rgba(255,255,255,0.72); /* secondary text */
  --line: rgba(255,255,255,0.14);  /* borders / separators */

  /* Surfaces (cards/panels) */
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.09);

  /* Accent tints (for highlights, outlines, soft fills) */
  --accentSoft: rgba(241,160,36,0.18);
  --accentLine: rgba(241,160,36,0.45);

  /* Layout tokens */
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0,0,0,0.45);
  --max: 1120px;

  /* Typography */
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

  /* Anchor scroll offset for sticky header */
  --scroll-offset: 40px;

  /* Lets browsers offset anchor jumps (supported in modern browsers) */
  scroll-padding-top: var(--scroll-offset);

       /* _____ CHANGEABLES: _____ 
     */
     --featuredBG: url("assets/RR_Releases/RR008-Artwork.png"); /* featured artwork */

}






/* SCROLL OFFSET *************************************************************************
*****************************************************************************************/

section[id]{
  scroll-margin-top: var(--scroll-offset);
}






/* BASE / RESET **************************************************************************
*****************************************************************************************/

/* ++ =====================================================
   - Make sizing predictable 
   - Keep base page typography consistent
   ===================================================== */

*{ box-sizing: border-box; }

/* Enables smooth scroll for hash links (speed is browser-controlled) */
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);

  /* Background: subtle gradients, brand tint, and depth */
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(241,160,36,0.14), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(180deg, var(--bg), #050505);

  min-height: 100vh;
}

/* Default link styling (inherits colour; underline on hover only) */
a{ color: inherit; text-decoration: none; }
a:hover{
  text-decoration: underline;
  text-decoration-color: rgba(241,160,36,0.7);
}

/* Standard page container width */
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}






/* ACCESSIBILITY HELPERS *****************************************************************
*****************************************************************************************/

.skip-link{ /* - Skip link for keyboard users */
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  background: var(--text);
  color: #111;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus{ left: 12px; } 

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






/* HEADER / NAVIGATION *******************************************************************
*****************************************************************************************/

/* ++ =====================================================
     - Sticky header with blur + elevation on scroll
     ===================================================== */
   


/********************* _____ SETUP: _____ 
     */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(7,7,7,0.82);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 200ms ease, background 200ms ease;
}

/* Applied by JS when scrolled (adds shadow + stronger background) */
.site-header.is-elevated{
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  background: rgba(7,7,7,0.92);
}

/* Header layout: brand left, nav right */
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}



/********************* _____ BRAND (HEADER LOGO): _____
     */

.brand{
  display: inline-flex;     /* simple row layout */
  align-items: center;      /* vertically centre */
  gap: 10px;                /* space for future wordmark text if needed */
  text-decoration: none;

  cursor: pointer;

  /* prevents selecting/dragging the logo link */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Logo image sizing */
.brand-logo{
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;

  cursor: pointer;

  user-select: none;
  -webkit-user-drag: none;
}

/* Desktop logo size increase */
@media (min-width: 860px){
  .brand-logo{ height: 38px; }
}



/********************* _____ NAV (DESKTOP + MOBILE TOGGLE): _____
     */

.nav{ display: flex; align-items: center; gap: 10px; }

/* Hamburger button (hidden on desktop) */
.nav-toggle{
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  width: 44px; height: 44px;
  border-radius: 14px;
  cursor: pointer;
}

/* Hamburger icon lines */
.nav-toggle-lines{
  display: inline-block;
  width: 18px; height: 12px;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  position: relative;
}
.nav-toggle-lines::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top: 4px;
  border-top: 2px solid var(--text);
}

/* Nav links container */
.nav-menu{
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Standard nav link */
.nav-link{
  color: var(--muted);
  font-weight: 520;
  padding: 8px 10px;
  border-radius: 12px;
}

/* Active link style (likely set by JS based on scroll position) */
.nav-link.is-active{
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}

/* CTA link styled like a button */
.nav-cta{
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(212,175,55,0.14);          /* NOTE: hard-coded gold tint */
  border: 1px solid rgba(212,175,55,0.35);    /* NOTE: hard-coded gold tint */
  color: var(--text);
  font-weight: 650;
}
.nav-cta:hover{ text-decoration: none; }






/* BUTTONS (GLOBAL) **********************************************************************
*****************************************************************************************/



/********************* _____ SETUP: _____ 
     */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);

  background: rgba(255,255,255,0.04);
  color: var(--text);

  font-weight: 650;
  cursor: pointer;

  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}



/********************* _____ BEHAVIOUR: _____ 
     */

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}
.btn:active{ transform: translateY(0px); }

/********************* _____ STYLES: _____ 
     */

/* Primary button uses brand accent fill */
.btn-primary{
  background: var(--accentSoft);
  border-color: var(--accentLine);
}

/* Ghost button is transparent */
.btn-ghost{
  background: transparent;
}

/* Small button variant used in cards */
.btn-small{
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 0.92rem;
}






/* HERO SECTION **************************************************************************
*****************************************************************************************/



/********************* _____ SETUP: _____ 
     */

.hero{ /* top and bottom pad and bottom line */
  padding: 64px 0 36px;
  border-bottom: 1px solid var(--line);
}
.hero-grid{ /* sbs grid (2x1) */
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.hero-actions{ /* Hero CTA buttons row */
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-metrics{ /* 3x1 grid for metrics */
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.metric{ /* metric cards */
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  border-radius: var(--radius);
  padding: 12px;
}

/* Featured card setup */ 
.hero-art .art-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);

  background-image: var(--featuredBG);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  box-shadow: var(--shadow);

  aspect-ratio: 1 / 1;   /* makes the card square */
  width: 100%;            /* NOTE: may be unintuitive; consider 100% later */
  max-width: 420px;
}
.art-content{ /* content overlay position */
  position: relative; /* keeps it above the glow */
  padding: 22px;
}

.art-actions{ /* Buttons inside the featured card */
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
}

.art-card--featured .art-glow{ /* Softens glow for featured card */
  opacity: 0.55;
}



/********************* _____ TEXT STYLES: _____ 
     */


.kicker{ /* Small uppercase intro line (social bio style) */
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 14px;
}


.hero h1{ /* Main headline */
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 0 0 14px;
}


.lede{ /* Supporting paragraph */
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Metric cards text */ 
.metric-top{ display: block; color: var(--muted); font-size: 0.85rem; }
.metric-bottom{ display: block; margin-top: 2px; font-weight: 650; }

/* Featured card text */ 
.art-label{ /* Featured label */
  margin: 0 0 10px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.art-title{ /* “Latest Release” */
  margin: 0 0 6px;
  font-size: 1.4rem;
}
.art-meta{ /* Artist / title line */
  margin: 0 0 18px;
  color: var(--muted);
}

/* Note beneath the card (currently commented out in HTML) */
.muted-note{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}



/********************* _____ DESIGN STYLES: _____ 
     */

/* Glow overlay inside the featured card 
(DISABLED FOR NOW - MIGHT RE ADD LATER)
////////////////////////////////////////////////////////////
.art-glow{
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(240px 180px at 30% 30%, rgba(212,175,55,0.35), transparent 60%),
    radial-gradient(240px 180px at 80% 70%, rgba(120,180,255,0.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  filter: blur(1px);
} 
//////////////////////////////////////////////////////////// */






/* SECTIONS (GLOBAL) **************************************************************************
*****************************************************************************************/
.section{ padding: 56px 0; }

.section.alt{ /* Alternating section backgrounds (might add mouse hover highight) */
  background: rgba(255,255,255,0.07);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{ /* Section heading row (title + filters) */
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Section titles */
.section h2{
  margin: 0 0 8px;
  font-size: 1.8rem;
}

/* Section subheading text */
.subhead{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 62ch;
}






.filters{ display: flex; gap: 10px; flex-wrap: wrap; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  cursor: pointer;
  font-weight: 650;
}
.chip.is-active{
  color: var(--text);
  border-color: var(--accentLine);
  background: var(--accentSoft);
}

.grid{
  display: grid;
  gap: 14px;
}
.cards{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.card{
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(241,160,36,0.35);
  background: rgba(255,255,255,0.05);
}
.card-media{
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
/* Card thumbnail (supports per-card artwork via CSS variable) */
.thumb{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;

  /* If --thumb-url is set on the card, it will show that image. Otherwise, gradient fallback shows. */
  background-image:
    var(--thumb-url),
    radial-gradient(140px 120px at 25% 25%, rgba(241,160,36,0.18), transparent 60%),
    radial-gradient(140px 120px at 80% 70%, rgba(255,255,255,0.10), transparent 60%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid rgba(255,255,255,0.10);
}
.card-body{ padding: 14px; }
.card-eyebrow{ margin: 0 0 8px; color: var(--muted); font-size: 0.9rem; }
.card-title{ margin: 0 0 4px; font-size: 1.15rem; }
.card-meta{ margin: 0 0 10px; color: rgba(244,241,234,0.82); font-weight: 650; }
.card-text{ margin: 0 0 12px; color: var(--muted); line-height: 1.55; }
.card-actions{ display: flex; gap: 10px; flex-wrap: wrap; }

.embed-hint{
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px dashed rgba(244,241,234,0.22);
  border-radius: 18px;
  color: var(--muted);
}

.artist-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.artist-card{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
}
.avatar{
  width: 48px; height: 48px;
  border-radius: 18px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
}
.muted{ color: var(--muted); margin: 6px 0; }
.inline-links{ display: flex; gap: 10px; align-items: center; color: rgba(244,241,234,0.85); }
.inline-links a{ color: rgba(244,241,234,0.85); }

.events{ display: grid; gap: 14px; }
.event{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
}
.event-date{
  border-radius: 18px;
  border: 1px solid rgba(241,160,36,0.28);
  background: rgba(241,160,36,0.12);
  display: grid;
  place-items: center;
  padding: 10px 8px;
}
.event-day{ color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.event-num{ font-size: 2rem; font-weight: 800; line-height: 1; }
.event-mon{ color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.event-body h3{ margin: 0 0 4px; }
.event-text{ margin: 8px 0 0; color: var(--muted); }

.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.about-points{
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.point{
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.point h3{ margin: 0 0 6px; }

.panel{
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}
.social-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 10px;
}
.social{
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  text-align: center;
}
.social:hover{ text-decoration: none; border-color: rgba(212,175,55,0.32); }

.newsletter{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}
input, textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}
input:focus, textarea:focus{
  border-color: var(--accentLine);
  box-shadow: 0 0 0 4px rgba(241,160,36,0.12);
}
label span{
  display: block;
  margin: 0 0 8px;
  color: rgba(244,241,234,0.86);
  font-weight: 650;
}

.demo-panel{ display: grid; gap: 12px; }
.demo-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.demo-actions{ display: flex; gap: 10px; flex-wrap: wrap; }

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.contact-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.contact-form form{ display: grid; gap: 12px; }

.tiny{ font-size: 0.85rem; }
.site-footer{
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.10);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-left, .footer-right{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

/*
=== THIS IS STYLING TOAST NOTIFICATIONS (SMALL MESSAGE AT BOTTOM OF SCREEN LIKE 'COPIED TO CLIPBOARD' ===
*/
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(7,7,7,0.92);
  border: 1px solid var(--accentLine);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  max-width: min(560px, calc(100% - 40px));
}
.toast.is-on{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .artist-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav-toggle{ display: inline-flex; align-items:center; justify-content:center; }
  .nav-menu{
    position: absolute;
    right: 20px;
    top: 70px;
    width: min(340px, calc(100% - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15,18,32,0.96);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open{ display: flex; }
  .nav-link, .nav-cta{ width: 100%; }
  .cards{ grid-template-columns: 1fr; }
  .artist-grid{ grid-template-columns: 1fr; }
  .hero-metrics{ grid-template-columns: 1fr; }
}