/* =========================
RESET / BASE
========================= */

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
}

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


/* =========================
GLOBAL LAYOUT
========================= */

.container {
    width: min(100% - 40px, 1500px);
    margin-inline: auto;
}


/* =========================
SHARED INTERNAL PAGES BACKGROUND
Music / Playlists / About / Contact
========================= */

.music-body,
.about-body,
.contact-body {
    min-height: 100vh;
    color: white;
    position: relative;
    background: #050814;
}

.music-body::before,
.about-body::before,
.contact-body::before {
    content: "";
    position: fixed;
    inset: 0;
    
    background-image: url(../assets/background-images/main-background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    filter: blur(16px);
    transform: scale(1.08);
    opacity: 0.85;
    
    z-index: -2;
}

.music-body::after,
.about-body::after,
.contact-body::after {
    content: "";
    position: fixed;
    inset: 0;
    
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(120, 180, 210, 0.16),
            transparent 34%
        ),
        linear-gradient(
            to bottom,
            rgba(5, 8, 20, 0.86),
            rgba(8, 10, 24, 0.80)
        );
    
    z-index: -1;
}


/* =========================
HOME PAGE
Header hero, Inner Peace...
========================= */

.header {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    overflow: hidden;

    background-color: #050814;
}

.headerVideo {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 100%;

    z-index: 0;
    pointer-events: none;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 1;
    pointer-events: none;
    
    background:
    radial-gradient(
        circle at center 45%,
        rgba(0, 0, 0, 0.138) 0%,
        rgba(0, 0, 0, 0.064) 30%,
        rgba(0, 0, 0, 0) 58%
    ),
    linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.13) 24%,
        rgba(0, 0, 0, 0.055) 50%,
        rgba(0, 0, 0, 0.276) 100%
    );
}
.header > *:not(.headerVideo) {
    position: relative;
    z-index: 2;
}

/* =========================
NAVBAR — MOBILE FIRST
========================= */

.navbar {
    width: 100%;
    padding: 32px 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: relative;
}

/* Logo */

.navbar__logo {
    font-family: "Aboreto", serif;
    font-size: clamp(38px, 10.5vw, 52px);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.9);
    
    text-shadow:
    0 0 8px rgba(255, 255, 255, 0.10),
    0 2px 14px rgba(0, 0, 0, 0.22);
    
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    
    position: relative;
    z-index: 30;
}

.navbar__logo:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Burger */

.navbar__toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 44px;
    height: 44px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
    
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    
    z-index: 30;
}

.navbar__toggle:focus:not(:focus-visible) {
    outline: none;
}

.navbar__toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 5px;
    border-radius: 8px;
}

.navbar__toggle span {
    display: block;
    width: 32px;
    height: 2px;
    
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    
    transition: transform 0.25s ease;
}

/* Burger ouvert = croix */

.navbar__toggle--open span:first-child {
    transform: translateY(5.5px) rotate(45deg);
}

.navbar__toggle--open span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* Menu caché par défaut */

.navbar__links {
    display: none;
}

/* Menu ouvert — mobile fullscreen */

.navbar__links--open {
    position: fixed;
    inset: 0;
    
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    
    padding: 160px 24px 240px;
    
    background:
    linear-gradient(
    to bottom,
    rgba(5, 8, 20, 0.94),
    rgba(10, 12, 30, 0.82)
    );
    
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    
    border: none;
    border-radius: 0;
    box-shadow: none;
    
    z-index: 20;
}

.navbar__links a {
    color: white;
    
    font-weight: 400;
    font-size: clamp(1.15rem, 4.2vw, 1.7rem);
    letter-spacing: 0.20em;
    text-transform: uppercase;
    
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    
    transition: opacity 0.25s ease, text-shadow 0.25s ease;
}

.navbar__links a:hover,
.navbar__links a.active {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}


/* =========================
NAVBAR SOCIAL LINKS
Icônes utilisées dans le menu mobile
========================= */

.navbar__social-links {
    display: none;
}

.navbar.menu-open .navbar__social-links {
    position: fixed;
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    
    z-index: 30;
}

.navbar__social-links a {
    width: 44px;
    height: 44px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    opacity: 0.85;
    
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.navbar__social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.navbar__social-links img {
    display: block;
    
    max-width: none;
    max-height: none;
    
    filter:
    brightness(0) invert(1)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}


/* =========================
HERO CONTENT — HOME
========================= */

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    color: white;
    
    margin-top: auto;
    margin-bottom: auto;
    
    transform: translateY(-60px);
    padding: 0 24px;
}

.hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 10vw, 3.4rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    
    text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.25),
    0 0 18px rgba(255, 255, 255, 0.08);
    
    margin-bottom: 18px;
}

/* Menu ouvert sur Home :
on cache Inner Peace + les icônes du hero.
Les icônes visibles sont celles de .navbar__social-links.
*/

.header.menu-open .hero-title {
    opacity: 0;
}

.header.menu-open .hero-content .social-links {
    display: none;
}

/* Icônes sociales du hero Home */

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    opacity: 0.85;
    
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-links img {
    display: block;
    
    max-width: none;
    max-height: none;
    
    filter:
    brightness(0) invert(1)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}


/* =========================
ICÔNES — TAILLES
Réutilisées par hero + navbar menu
========================= */

.spotify-icon {
    width: 28px;
}

.youtube-icon {
    width: 31px;
}

.soundcloud-icon {
    width: 38px;
    transform: translateY(-1px);
}

.appleMusicIcon {
    width: 32px;
}

.instagram-icon {
    width: 29px;
}


/* =========================
FOOTER
========================= */

.site-footer {
    color: white;
    padding: 72px 0 72px;
    
    position: relative;
    z-index: 1;
}

.site-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    
    text-align: center;
}

.site-footer__logo {
    font-family: "Aboreto", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.9);
    
    text-shadow:
    0 0 8px rgba(255, 255, 255, 0.10),
    0 2px 14px rgba(0, 0, 0, 0.22);
    
    transition:
    opacity 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-footer__logo:hover {
    opacity: 1;
    text-shadow:
    0 0 10px rgba(255, 255, 255, 0.35),
    0 2px 16px rgba(0, 0, 0, 0.28);
    
    transform: translateY(-2px);
}

.site-footer__tagline {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    
    color: rgba(255, 255, 255, 0.65);
}

.site-footer__social-links {
    margin-top: 6px;
}

.site-footer__copyright {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    
    color: rgba(255, 255, 255, 0.45);
}


/* =========================
PAGE HEADER — PAGES INTERNES
========================= */

.music-header {
    background: transparent;
    color: white;
    
    position: relative;
    z-index: 10;
}

.music-header--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    background: transparent;
}


/* =========================
SHARED INTERNAL PAGE CONTENT
========================= */

.music-page,
.about-page,
.contact-page {
    color: white;
    padding: 0px 0 0;
    position: relative;
    z-index: 1;
}

.music-page {
    padding: 0;
}

.music-section,
.playlist-section,
.about-section,
.contact-section {
    max-width: none;
    margin: 0;
}

/* Heading */

.section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.section-heading h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 5.4vw, 3.6rem);

    
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    
    transform: translateX(-0.04em);
    
    margin-bottom: 0;
    
    text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(255, 255, 255, 0.08);
}

.section-heading p {
    font-size: 1rem;
    line-height: 1.8;
    
    color: rgba(255, 255, 255, 0.68);
}


/* =========================
MUSIC PAGE
Grid releases, cards...
========================= */

/* =========================
LATEST RELEASE HERO
========================= */

/* .latest-release-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    padding: 120px 0 64px;

    background-image:
        linear-gradient(
            to right,
            rgba(5, 8, 20, 0.82),
            rgba(5, 8, 20, 0.58),
            rgba(5, 8, 20, 0.90)
        ),
        url("../assets/artworks/Kyoma - Where We Belong (Artwork).jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.latest-release-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    padding: 120px 0 64px;

    background-image:
        linear-gradient(
            to right,
            rgba(5, 8, 20, 0.82),
            rgba(5, 8, 20, 0.58),
            rgba(5, 8, 20, 0.90)
        ),
        url("../assets/background-images/koharu-background.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.latest-release-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    
    z-index: 0;
}



.latest-release-hero__inner {
    position: relative;
    z-index: 1;
    
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    
    align-items: center;
}

.latest-release-hero__cover {
    max-width: 430px;
    margin-inline: auto;
    
    border-radius: 22px;
    overflow: hidden;
    
    box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(120, 180, 210, 0.12);
}

.latest-release-hero__cover img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.latest-release-hero__content {
    max-width: 620px;
    text-align: center;
}

.latest-release-hero__label {
    display: inline-block;
    margin-bottom: 18px;
    
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.58);
}

.latest-release-hero__content h1 {
    margin-bottom: 24px;
    
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.95);
    
    text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(255, 255, 255, 0.10);
}

.latest-release-hero__content p {
    margin-bottom: 32px;
    
    font-size: 1rem;
    line-height: 1.8;
    
    color: rgba(255, 255, 255, 0.72);
}

.latest-release-hero__link {
    display: inline-block;
    
    padding: 14px 30px;
    
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.latest-release-hero__link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}


.music-section {
    padding-top: 44px;
}

.music-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.music-filter {
    padding: 12px 18px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    background: rgba(10, 12, 30, 0.62);
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.music-filter:hover,
.music-filter.active {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.32);
}

.music-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

/* Music Cards */

