/* ============================================================
   Country Roads Unplugged — rustic, earth-tone country theme
   ============================================================ */

:root {
    --cru-cream:      #f4ece0;
    --cru-parchment:  #ece0cd;
    --cru-tan:        #d8c3a5;
    --cru-wood:       #8a5a3b;
    --cru-wood-dark:  #5e3d28;
    --cru-bark:       #3b2a1e;
    --cru-espresso:   #2a1d14;
    --cru-rust:       #a8501f;
    --cru-rust-dark:  #8a3f16;
    --cru-olive:      #6b7043;
    --cru-gold:       #c9922e;
    --cru-ink:        #2c2118;
    --cru-muted:      #6f5c48;

    --cru-head: "Playfair Display", Georgia, serif;
    --cru-slab: "Roboto Slab", Georgia, serif;
    --cru-body: "Lora", Georgia, serif;
}

* { scroll-behavior: smooth; }

html { scroll-padding-top: 72px; }

body {
    font-family: var(--cru-body);
    color: var(--cru-ink);
    background-color: var(--cru-cream);
    /* subtle woven/kraft paper texture from layered gradients */
    background-image:
        radial-gradient(circle at 20% 15%, rgba(138,90,59,0.06) 0, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(107,112,67,0.06) 0, transparent 45%);
}

/* ---------- Navbar ---------- */
.cru-nav {
    background-color: rgba(42, 29, 20, 0.96);
    border-bottom: 3px solid var(--cru-rust);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    padding-top: .65rem;
    padding-bottom: .65rem;
}
.cru-nav .navbar-brand {
    font-family: var(--cru-head);
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--cru-cream);
}
.cru-nav .navbar-brand .fa-guitar { color: var(--cru-gold); }
.cru-nav .brand-text { font-size: 1.15rem; }
.cru-nav .nav-link {
    font-family: var(--cru-slab);
    font-weight: 600;
    font-size: .95rem;
    color: var(--cru-tan) !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 .15rem;
    transition: color .2s ease;
}
.cru-nav .nav-link:hover,
.cru-nav .nav-link.active { color: var(--cru-gold) !important; }
.cru-nav .navbar-toggler { border-color: var(--cru-tan); color: var(--cru-tan); }
.cru-nav .navbar-toggler:focus { box-shadow: none; }

/* ---------- Hero ---------- */
.cru-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cru-cream);
    background:
        linear-gradient(rgba(42,29,20,0.72), rgba(30,20,14,0.86)),
        linear-gradient(135deg, #5e3d28 0%, #3b2a1e 55%, #2a1d14 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.cru-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 120%, rgba(168,80,31,0.35) 0, transparent 55%);
    pointer-events: none;
}
.cru-hero-content { position: relative; z-index: 2; padding: 6rem 1rem; }
.cru-eyebrow {
    font-family: var(--cru-slab);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .8rem;
    color: var(--cru-gold);
    margin-bottom: 1rem;
}
.cru-eyebrow .fa-star { font-size: .6rem; vertical-align: middle; margin: 0 .4rem; }
.cru-hero-title {
    font-family: var(--cru-head);
    font-weight: 900;
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: 1px;
    text-shadow: 0 3px 18px rgba(0,0,0,0.55);
    margin-bottom: 1rem;
}
.cru-hero-tagline {
    font-family: var(--cru-slab);
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    color: var(--cru-tan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.cru-hero-sub {
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 2rem;
    color: rgba(244,236,224,0.9);
    font-style: italic;
}
.cru-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cru-scroll-cue {
    position: absolute;
    bottom: 1.75rem; left: 50%;
    transform: translateX(-50%);
    color: var(--cru-tan);
    font-size: 1.4rem;
    z-index: 2;
    animation: cruBounce 2s infinite;
    text-decoration: none;
}
@keyframes cruBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Buttons ---------- */
.cru-btn {
    font-family: var(--cru-slab);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .95rem;
    padding: .7rem 1.7rem;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all .2s ease;
}
.cru-btn-primary {
    background-color: var(--cru-rust);
    border-color: var(--cru-rust);
    color: #fff;
}
.cru-btn-primary:hover {
    background-color: var(--cru-rust-dark);
    border-color: var(--cru-rust-dark);
    color: #fff;
    transform: translateY(-2px);
}
.cru-btn-outline {
    background-color: transparent;
    border-color: var(--cru-tan);
    color: var(--cru-cream);
}
.cru-btn-outline:hover {
    background-color: var(--cru-tan);
    color: var(--cru-espresso);
    transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.cru-section { padding: 5.5rem 0; }
.cru-section-alt {
    background-color: var(--cru-parchment);
    border-top: 1px solid rgba(94,61,40,0.15);
    border-bottom: 1px solid rgba(94,61,40,0.15);
}
.cru-section-head { margin-bottom: 3rem; }
.cru-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 58px;
    border-radius: 50%;
    background-color: var(--cru-wood);
    color: var(--cru-cream);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(59,42,30,0.3);
}
.cru-section-title {
    font-family: var(--cru-head);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cru-bark);
    position: relative;
    display: inline-block;
    margin-bottom: .5rem;
}
.cru-section-title::after {
    content: "";
    display: block;
    width: 80px; height: 3px;
    background: var(--cru-rust);
    margin: .75rem auto 0;
    border-radius: 2px;
}
.cru-section-lead {
    font-size: 1.1rem;
    color: var(--cru-muted);
    font-style: italic;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Artist cards ---------- */
.cru-artist-card {
    display: flex;
    background-color: #fffaf1;
    border: 1px solid rgba(94,61,40,0.18);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(59,42,30,0.10);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cru-artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(59,42,30,0.18);
}
.cru-artist-photo {
    position: relative;
    flex: 0 0 40%;
    min-height: 260px;
    background-color: var(--cru-wood-dark);
    background-image: linear-gradient(135deg, #5e3d28, #3b2a1e);
}
.cru-artist-photo img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}
.cru-photo-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(244,236,224,0.5);
    font-size: 3.5rem;
}
.cru-artist-photo.cru-photo-missing .cru-photo-fallback { display: flex; }

.cru-artist-body { padding: 1.5rem 1.5rem 1.5rem 1.6rem; flex: 1; }
.cru-artist-name {
    font-family: var(--cru-head);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cru-rust-dark);
    margin-bottom: .6rem;
}
.cru-artist-bio {
    font-size: .97rem;
    line-height: 1.6;
    color: var(--cru-ink);
    margin-bottom: 1rem;
}
.cru-artist-link {
    font-family: var(--cru-slab);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--cru-olive);
    text-decoration: none;
}
.cru-artist-link:hover { color: var(--cru-rust); }

