/*
Theme Name: Rewind Neon
Template: twentytwentyfive
Description: A premium, fresh 80s synthwave / neon tribute design for Rewind 80's Band. Modern, bold, and dripping with nostalgia.
Author: Rewind 80s
Version: 1.5
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   BASE + 80s NEON FOUNDATION
======================================== */

:root {
    --neon-pink: #ff00aa;
    --neon-cyan: #00f0ff;
    --neon-yellow: #ffee00;
    --neon-purple: #b026ff;
    --deep-black: #0a0a0c;
    --charcoal: #121214;
    --soft-white: #f5f5f7;
}

body {
    background-color: var(--deep-black) !important;
    color: var(--soft-white) !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .wp-block-heading {
    font-family: 'Bebas Neue', 'Orbitron', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--soft-white);
}

h1 { font-size: clamp(2.8rem, 8vw, 5.8rem); line-height: 0.92; }
h2 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
h3 { font-size: clamp(1.55rem, 4vw, 2.35rem); }

.has-neon-pink-color { color: var(--neon-pink) !important; }
.has-neon-cyan-color { color: var(--neon-cyan) !important; }
.has-neon-yellow-color { color: var(--neon-yellow) !important; }

/* Links */
a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover {
    color: var(--neon-pink);
}

/* ========================================
   HEADER / NAV
======================================== */

.is-sticky-header {
    background: rgba(10, 10, 12, 0.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.wp-block-navigation a {
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.wp-block-navigation a:hover {
    color: var(--neon-pink) !important;
}

/* Prominent Book button in nav */
.nav-book-btn a {
    background: var(--neon-pink) !important;
    color: #000 !important;
    padding: 10px 22px !important;
    border-radius: 2px !important;
    font-weight: 700 !important;
    transition: all .2s ease !important;
}
.nav-book-btn a:hover {
    background: var(--neon-yellow) !important;
    color: #000 !important;
    transform: translateY(-1px);
}

/* ========================================
   HERO
======================================== */

.hero-80s {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 35%;
    background-attachment: fixed;
}

.hero-80s::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,12,0.35) 0%,
        rgba(10,10,12,0.78) 58%,
        rgba(10,10,12,0.95) 92%
    );
    z-index: 1;
}

.hero-80s .hero-inner {
    position: relative;
    z-index: 2;
}

.hero-80s .tag {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 4px;
    font-size: 0.95rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.hero-80s .big-claim {
    font-size: clamp(3.2rem, 9vw, 7.2rem);
    line-height: .9;
    font-weight: 700;
    text-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.neon-glow-pink {
    text-shadow: 0 0 12px rgba(255, 0, 170, 0.65), 0 0 28px rgba(255, 0, 170, 0.35);
}

.hero-cta .wp-block-button__link {
    font-size: 1rem !important;
    padding: 18px 42px !important;
    letter-spacing: 2.5px !important;
}

/* ========================================
   SECTIONS & CARDS
======================================== */

.section {
    padding: 90px 0;
}

.section-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.section-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-cyan));
}

.gig-card, .artist-card, .music-card {
    background: #121214;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform .25s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow .25s ease,
                border-color .2s ease;
    overflow: hidden;
}

.gig-card:hover, .artist-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 170, 0.35);
    box-shadow: 0 20px 45px -15px rgba(0,0,0,0.5);
}

.artist-card img {
    transition: transform .6s cubic-bezier(0.23, 1, 0.32, 1);
}
.artist-card:hover img {
    transform: scale(1.08);
}

.gig-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--neon-cyan);
}

.gig-venue {
    font-size: 1.15rem;
    line-height: 1.15;
}

.testimonial {
    position: relative;
    background: #121214;
    border-left: 4px solid var(--neon-pink);
    padding: 2rem 2rem 1.6rem;
}

.testimonial:before {
    content: "“";
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    line-height: 1;
    opacity: .08;
    position: absolute;
    top: -10px;
    left: 18px;
}

/* ========================================
   BUTTONS
======================================== */

.wp-block-button__link,
.button-80s {
    background: var(--neon-pink) !important;
    color: #000 !important;
    border-radius: 1px !important;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    padding: 16px 34px !important;
    transition: all .2s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: none !important;
}

.wp-block-button__link:hover,
.button-80s:hover {
    background: var(--neon-yellow) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(255, 0, 170, 0.4);
}

.button-outline {
    background: transparent !important;
    color: var(--soft-white) !important;
    border: 2px solid var(--soft-white) !important;
    padding: 15px 32px !important;
}
.button-outline:hover {
    background: var(--soft-white) !important;
    color: #000 !important;
    border-color: var(--soft-white) !important;
}

/* ========================================
   MUSIC / SETLIST
======================================== */

.track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.02rem;
}
.track:last-child { border-bottom: none; }
.track .artist {
    color: #888;
    font-size: .9rem;
    margin-left: auto;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #070709;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer a {
    color: #aaa;
}
.site-footer a:hover {
    color: var(--neon-cyan);
}

/* ========================================
   MISC 80s FLAIR
======================================== */

.crt {
    position: relative;
}
.crt:after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        rgba(255,255,255,0.035) 0px,
        rgba(255,255,255,0.035) 1px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}

.neon-underline {
    text-decoration: underline;
    text-decoration-color: var(--neon-pink);
    text-underline-offset: 8px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-80s {
        background-attachment: scroll;
        min-height: 82vh;
    }
    .section {
        padding: 60px 0;
    }
}