.music-card {
    background: rgba(10, 12, 30, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    
    transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.music-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.music-card__image-link {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.music-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    transition: transform 0.35s ease;
}

.music-card:hover .music-card__image-link img {
    transform: scale(1.04);
}

.music-card__content {
    padding: 16px;
}

.music-card__content h2 {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    
    margin-bottom: 6px;
}

.music-card__content p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    
    margin-bottom: 22px;
}

.music-card__link {
    display: inline-block;
    
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.9);
    
    opacity: 0.85;
    transition: opacity 0.25s ease, text-shadow 0.25s ease;
}

.music-card__link:hover {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}


/* =========================
PLAYLISTS PAGE
========================= */

.playlist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;

    max-width: 1800px;
    margin-inline: auto;
}

.playlist-card {
    text-align: center;
}

.playlistCardLink {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.playlistCardLink:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 6px;
    border-radius: inherit;
}

.playlist-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.playlist-card__content h2 {
    max-width: 320px;
}

.playlist-card__content p {
    max-width: 360px;
    line-height: 1.7;
}


/* =========================
ABOUT PAGE
========================= */

.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;

    margin-bottom: 40px;
    padding: 28px;

    background: rgba(10, 12, 30, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.about-story:last-child {
    margin-bottom: 0;
}

.about-story__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story__label {
    display: inline-block;

    margin-bottom: 16px;

    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.52);
}

.about-story__text h2 {
    max-width: 700px;

    margin-bottom: 22px;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.65rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.92);

    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.35),
        0 0 22px rgba(255, 255, 255, 0.06);
}

.about-story__text p {
    max-width: 720px;

    margin-bottom: 18px;

    font-size: 1rem;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.68);
}

.about-story__text p:last-child {
    margin-bottom: 0;
}

