/* =======================================================================
 css/style-T.css — Unified, page-scoped stylesheet
 IMPORTANT:
 - No global selectors (no plain *, html, body, h1, .btn, etc.)
 - CGT styles ONLY under #cgt …
 - Homepage styles ONLY under body#index / #index …
 - Shared banner block keeps title spacing identical on both pages.
 ======================================================================= */




/* ===========================
 [0] SHARED — keyframes (safe to share)
 =========================== */
@keyframes cgt-gradientMove {
    0% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}
@keyframes cgt-neonPulse {
    0%   { text-shadow: 0 0 1px #0ff, 0 0 2px #0ff, 0 0 4px #ff9955; }
    50%  { text-shadow: 0 0 1.5px #0ff, 0 0 3px #0ff, 0 0 5px #ff9955; }
    100% { text-shadow: 0 0 1px #0ff, 0 0 2px #0ff, 0 0 4px #ff9955; }
}


/* ===========================
 [0.1] SHARED — Banner (identical spacing + neon Donovan)
 Applies to both CGT and Index banners.
 =========================== */
#cgt .banner {
    padding-top: 30px;
    padding-bottom: 40px;  /* equal bottom spacing on both pages */
    text-align: center;
}
#index .banner {
    padding-top: 30px;
    padding-bottom: 40px;  /* equal bottom spacing on both pages */
    text-align: center;
}


#cgt .banner h1,
#index .banner h1 {
    font-size: 4rem;
    margin: 0 auto;
    color: #fff; /* fallback */
    line-height: 1.1;
    font-family: 'donovanregular', sans-serif;
    font-weight: 400;
}


#cgt .banner .animated-header,
#index .banner .animated-header {
    display: inline-block;
    width: auto;
    background: linear-gradient(270deg, #0ff, #ff9955, #0ff);
    background-size: 600% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 1px #0ff, 0 0 2px #0ff, 0 0 4px #ff9955;
    animation: cgt-gradientMove 6s linear infinite,
    cgt-neonPulse 4s ease-in-out infinite alternate;
}


@media (max-width: 600px) {
    #cgt .banner h1,
    #index .banner h1 {
        font-size: 3rem;
    }
}




/* ===========================
 [1] CREATIVE GUITAR TRACKS (CGT)
 =========================== */


/* Root container */
#cgt {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    color: #462582;
    font-family: Helvetica, Arial, sans-serif;
    min-height: 100vh;
    position: relative;      /* for ::before background layer */
}


/* Full-viewport page background (scoped, no globals) */
#cgt::before {
    content: "";
    position: fixed;
    inset: 0;                /* full viewport */
    z-index: -1;             /* sit behind all content */
    background: linear-gradient(0deg,
    rgba(0,188,212,1) 0%,
    rgba(85,197,197,1) 0%,
    rgba(255,255,255,1) 39%,
    rgba(254,65,151,1) 100%);
}


/* Sections */
#cgt .section { padding: 28px 0; }
#cgt .section + .section { border-top: 1px solid rgba(0,0,0,.08); }
#cgt .center { text-align: center; }


/* HERO (photo | text | CTA) */
#cgt .hero {
    display: grid;
    gap: 20px;
    align-items: center;
    grid-template-columns: 1fr;           /* mobile stack */
    grid-template-areas: "photo" "text" "cta";
}
#cgt .hero-photo { grid-area: photo; justify-self: center; }
#cgt .hero-text  {
    grid-area: text;
    background: rgba(255,255,255,0.84);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
}
@supports (backdrop-filter: blur(6px)) {
    #cgt .hero-text { background: rgba(255,255,255,0.70); backdrop-filter: blur(6px); }
}
#cgt .hero-cta   { grid-area: cta; justify-self: center; display: inline-block; }


/* Desktop/tablet layout */
@media (min-width: 900px) {
    #cgt .hero {
        grid-template-columns: minmax(280px, 360px) 1fr;
        grid-template-areas: "photo text" "cta cta";
    }
}


