/* Richardson Audio — Child Theme Additions
   Loads after the parent's site.css and only adds new rules —
   nothing here overrides or duplicates parent styles. */

/* --- Top bar: YouTube link alongside the phone number --- */
.top-bar-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-youtube {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: .08em;
    transition: opacity .2s ease;
}

.top-bar-youtube:hover {
    opacity: .75;
}

@media (max-width: 640px) {
    .top-bar-youtube {
        display: none;
    }
}

/* --- Footer: YouTube channel link --- */
.footer-youtube {
    display: inline-block;
    margin-top: .6rem;
    color: var(--gold-light);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: opacity .2s ease;
}

.footer-youtube:hover {
    opacity: .75;
}

/* --- Reusable subscribe form --- */
.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.2rem;
}

.subscribe-form input[type="email"] {
    flex: 1 1 200px;
}

.subscribe-form .button {
    flex: 0 0 auto;
}

.subscribe-form .form-notice {
    flex-basis: 100%;
    margin-top: 0;
}

/* --- Homepage Featured Release section --- */
.featured-release {
    background: #0d0a07;
}

.featured-release-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.featured-release-copy h2 {
    max-width: 640px;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    margin-top: .5rem;
}

.featured-release-copy p:not(.eyebrow):not(.featured-release-date) {
    max-width: 560px;
    margin-top: 1rem;
}

.featured-release-date {
    margin-top: 1.2rem;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: .82rem;
}

.featured-release-copy .button {
    margin-top: 1.7rem;
}

.featured-release-subscribe {
    padding: 30px;
    background: rgba(18, 16, 13, .78);
    border: 1px solid var(--line);
}

.featured-release-subscribe h3 {
    margin-top: .5rem;
    max-width: 320px;
    font-size: 1.3rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

@media (max-width: 900px) {
    .featured-release-layout {
        grid-template-columns: 1fr;
    }
}

/* --- Homepage intro video: YouTube cross-link --- */
.video-caption-youtube {
    display: inline-block;
    margin-top: .9rem;
    color: var(--gold-light);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: opacity .2s ease;
}

.video-caption-youtube:hover {
    opacity: .75;
}
.featured-release-secondary-link {
    display: inline-block;
    margin-left: 16px;
    color: var(--gold-light);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s ease;
}

.featured-release-secondary-link:hover {
    opacity: .75;
}
/* --- Latest from YouTube feed --- */

.youtube-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(28px, 4vw, 48px);
    margin-top: 2.5rem;
}

.youtube-feed-card {
    display: flex;
    flex-direction: column;
}

.youtube-feed-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
}

.youtube-feed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.youtube-feed-thumb:hover img {
    transform: scale(1.04);
}

.youtube-feed-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 6, 4, .25);
}

.youtube-feed-play svg {
    width: 46px;
    height: 46px;
    color: var(--gold-light);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .5));
}

.youtube-feed-title {
    margin-top: 1rem;
    font-size: 1.15rem;
    line-height: 1.35;
}

.youtube-feed-title a {
    color: var(--ink);
}

.youtube-feed-title a:hover {
    color: var(--gold-light);
}

.youtube-feed-excerpt {
    margin-top: .6rem;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
}

.youtube-feed-readmore {
    display: inline-block;
    margin-top: .6rem;
    color: var(--gold-light);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.youtube-feed-readmore:hover {
    opacity: .75;
}