.about-story__image {
    overflow: hidden;

    border-radius: 20px;
    aspect-ratio: 4 / 5;

    background: rgba(255, 255, 255, 0.06);
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.about-story_roja-img {
    filter: brightness(0.82) saturate(0.75) contrast(1.05);   
}

.about-story_kyoma-img {
    filter: brightness(0.88) saturate(0.85) contrast(1.05);

}
.about-story:hover .about-story__image img {
    transform: scale(1.04);
}

/* =========================
CONTACT PAGE
========================= */

.contact-section {
    width: 100%;
}

.contact-section .section-heading {
    margin-bottom: 40px;
}

.contact-card {
    min-height: 470px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: relative;
    overflow: hidden;
    
    padding: 52px 32px;
    
    background: rgba(10, 12, 30, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    0 0 44px rgba(120, 150, 255, 0.045);
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    
    background-image:
    linear-gradient(
    rgba(8, 10, 24, 0.72),
    rgba(8, 10, 24, 0.82)
    ),
    url("../assets/background-images/image00001.png");
    
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    
    filter: blur(2px);
    transform: scale(1.04);
    
    z-index: -1;
    
    transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    filter 0.4s ease;
}

.contact-card:hover::before {
    opacity: 0.5;
    transform: scale(1.06);
    filter: blur(1px);
}

.contact-card__content {
    max-width: 760px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-card__label {
    display: inline-block;
    margin-bottom: 18px;
    
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.52);
}

.contact-card__content h2 {
    margin-bottom: 24px;
    
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.94);
    
    text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(255, 255, 255, 0.08);
}

.contact-card__content p {
    max-width: 680px;
    margin: 0 auto 28px;
    
    font-size: 1rem;
    line-height: 1.8;
    
    color: rgba(255, 255, 255, 0.74);
}

.contact-card__email {
    display: inline-block;
    margin-bottom: 28px;
    
    font-size: clamp(1rem, 3vw, 1.35rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    
    color: rgba(255, 255, 255, 0.9);
    
    transition:
    opacity 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-card__email:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.contact-card__social-links {
    gap: 26px;
}

.contact-card__social-links a {
    width: 46px;
    height: 46px;
}


/* =========================
SCROLL REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
RESPONSIVE
========================= */

/* ≥ 640px : grands téléphones / petites tablettes */

@media (min-width: 640px) {
    .hero-title {
        font-size: clamp(2.4rem, 7vw, 4rem);
    }
    
    .social-links {
        gap: 22px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
    
    .spotify-icon {
        width: 30px;
    }
    
    .youtube-icon {
        width: 33px;
    }
    
    .soundcloud-icon {
        width: 41px;
    }
    
    .appleMusicIcon {
        width: 38px;
    }
    
    .instagram-icon {
        width: 31px;
    }
}


/* ≥ 768px : tablettes */

@media (min-width: 768px) {
    .container {
        width: min(100% - 64px, 1500px);
    }
    
    .music-grid,
    .playlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (min-width: 900px) {
    .about-story {
        grid-template-columns: 1fr 1fr;
        gap: 48px;

        padding: 40px;
        margin-bottom: 48px;

        align-items: center;
    }

    .about-story--reverse {
        grid-template-columns: 1fr 1fr;
    }

    .about-story__image {
        aspect-ratio: 1 / 1;
        max-height: 520px;
    }
}


/* ≥ 1024px : desktop */

@media (min-width: 1024px) {
    .container {
        width: min(100% - 128px, 1500px);
    }
    
    .navbar {
        padding: 32px 0;
        justify-content: space-between;
    }
    
    .navbar__logo {
        font-size: clamp(36px, 3.2vw, 54px);
        letter-spacing: 0.16em;
    }
    
    .navbar__toggle {
        display: none;
    }
    
    .navbar__links,
    .navbar__links--open {
        position: static;
        inset: auto;
        transform: none;
        
        width: auto;
        height: auto;
        max-width: none;
        
        padding: 0;
        
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 40px;
        
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        
        border: none;
        border-radius: 0;
        box-shadow: none;
        
        z-index: auto;
    }
    
    .navbar__links a {
        font-size: 1.3rem;
        letter-spacing: 0.16em;
    }
    
    .navbar__social-links,
    .navbar.menu-open .navbar__social-links {
        display: none;
    }
    
    .hero-content {
        transform: translateY(-80px);
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 3vw, 3rem);
        letter-spacing: 0.18em;
    }
    
    .header.menu-open .hero-title {
        opacity: 1;
    }
    
    .header.menu-open .hero-content .social-links {
        display: flex;
    }
    
    .latest-release-hero {
        min-height: 100vh;
        /* padding: 80px 0; */
    }
    
    .latest-release-hero__inner {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 80px;
    }
    
    .latest-release-hero__cover {
        max-width: 460px;
        margin-inline: 0;
    }
    
    .latest-release-hero__content {
        text-align: left;
    }
    
    .music-grid,
    .playlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .music-section .music-card__image-link {
        aspect-ratio: 6 / 5;
    }
    
    .playlist-section .music-card__image-link {
        aspect-ratio: 1 / 1;
    }
    
    .music-card__content {
        padding: 18px 22px;
    }
    
    .music-card__content p {
        margin-bottom: 18px;
    }
    
    .social-links {
        gap: 24px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
    
    .spotify-icon {
        width: 30px;
    }
    
    .youtube-icon {
        width: 33px;
    }
    
    .soundcloud-icon {
        width: 40px;
    }
    
    .appleMusicIcon {
        width: 36px;
    }
    
    .instagram-icon {
        width: 31px;
    }
}


/* ≥ 1280px : desktop large */

@media (min-width: 1280px) {
    .about-story {
        gap: 56px;
        padding: 48px 56px;
    }

    .about-story__image {
        max-height: 540px;
    }
}



@media (max-width: 1024px) {
      .section-heading {
        text-align: center;
        margin-inline: auto;
    }

    .section-heading h1 {
        transform: none;
    }
}


/* ≤ 700px : Contact mobile fixes */

@media (max-width: 700px) {
    .contact-card {
        min-height: auto;
        padding: 44px 24px;
    }
    
    .contact-card__content h2 {
        letter-spacing: 0.08em;
    }
    
    .contact-card__content p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .contact-card__social-links {
        gap: 18px;
        flex-wrap: wrap;
    }
}


/* ≤ 600px : About mobile fixes */

@media (max-width: 600px) {
    .about-story {
        padding: 22px;
        border-radius: 22px;
    }

    .about-story__text h2 {
        font-size: 1.55rem;
        letter-spacing: 0.07em;
    }

    .about-story__text p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .about-story__image {
        border-radius: 18px;
        aspect-ratio: 1 / 1;
    }
}