@media (max-width: 575.98px) {
    .cru-artist-card { flex-direction: column; }
    .cru-artist-photo { flex-basis: auto; min-height: 300px; }
}

/* ---------- Shows ---------- */
.cru-shows { padding: 2rem 0; }
.cru-shows-icon {
    font-size: 3.5rem;
    color: var(--cru-wood);
    margin-bottom: 1rem;
}
.cru-shows-text {
    font-family: var(--cru-head);
    font-weight: 900;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    color: var(--cru-rust);
    margin-bottom: .75rem;
    letter-spacing: 1px;
}
.cru-shows-sub {
    font-size: 1.1rem;
    color: var(--cru-muted);
    max-width: 520px;
    margin: 0 auto;
    font-style: italic;
}

/* ---------- Contact ---------- */
.cru-contact-card {
    background-color: #fffaf1;
    border: 1px solid rgba(94,61,40,0.18);
    border-radius: 8px;
    padding: 2.25rem;
    box-shadow: 0 6px 18px rgba(59,42,30,0.10);
}
.cru-form .form-label {
    font-family: var(--cru-slab);
    font-weight: 600;
    color: var(--cru-wood-dark);
    font-size: .9rem;
}
.cru-form .form-control {
    border: 1px solid var(--cru-tan);
    background-color: #fffdf8;
    color: var(--cru-ink);
    border-radius: 4px;
}
.cru-form .form-control:focus {
    border-color: var(--cru-rust);
    box-shadow: 0 0 0 .2rem rgba(168,80,31,0.15);
}
.cru-alert {
    border-radius: 6px;
    padding: .9rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: .95rem;
}
.cru-alert-success {
    background-color: #eef1e2;
    border: 1px solid var(--cru-olive);
    color: #45502a;
}
.cru-alert-error {
    background-color: #f7e7dd;
    border: 1px solid var(--cru-rust);
    color: var(--cru-rust-dark);
}
.cru-alert-error ul { padding-left: 1.2rem; }
.cru-contact-direct {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(94,61,40,0.3);
    color: var(--cru-muted);
}
.cru-email {
    font-family: var(--cru-slab);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--cru-rust);
    text-decoration: none;
}
.cru-email:hover { color: var(--cru-rust-dark); text-decoration: underline; }

/* ---------- Footer ---------- */
.cru-footer {
    background-color: var(--cru-espresso);
    color: var(--cru-tan);
    padding: 2.75rem 0 2rem;
    border-top: 3px solid var(--cru-rust);
}
.cru-footer-brand {
    font-family: var(--cru-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--cru-cream);
    margin-bottom: .35rem;
}
.cru-footer-brand .fa-guitar { color: var(--cru-gold); }
.cru-footer-line { font-family: var(--cru-slab); letter-spacing: 1px; margin-bottom: .5rem; }
.cru-footer-email a { color: var(--cru-gold); text-decoration: none; }
.cru-footer-email a:hover { text-decoration: underline; }
.cru-footer-copy { font-size: .85rem; color: rgba(216,195,165,0.6); margin-top: .75rem; margin-bottom: 0; }

/* ---------- Skip link (accessibility / SEO) ---------- */
.cru-skip {
    position: absolute;
    top: .5rem; left: .5rem;
    z-index: 2000;
    background: var(--cru-rust);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 4px;
    font-family: var(--cru-slab);
    font-weight: 600;
    text-decoration: none;
}

/* ---------- Hero artist lineup (matches social share image) ---------- */
.cru-hero-artists {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin: 2rem 0 2.25rem;
}
.cru-hero-artist {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}
.cru-hero-artist img {
    width: 132px;
    height: 132px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid var(--cru-gold);
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    background-color: var(--cru-wood-dark);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cru-hero-artist img:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 22px rgba(0,0,0,0.55);
}
.cru-hero-artist-name {
    margin-top: .7rem;
    font-family: var(--cru-slab);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .3px;
    color: var(--cru-cream);
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
@media (max-width: 575.98px) {
    .cru-hero-artists { gap: 1.1rem 1.4rem; }
    .cru-hero-artist { width: 96px; }
    .cru-hero-artist img { width: 92px; height: 92px; border-width: 3px; }
    .cru-hero-artist-name { font-size: .82rem; }
}

/* ---------- ABLAZE logo placements ---------- */
.cru-contact-direct {           /* form removed — no longer a secondary block */
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.cru-contact-logo {
    display: block;
    width: 340px;
    max-width: 88%;
    height: auto;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(59,42,30,0.28);
}
.cru-contact-say { color: var(--cru-muted); margin-bottom: .4rem; }

.cru-footer-logo {
    display: block;
    width: 230px;
    max-width: 70%;
    height: auto;
    margin: .4rem auto 1.15rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