/* Hero image: robust circle */
#cgt .hero-circle {
    width: clamp(240px, 32vw, 360px);
    height: clamp(240px, 32vw, 360px);
    border-radius: 50%;
    overflow: hidden;                 /* keeps the photo perfectly circular */
    justify-self: center;
    box-shadow: 0 0 0 8px #fff, 0 6px 20px rgba(0,0,0,.45); /* white ring + soft shadow */
    position: relative;
    background: #fff;
}
#cgt .hero-circle img {
    position: absolute; inset: 0;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;                 /* use 'contain' if you want zero cropping */
    object-position: center;
}


/* Typography — Helvetica everywhere except the banner
 (IMPORTANT: do NOT include 'span' here or it will override the Donovan banner) */
#cgt :where(p, li, a, small, strong, em, button) {
    font-family: Helvetica, Arial, sans-serif !important;
    font-weight: 400;
}


/* Headline, lede, tagline */
#cgt .hero-headline {
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: clamp(24px, 3.3vw, 40px);
    line-height: 1.22;
    margin: 0 0 12px;
    color: #1e153f;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0,0,0,.08);
}
#cgt .lede   { font-size: clamp(18px, 2.2vw, 20px); color: #3d2f7a; line-height: 1.6; }
#cgt .tagline{
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 24px);  /* a little bigger */
    line-height: 1.45;
    color: #1e153f;
    margin-top: 10px;
}


/* Accent chips for highlighted words */
#cgt .accent {
    color: #892cfc ;
    font-weight: 800;
    padding: 2px 4px;
}


/* Cards & grids */
#cgt .card {
    background: rgba(251,254,254,1);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    text-align: center;
}
#cgt .grid { display: grid; gap: 24px; }
#cgt .grid-1 { grid-template-columns: 1fr; }
#cgt .grid-2 { grid-template-columns: 1fr; }
@media (min-width: 800px) { #cgt .grid-2 { grid-template-columns: 1fr 1fr; } }


/* Process list */
#cgt .process ol { max-width: 700px; margin: 0 auto; padding-left: 1.3rem; text-align: left; }
#cgt .process li { margin-bottom: 1rem; }


/* Buttons (keep CGT teal/cyan skin) */
#cgt .btn.cta {
    display: inline-block;
    margin: 16px auto;
    padding: 12px 20px;
    font-size: 18px;
    line-height: 1.25;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    background-color: #05adb0;
    border: 3px solid #4efcfc;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    font-family: Helvetica, Arial, sans-serif;
}
#cgt .btn.cta:hover { transform: scale(1.04); box-shadow: 0 0 12px #0ff, 0 0 20px rgba(255,153,85,.75); }
#cgt .btn.cta:active { transform: scale(0.98); }
#cgt .btn.cta:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }


/* Video grid (9:16 reels) */
#cgt .vid-grid { display: grid; gap: 24px; }
@media (min-width: 800px) { #cgt .vid-grid { grid-template-columns: 1fr 1fr; } }
#cgt .vid-wrap { position: relative; width: 100%; max-width: 540px; margin: 0 auto; }
#cgt .vid-wrap::before { content: ""; display: block; padding-top: 177.78%; }
#cgt .vid-wrap > video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border: 0; border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}


/* Social / Footer */
#cgt .social { display: flex; gap: 12px; align-items: center; justify-content: center; }
#cgt .social img { height: auto; width: 72px; }
#cgt .footer {
    font-family: Helvetica, Arial, sans-serif;
    color: #462582;
    margin-top: 16px;
    font-size: 18px;
}
#cgt .footer a { font-size: inherit; color: inherit; text-decoration: none; }
#cgt .footer a:hover { text-decoration: underline; }


/* Final guard: banner must be Donovan */
#cgt .banner h1,
#cgt .banner .animated-header {
    font-family: 'donovanregular', sans-serif !important;
    font-weight: 400 !important;
}


/* =======================================================================
 [1.1] PLANNER (CGT-P) — mirror CGT rules under #cgtp
 + integrate planner-specific rules from cgt-collab.css
 ======================================================================= */


#cgtp {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    color: #462582;
    font-family: Helvetica, Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}
#cgtp::before {
    content: "";
    position: fixed; inset: 0; z-index: -1;
    background: linear-gradient(0deg,
    rgba(0,188,212,1) 0%,
    rgba(85,197,197,1) 0%,
    rgba(255,255,255,1) 39%,
    rgba(254,65,151,1) 100%);
}


/* Sections / utilities */
#cgtp .section { padding: 28px 0; }
#cgtp .section + .section { border-top: 1px solid rgba(0,0,0,.08); }
#cgtp .center { text-align: center; }


