/* _shared.css — site-wide styles for Miranda Russell / Randa Records
   Edit here and all pages update automatically.
   ─────────────────────────────────────────────────────────────────── */

/* ── BASE ── */
body { font-family: 'Montserrat', sans-serif; background: #fdfdfb; color: #444; margin: 0; }
h1, h2, h3, .navbar-brand { font-family: 'Playfair Display', serif; }

/* ── NAVBAR ── */
.navbar { background: #2c1a1d !important; }

/* ── HERO (shared across all pages) ── */
/* HEADER IMAGE — change the url() path here to swap the hero photo on every page */
.hero {
    background: linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.52)),
                url('/images/miranda/Miranda-1095.jpg')
                55% 30% / cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 50px;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero > .container { width: 100%; max-width: 800px; }
.hero h1 { font-size: 4.3rem; text-shadow: 2px 2px 18px rgba(0,0,0,1); }
.hero p  { font-size: 1.5rem; text-shadow: 1px 1px 10px rgba(0,0,0,0.9); }

@media (max-width: 768px) {
    .hero { background-attachment: scroll; min-height: 260px; padding: 60px 0 30px; background-position: 60% 25%; }
    .hero h1 { font-size: 2.6rem; }
    .hero p  { font-size: 1.15rem; }
}

/* ── SECTION DIVIDER ── */
.section-divider { display: flex; align-items: center; gap: 1rem; margin: 60px 0 30px; }
.section-divider h2 { white-space: nowrap; margin: 0; font-size: 1.8rem; }
.section-divider hr { flex: 1; border-color: #9c2746; border-width: 2px; opacity: 1; }

/* ── BUTTONS ── */
.btn-primary-rose {
    display: inline-block;
    padding: 12px 32px;
    background: #9c2746;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s;
}
.btn-primary-rose:hover { background: #7a1f38; color: white; transform: translateY(-2px); }

.btn-outline-rose {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #9c2746;
    color: #9c2746;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    text-decoration: none;
    transition: all .25s;
}
.btn-outline-rose:hover { background: #9c2746; color: white; transform: translateY(-2px); }

/* ── MAILING LIST SECTION ── */
.mailing-list-section {
    background: #2c1a1d;
    padding: 60px 0;
}
.mc-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .mc-wrap { flex-direction: row; justify-content: center; gap: 3rem; text-align: left; }
}
.mc-text h3 { font-family: 'Playfair Display', serif; color: white; margin-bottom: 0.3rem; font-size: 1.6rem; }
.mc-text p  { color: #cca0ae; margin: 0; font-size: 0.95rem; }
.mc-form { display: flex; gap: 10px; flex-wrap: wrap; }
.mc-email {
    flex: 1;
    min-width: 220px;
    padding: 12px 18px;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}
.mc-btn {
    padding: 12px 28px;
    background: #9c2746;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background .25s;
}
.mc-btn:hover { background: #7a1f38; }

/* ── FOOTER ── */
footer { background: #1a0f11; color: #eee; padding: 50px 0; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.footer-links a { color: #cca0ae; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.82rem; opacity: 0.5; margin: 0; }
