:root {
    --primary-background: #000000;
    --primary-text: #ffffff;
    --secondary-background: #121212;
    --secondary-text: #a1a1aa;
    --accent-color: #ff0000;
    --accent-text: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--primary-background);
    color: var(--primary-text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 0;
    letter-spacing: -0.02em;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, opacity 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
    font-family: inherit;
}

button:active {
    transform: scale(0.98);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    body {
        font-size: 15px;
    }

    .mobile-text-break {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ===== header_section ===== */
#header {
    font-family: var(--font-main);
}

.js-mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* ===== hero_split ===== */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
}

.js-hero-img img {
    transition: transform 0.5s ease-in-out;
}

.js-hero-img:hover img {
    transform: scale(1.05);
}

/* ===== welcome_section ===== */
section#welcome {
    position: relative;
    overflow: hidden;
}

section#welcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== faces_voices ===== */
#about {
    font-family: var(--font-main);
}

.js-reveal {
    transition: all 1s ease-out;
}

/* ===== bio_content ===== */
#biography {
    scroll-margin-top: 80px;
}

.js-bio-fade.opacity-100 {
    opacity: 1;
    transform: translateY(0);
}

/* ===== musical_style ===== */
#style .js-reveal {
    transition-property: opacity, transform;
}

/* ===== albums_list ===== */
.js-album-card {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== awards_section ===== */
.js-award-card {
    will-change: transform, opacity;
}

/* ===== interesting_facts ===== */
.js-fact-card {
    transition: transform 0.3s ease-out;
}

.js-fact-card:hover {
    transform: translateY(-5px);
}

/* ===== cta_footer_block ===== */
#conclusion {
    width: 100%;
}

/* ===== footer ===== */
#footer {
    font-family: var(--font-main);
}
@media (max-width:767px) {
    h2 {
        font-size: 1.8rem !important;
    }
}