/* ——— Planner “wrap”/header/muted (from cgt-collab.css) ——— */
#cgtp .wrap { max-width: 1100px; margin: 0 auto; padding: 20px 16px 40px; }
#cgtp .page-header h1 { margin: 0 0 6px; }
#cgtp .muted { color: #3d2f7a; margin: 0 0 16px; }


/* Cards & grids (planner flavors from source) */
#cgtp .card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    border: 1px solid rgba(0,0,0,.08);
    margin-bottom: 20px;
}
#cgtp .grid-2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 800px) { #cgtp .grid-2 { grid-template-columns: 1fr 1fr; } }


/* Form fields (planner source) */
#cgtp .field { margin-bottom: 12px; }
#cgtp .field label { display: block; margin-bottom: 6px; font-weight: 700; }
#cgtp .field input, #cgtp .field textarea {
    width: 100%;
    padding: 10px 12px; /* base */
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,.12);
    font: inherit; background: #fff;
}
#cgtp .field.check label { font-weight: 300; display: inline-flex; gap: 8px; align-items: center; }
#cgtp .req { color: #b63838; margin-left: 2px; }
#cgtp .actions { margin-top: 12px; }
#cgtp .form-msg { margin-top: 10px; }
#cgtp .form-msg.ok { color: #176d3a; }
#cgtp .form-msg.err { color: #b63838; }
#cgtp .hp { position: absolute; left: -9999px; height: 0; width: 0; }


/* Stepper (planner source) */
#cgtp .stepper { display: flex; gap: 10px; align-items: center; color: #3d2f7a; margin-bottom: 10px; }
#cgtp .stepper .step { opacity: .6; }
#cgtp .stepper .step.active { opacity: 1; font-weight: 700; }
#cgtp .stepper .sep { opacity: .4; }


/* Payment lock overlay (planner source) */
#cgtp #payment-section { position: relative; border-radius: 12px; overflow: hidden; }
#cgtp #payment-section .pay-inner { transition: filter .2s ease; }
#cgtp #payment-section.locked .pay-inner { filter: blur(2px); pointer-events: none; }
#cgtp #payment-section .lock-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.40);
    backdrop-filter: blur(1.5px);
    z-index: 999;
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
}
#cgtp #payment-section.locked .lock-overlay { opacity: 1; pointer-events: auto; }
#cgtp #payment-section .lock-copy {
    display: flex; gap: 10px; align-items: center;
    background: #fff; border: 1px solid rgba(0,0,0,.08);
    padding: 10px 14px; border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    color: #1e153f; font-weight: 700;
}
#cgtp #payment-section .lock-icon { font-size: 18px; }
#cgtp #payment-section.unlocked .pay-inner { filter: none; pointer-events: auto; }
#cgtp #payment-section.unlocked .lock-overlay { opacity: 0; pointer-events: none; }


/* Collab form layout fixes (planner source) */
#cgtp #collab-form,
#cgtp #collab-form * { box-sizing: border-box; }
#cgtp #collab-form input[type="text"],
#cgtp #collab-form input[type="email"],
#cgtp #collab-form input[type="url"],
#cgtp #collab-form textarea {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 8px;
}
#cgtp #collab-form .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 700px) {
    #cgtp #collab-form .row-2 { grid-template-columns: 1fr; }
}
/* Make the vibe textarea row span both columns */
#cgtp #collab-form .row-2 .field:has(textarea) { grid-column: 1 / -1; }
/* Fallback for browsers without :has(): add class="field field--wide" in HTML */
#cgtp #collab-form .field--wide { grid-column: 1 / -1; }
/* Kill the resize handle with maximum specificity */
#cgtp #collab-form textarea,
#cgtp #collab-form textarea#vibe,
#cgtp #collab-form textarea[name="vibe"],
#cgtp #collab-form .field textarea {
    resize: none !important;
    min-height: 140px;
    overflow: auto;
    -webkit-appearance: none;
    appearance: none;
}
/* Checkbox consent text layout */
#cgtp #collab-form .consent {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
}
#cgtp #collab-form .consent input[type="checkbox"] { margin-top: 3px; }
#cgtp #collab-form .consent span { line-height: 1.45; }

