/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500&display=swap');

/* VARIABLES & THEME */
:root {
    --jm-bg-dark: #121212;
    --jm-text-light: #f5f5f5;
    --jm-text-muted: #bbbbbb;
    --jm-accent: #c40233;
    --jm-surface: #1e1e1e;
    --jm-font-heading: 'Playfair Display', serif;
    --jm-font-body: 'Roboto', sans-serif;
}

/* STABILITY FIX */
html, body {
    overflow: auto !important;
}

body {
    background-color: var(--jm-bg-dark);
    color: var(--jm-text-light);
    font-family: var(--jm-font-body);
    font-size: 1.1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--jm-font-heading);
    font-weight: 700;
}

.accent-color, .highlight-accent {
    color: var(--jm-accent) !important;
}

.section-heading {
    font-size: 2.5rem;
}

.section-heading-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.bg-surface {
    background-color: var(--jm-surface);
}

/* NAVBAR */
.navbar {
    background-image: linear-gradient(to bottom, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.navbar-brand picture img {
    height: 40px;
}
.social-icons a {
    color: var(--jm-accent);
    font-size: 1.5rem;
    margin-left: 1.5rem;
    transition: opacity 0.2s ease-in-out;
}
.social-icons a:hover {
    opacity: 0.8;
}

/* HERO */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.hero-background picture,
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.btn-accent {
    background-color: var(--jm-accent);
    border-color: var(--jm-accent);
    color: #ffffff;
    font-weight: 500;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}
.btn-accent .bi {
    margin-right: 0.75rem;
    vertical-align: -0.1em;
}
.btn-accent:hover {
    background-color: #a3012a;
    border-color: #a3012a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 2, 51, 0.4);
}

/* AUDIO PLAYER & LAYLO */
.audio-player-wrapper, .laylo-wrapper {
    max-width: 500px;
    margin: 1rem auto 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.disco-embed {
    border: none;
    width: 100%;
    max-width: 480px;
}

/* QUOTES */
.quote-card {
    background-color: var(--jm-surface);
    border: 1px solid #333;
    border-left: 5px solid var(--jm-accent);
    padding: 2rem;
    height: 100%;
}
.quote-card .testimonial-portrait picture img {
    max-width: 150px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.quote-card p {
    line-height: 1.7;
    text-align: left;
}
.quote-card footer {
    color: var(--jm-text-muted);
    font-weight: bold;
    margin-top: 1rem;
    display: block;
    text-align: center;
}

/* LYRICS SECTION */
.lyrics-section {
    background-image: linear-gradient(var(--jm-surface), var(--jm-bg-dark));
    border-top: 2px solid var(--jm-accent);
    border-bottom: 2px solid var(--jm-accent);
}
.lyrics-content {
    line-height: 1.8;
    font-size: 1.2rem;
    text-align: center;
    font-style: italic;
}

/* PRESS ASSETS */
.press-assets h3 {
    font-family: var(--jm-font-body);
    font-weight: 500;
    border-bottom: 1px solid #444;
    padding-bottom: 0.75rem;
    margin-top: 3rem;
}
.asset-description {
    font-style: italic;
    color: var(--jm-text-muted);
    max-width: 800px;
    margin: 1rem auto 0 auto;
}
.press-assets .press-photo picture img, .press-assets .brand-asset picture img {
    width: 100%;
    height: auto;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1rem;
}
.document-buttons a {
    margin: 0 0.5rem;
}


/* FOOTER */
footer {
    background-color: #0c0c0c;
}