#cgtp .footer {
    font-size: 12px; margin-bottom: 16px;
    font-family: 'AwakeRegular', sans-serif; color: #462582;
    align-items: center; justify-content: center; text-align: center;
}
#cgtp .footer a { color: inherit; text-decoration: none; }
#cgtp .footer a:hover { text-decoration: underline; }


/* ===========================
 [2] INDEX (HOMEPAGE) — matches CGT neon Donovan style
 =========================== */


/* Body container (home only) */
body#index {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    background: linear-gradient(0deg,
    rgba(0,188,212,1) 0%,
    rgba(85,197,197,1) 0%,
    rgba(255,255,255,1) 39%,
    rgba(254,65,151,1) 100%);
    max-width: 900px;
    margin: 0 auto;
}


/* Motto — AwakeRegular + purple like source (bigger) */
#index .motto {
    font-size: clamp(40px, 4vw, 48px); /* bigger to match source look */
    margin-top: 20px;
    margin-bottom: 40px;
    font-family: 'AwakeRegular', sans-serif !important;  /* force font */
    color: #462582;
    font-weight: 600;
}


/* Links / GIF menu block */
#index .links {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    margin-top: 36px; padding-top: 10px;
    background: linear-gradient(180deg,
    rgba(62,253,255,0.225) 0%,
    rgba(188,254,255,0.364) 32%,
    rgba(251,254,254,1) 100%);
    min-height: 550px;
    padding-bottom: 20px;
    margin-bottom: 60px;
}
#index .menu-wrapper { position: relative; display: inline-block; }
#index #dropdown-button {
    display: block; margin: 0 auto; cursor: pointer; width: 55%; height: auto;
    position: relative; top: -175px;
}


/* Dropdown (shows via JS toggle on your site) */
#index #dropdown-content {
    position: absolute; left: 50%; transform: translateX(-50%);
    min-width: 320px; max-width: 90vw; display: none; z-index: 1000;
    top: -15px; margin-bottom: 40px;
}


#index #dropdown-content a {
    display: block;
    color: white;
    padding: 6px 10px;
    text-decoration: none;
}
#index #dropdown-content ul { list-style: none; margin: 0; padding: 0; }


/* Menu item buttons — Arial, bigger text & padding */
#index #dropdown-content a {
    display: block;
    width: 300px;                 /* match original button width */
    margin: 0 auto;
    font-family: 'Arial', sans-serif !important; /* force font */
    font-weight: normal;
    font-size: 28px;              /* larger to match source */
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;           /* increased padding */
    border: 2px solid transparent;
    text-align: center;
}


/* Pink buttons (default) */
#index #dropdown-content li {
    background-color: rgba(254, 65, 151, 0.77);
    border-bottom: 1px solid #fe4197;
}


/* Hover state */
#index #dropdown-content li:hover {
    background-color: #3DCFD0;
}


/* Overlay circle logo */
#index #circle-logo {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; max-width: 550px; height: auto; opacity: 0.24; pointer-events: none; z-index: 1;
}


/* Social and Footer */
#index .food {
    font-size: 18px; margin-bottom: 16px;
    font-family: 'AwakeRegular', sans-serif; color: #462582;
    align-items: center; justify-content: center; margin-top: 60px;
}
#index .footer {
    font-size: 12px; margin-bottom: 16px;
    font-family: 'AwakeRegular', sans-serif; color: #462582;
    align-items: center; justify-content: center; text-align: center;
}
#index .footer a { color: inherit; text-decoration: none; }
#index .footer a:hover { text-decoration: underline; }


/* =======================================================================
   [3] SUCCESS PAGE  (inherits all index styles, namespaced)
   ======================================================================= */


body#success {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: linear-gradient(0deg,
    rgba(0,188,212,1) 0%,
    rgba(85,197,197,1) 0%,
    rgba(255,255,255,1) 39%,
    rgba(254,65,151,1) 100%);
  max-width: 900px;
  margin: 0 auto;
}


/* Banner */
#success .banner {
  padding-top: 30px;
  padding-bottom: 40px;
  text-align: center;
}
#success .banner h1 {
  font-family: 'donovanregular', sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.1;
  margin: 0 auto;
  color: #fff;
}
#success .banner .animated-header {
  display: inline-block;
  background: linear-gradient(270deg, #0ff, #ff9955, #0ff);
  background-size: 600% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1px #0ff, 0 0 2px #0ff, 0 0 4px #ff9955;
  animation: cgt-gradientMove 6s linear infinite,
             cgt-neonPulse 4s ease-in-out infinite alternate;
}
@media (max-width: 600px) {
  #success .banner h1 { font-size: 3rem; }
}


/* Motto text */
#success .motto {
  font-size: clamp(36px, 4vw, 48px);
  margin-top: 20px;
  margin-bottom: 40px;
  font-family: 'AwakeRegular', sans-serif;
  color: #462582;
  font-weight: 700;
}


/* Links / menu */
#success .links {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding-top: 10px;
  background: linear-gradient(180deg,
    rgba(62,253,255,0.225) 0%,
    rgba(188,254,255,0.364) 32%,
    rgba(251,254,254,1) 100%);
  min-height: 550px;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
#success .menu-wrapper { position: relative; display: inline-block; }
#success #dropdown-button {
  display: block; margin: 0 auto; cursor: pointer;
  width: 55%; height: auto; position: relative; top: -175px;
}
#success #dropdown-content {
  position: absolute; left: 50%; transform: translateX(-50%);
  min-width: 320px; max-width: 90vw;
  display: none; z-index: 1000;
  top: -15px; margin-bottom: 40px;
}


#success #dropdown-content ul { list-style: none; margin: 0; padding: 0; }
#success #dropdown-content a {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 30px; line-height: 1.2;
  display: block;
  color: white;
  padding: 6px 10px;
  text-decoration: none;
}
#success #dropdown-content li {
    background-color: rgba(254, 65, 151, 0.77);
    border-bottom: 1px solid #fe4197;
}
#success #dropdown-content li:hover {
    background-color: #3DCFD0;
}
#success #circle-logo  {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; max-width: 550px; height: auto; opacity: 0.24; pointer-events: none; z-index: 1;
}
/* Social + footer */
#success .food {
  font-size: 18px; margin-bottom: 16px;
  font-family: 'AwakeRegular', sans-serif;
  color: #462582;
  align-items: center; justify-content: center; margin-top: 60px;
}
#success .footer {
  font-size: 12px; margin-bottom: 16px;
  font-family: 'AwakeRegular', sans-serif;
  color: #462582;
  align-items: center; justify-content: center; text-align: center;
}
#success .footer a { color: inherit; text-decoration: none; }
#success .footer a:hover { text-decoration: underline; }


/* --- Shared mobile padding tweak for all banners --- */
@media (max-width: 600px) {
  #cgt .banner,
  #index .banner,
  #success .banner,
  #cgtp .banner {
    padding-left: 16px;
    padding-right: 16px;
  }


  #cgt .banner h1,
  #index .banner h1,
  #success .banner h1,
  #cgtp .banner h1 {
    font-size: clamp(2.5rem, 6vw, 3rem); /* mild downscale for narrow screens */
    line-height: 1.15;
  }
}
#cgt > .banner,
main#cgt > .banner {
  margin-top: 50px;
}
#cgtp > .banner,
main#cgtp > .banner {
  margin-top: 50px;
}
#index > .banner,
main#index > .banner {
  margin-top: 50px;
}
#success > .banner,
main#success > .banner {
  margin-top: 50px;
}

.player-frame{
  display:block;
  width: 100%;
  max-width: 640px;
  margin: 8px auto 12px;
  border: 0;
  background: transparent;
  border-radius: 18px;

  /* ✅ IMPORTANT */
  overflow: hidden;
}
.audio-site-link {
  max-width: 820px;
  margin: 28px auto 18px;
  padding: 14px 18px;
  text-align: center;
  color: rgba(20, 24, 28, 0.82);
  font-family: 'AwakeRegular', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  border-top: 1px solid rgba(20, 24, 28, 0.22);
  border-bottom: 1px solid rgba(20, 24, 28, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.audio-site-link p {
  margin: 0;
}

.audio-site-link a {
  color: rgba(0, 0, 0, 0.88);
  font-family: 'donovanregular', Helvetica, Arial, sans-serif;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.audio-site-link a:hover {
  color: #000;
  border-bottom-color: #000;
  background: rgba(255, 255, 255, 0.35);
}