/* =========================================================
   LA HAINE BEATS
   CSS STYLE
   Compatible amb index.html + script.js
========================================================= */


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

* {
    margin: 20;
    padding: 20;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "Inter", sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: none;
}

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

ul {
    list-style: none;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #000000;
    --dark: #0b0b0b;
    --dark-2: #101010;

    --white: #ffffff;

    --gray-light: #c2c2c2;
    --gray-text: #888888;

    --red: #8b0000;
    --red-light: #b30000;

    --border: #252525;

    --max-width: 1080px;

    --transition: all .35s ease;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(var(--max-width), 90%);
    margin: 0 auto;
}


/* =========================================================
   SECTIONS
========================================================= */

section {
    position: center;
    padding: 120px 0;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.section-label {
    margin-bottom: 15px;

    color: var(--red);

    font-family: "Bebas Neue", sans-serif;

    font-size: 1rem;

    letter-spacing: 5px;

    text-transform: uppercase;
}

.section-title {
    max-width: 600px;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(3.5rem, 7vw, 7rem);

    font-weight: 400;

    line-height: .9;

    text-transform: uppercase;
}

.divider {
    width: 80px;
    height: 3px;

    margin: 30px 0 50px;

    background: var(--red);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn,
.btn-outline {

    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 52px;

    padding: 0 40px;

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition: var(--transition);
}


.btn {

    background: var(--red);

    color: var(--white);
}


.btn:hover {

    background: var(--red-light);

    transform: translateY(-3px);

}


.btn-outline {

    border: 2px solid rgba(255, 255, 255, .5);

    color: var(--white);

    background: transparent;
}


.btn-outline:hover {

    background: var(--white);

    color: var(--black);

    border-color: var(--white);

    transform: translateY(-3px);

}


/* =========================================================
   HEADER / NAVBAR
========================================================= */

.site-header {

    position: relative;

    z-index: 1000;
}


.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 90px;

    padding: 0 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: transparent;

    transition: var(--transition);

}


.navbar.scrolled {

    height: 70px;

    background: rgba(0, 0, 0, .94);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}


.logo {

    position: relative;

    z-index: 1001;

    display: flex;

    align-items: center;
}


.logo img {

    width: auto;

    height: 48px;

    transition: var(--transition);
}


.navbar.scrolled .logo img {

    height: 40px;

}


/* =========================================================
   DESKTOP MENU
========================================================= */

.menu {

    display: flex;

    align-items: center;

    gap: 40px;
}


.menu li {

    position: relative;
}


.menu a {

    position: relative;

    color: var(--white);

    font-size: .75rem;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--red);

    transition: width .3s ease;
}


.menu a:hover::after {

    width: 100%;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-mobile {

    display: none;

    position: relative;

    z-index: 1002;

    width: 40px;

    height: 40px;

    padding: 8px;

    background: transparent;

    cursor: pointer;
}


.menu-mobile span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    background: var(--white);

    transition: var(--transition);
}


.menu-mobile.open span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.menu-mobile.open span:nth-child(2) {

    opacity: 0;

}


.menu-mobile.open span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: center;

    min-height: 100vh;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;
}


.hero-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .45)
        ),

        linear-gradient(
            0deg,
            rgba(0, 0, 0, .8),
            transparent 60%
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    width: min(900px, 90%);

    text-align: center;

    animation: heroFadeIn 1.2s ease forwards;
}


.hero-logo {

    width: min(650px, 85vw);

    margin: 0 auto 35px;
}


.hero-content h1 {

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(3rem, 7vw, 6rem);

    font-weight: 400;

    line-height: .9;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.hero-content p {

    margin: 25px auto 35px;

    color: var(--gray-light);

    font-size: 1rem;

    letter-spacing: 2px;
}


.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


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

.about-section {

    background:

        linear-gradient(
            135deg,
            #080808 0%,
            #050505 100%
        );
}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {

    position: relative;

    min-height: 600px;

    background:
    linear-gradient(
        rgba(0, 0, 0, .2),
        rgba(0, 0, 0, .7)
    ),
    url("assets/hero-lahaine.webp")
    center / cover no-repeat;

    border: 1px solid #222;

    overflow: hidden;
}


.about-visual::before {

    content: "";

    position: absolute;

    inset: 20px;

    border: 1px solid rgba(255, 255, 255, .15);

    pointer-events: none;
}


.about-frame {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 35px;
}


.frame-label {

    font-family: "Bebas Neue", sans-serif;

    font-size: 1rem;

    letter-spacing: 5px;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {

    max-width: 600px;
}


.about-content p {

    color: var(--gray-light);

    margin-bottom: 22px;
}


.about-lead {

    font-size: 1.15rem;

    color: var(--white) !important;

    line-height: 1.8;
}


.text-link {

    display: inline-flex;

    gap: 15px;

    margin-top: 20px;

    color: var(--white);

    font-size: .8rem;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: var(--transition);
}


.text-link span {

    color: var(--red);

    transition: var(--transition);
}


.text-link:hover {

    color: var(--red);
}


.text-link:hover span {

    transform: translateX(7px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: var(--black);
}


.services-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: #292929;

    border: 1px solid #292929;
}


.service {

    position: relative;

    min-height: 380px;

    padding: 45px 32px;

    display: flex;

    flex-direction: column;

    background: var(--dark);

    transition: var(--transition);

    overflow: hidden;
}


.service::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: var(--red);

    transition: width .4s ease;
}


.service:hover {

    background: #101010;

    transform: translateY(-8px);
}


.service:hover::before {

    width: 100%;
}


.service-number {

    font-family: "Bebas Neue", sans-serif;

    font-size: 1.2rem;

    color: rgba(255, 255, 255, .2);

    margin-bottom: auto;
}


.service h3 {

    font-family: "Bebas Neue", sans-serif;

    font-size: 2.5rem;

    font-weight: 400;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 20px;
}


.service p {

    color: var(--gray-text);

    font-size: .9rem;

    line-height: 1.8;

    margin-bottom: 25px;
}


.service-link {

    margin-top: auto;

    color: var(--white);

    font-size: .75rem;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: var(--transition);
}


.service-link:hover {

    color: var(--red);
}


/* =========================================================
   BEAT STORE
========================================================= */

.beats-section {

    background: var(--dark-2);
}


.section-intro {

    max-width: 600px;

    color: var(--gray-light);

    margin-bottom: 55px;
}


.section-intro span {

    display: block;

    margin-top: 10px;

    color: var(--red);

    font-family: "Bebas Neue", sans-serif;

    font-size: 1.2rem;

    letter-spacing: 3px;
}


/* =========================================================
   BEATS GRID
========================================================= */

.beats-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* =========================================================
   BEAT CARD
========================================================= */

.beat-card {

    position: relative;

    background: #111;

    border: 1px solid #222;

    transition: var(--transition);
}


.beat-card:hover {

    transform: translateY(-8px);

    border-color: var(--red);
}


.beat-cover {

    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;
}


.beat-cover img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.beat-card:hover .beat-cover img {

    transform: scale(1.06);
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.play-button {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 65px;

    height: 65px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--white);

    background: rgba(139, 0, 0, .9);

    font-size: 1.2rem;

    cursor: pointer;

    opacity: 0;

    transition: var(--transition);
}


.beat-card:hover .play-button {

    opacity: 1;
}


.play-button:hover {

    background: var(--red-light);

    transform: translate(-50%, -50%) scale(1.1);
}


.play-icon {

    display: inline-block;
}


.pause-icon {

    display: none;
}


.beat-card.is-playing .play-icon {

    display: none;
}


.beat-card.is-playing .pause-icon {

    display: inline-block;
}


.beat-card.is-playing .play-button {

    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* =========================================================
   BEAT INFO
========================================================= */

.beat-info {

    padding: 25px;
}


.beat-info h3 {

    font-family: "Bebas Neue", sans-serif;

    font-size: 2rem;

    font-weight: 400;

    letter-spacing: 1px;
}


.beat-info p {

    color: var(--gray-text);

    font-size: .85rem;

    margin-bottom: 18px;
}


/* =========================================================
   AUDIO PROGRESS
========================================================= */

.audio-progress {

    width: 100%;

    margin: 10px 0 20px;
}


.progress-bar {

    width: 100%;

    height: 3px;

    background: #2b2b2b;

    cursor: pointer;

    position: relative;
}


.progress-fill {

    display: block;

    width: 0%;

    height: 100%;

    background: var(--red);

    transition: width .1s linear;
}


.progress-bar:hover .progress-fill {

    background: var(--red-light);
}


/* =========================================================
   TIME
========================================================= */

.time-display {

    display: flex;

    justify-content: space-between;

    margin-top: 7px;

    color: #777;

    font-size: .7rem;
}


/* =========================================================
   BEAT ACTIONS
========================================================= */

.beat-actions {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.small-btn {

    display: inline-flex;

    padding: 9px 20px;

    background: var(--red);

    color: var(--white);

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);
}


.small-btn:hover {

    background: var(--red-light);
}


.beat-details {

    color: #999;

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);
}


.beat-details:hover {

    color: var(--white);
}


.center-button {

    display: flex;

    justify-content: center;

    margin-top: 55px;
}


/* =========================================================
   PLAYING CARD
========================================================= */

.beat-card.is-playing {

    border-color: var(--red);
}


.beat-card.is-playing .beat-cover::after {

    content: "NOW PLAYING";

    position: absolute;

    left: 15px;

    bottom: 15px;

    padding: 5px 9px;

    background: var(--red);

    color: var(--white);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   FEATURED BEAT
========================================================= */

.beat-detail-section {

    background: #000000;
}


.beat-detail-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.beat-detail-cover {

    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border: 1px solid #252525;
}


.beat-detail-cover img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.beat-detail-play {

    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(0, 0, 0, .25);
}


.detail-play-button {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: var(--red);

    color: white;

    font-size: 1.4rem;

    cursor: pointer;

    transition: .3s ease;
}


.detail-play-button:hover {

    background: var(--red-light);

    transform: scale(1.08);
}


.beat-detail-info h2 {

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(4rem, 7vw, 6rem);

    font-weight: 400;

    line-height: .9;

    text-transform: uppercase;
}


.beat-detail-description {

    color: var(--gray-light);

    max-width: 550px;

    margin-bottom: 35px;
}


/* =========================================================
   BEAT DATA
========================================================= */

.beat-data {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #292929;

    border-bottom: 1px solid #292929;

    margin-bottom: 35px;
}


.beat-data div {

    padding: 18px 15px;

    border-right: 1px solid #292929;
}


.beat-data div:last-child {

    border-right: none;
}


.beat-data span {

    display: block;

    color: #777;

    font-size: .7rem;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 5px;
}


.beat-data strong {

    font-size: .95rem;
}


/* =========================================================
   LICENSE BOX
========================================================= */

.license-box {

    padding: 30px;

    background: #101010;

    border: 1px solid #292929;
}


.license-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid #292929;
}


.license-label {

    color: var(--red);

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: 3px;
}


.license-header h3 {

    margin-top: 8px;

    font-family: "Bebas Neue", sans-serif;

    font-size: 2rem;

    font-weight: 400;
}


.license-price {

    font-family: "Bebas Neue", sans-serif;

    font-size: 3rem;

    white-space: nowrap;
}


.license-features {

    padding: 22px 0;
}


.license-features li {

    color: #bbb;

    font-size: .85rem;

    margin-bottom: 8px;
}


.buy-button {

    width: 100%;

    padding: 17px;

    background: var(--red);

    color: white;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition: .3s ease;
}


.buy-button:hover {

    background: var(--red-light);
}


/* =========================================================
   CHECKOUT
========================================================= */

.checkout-section {

    background: #090909;
}


.checkout-container {

    max-width: 1000px;
}


.checkout-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 50px;
}


.order-summary,
.checkout-form-wrapper {

    background: #111;

    border: 1px solid #252525;

    padding: 35px;
}


.order-summary h3,
.checkout-form h3 {

    font-family: "Bebas Neue", sans-serif;

    font-size: 2rem;

    font-weight: 400;

    margin-bottom: 25px;
}


.order-item {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    border-top: 1px solid #292929;

    border-bottom: 1px solid #292929;
}


.order-item strong {

    display: block;
}


.order-item span {

    display: block;

    color: #777;

    font-size: .75rem;
}


.order-total {

    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    font-size: 1.1rem;
}


.order-total strong {

    font-size: 1.5rem;
}


.checkout-notice {

    color: #888;

    font-size: .85rem;

    line-height: 1.7;

    margin-bottom: 25px;
}


.checkout-form {

    display: flex;

    flex-direction: column;
}


.checkout-form label {

    color: #aaa;

    font-size: .75rem;

    margin-bottom: 7px;
}


.checkout-form input[type="text"],
.checkout-form input[type="email"] {

    width: 100%;

    padding: 15px;

    margin-bottom: 20px;

    background: #080808;

    border: 1px solid #292929;

    color: white;

    outline: none;
}


.checkout-form input:focus {

    border-color: var(--red);
}


.checkbox-label {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 10px 0 25px;
}


.checkbox-label input {

    margin-top: 5px;
}


.checkbox-label span {

    color: #888;

    font-size: .75rem;
}


.checkout-button {

    padding: 17px;

    background: var(--red);

    color: white;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition: .3s ease;
}


.checkout-button:hover {

    background: var(--red-light);
}


.checkout-secure {

    margin-top: 18px;

    text-align: center;

    color: #666;

    font-size: .7rem;
}


/* =========================================================
   SPOTIFY
========================================================= */

.spotify-section {

    background: #050505;
}


.spotify-player {

    width: 100%;

    max-width: 900px;

    margin: 50px auto 0;
}


.spotify-player iframe {

    display: block;

    width: 100%;

    border: none;

    border-radius: 12px;
}


/* =========================================================
   WORKS / TRABAJOS REALIZADOS
========================================================= */

.works-section {

    background: #080808;
}


.works-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.work-card {

    position: center;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #111;

    border: 1px solid #222;

    transition: var(--transition);
}


.work-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.work-card:hover {

    border-color: var(--red);

    transform: translateY(-8px);
}


.work-card:hover img {

    transform: scale(1.05);
}


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

.contact-section {

    background:

        linear-gradient(
            135deg,
            #080808,
            #000
        );
}


.contact-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: start;
}


.contact-intro {

    max-width: 450px;

    color: var(--gray-light);

    margin-bottom: 30px;
}


.contact-email {

    display: inline-block;

    font-size: 1.2rem;

    color: var(--white);

    border-bottom: 1px solid var(--red);

    padding-bottom: 5px;

    transition: var(--transition);
}


.contact-email:hover {

    color: var(--red);
}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 17px 20px;

    color: var(--white);

    background: #111;

    border: 1px solid #282828;

    outline: none;

    resize: vertical;

    transition: var(--transition);
}


.contact-form textarea {

    min-height: 220px;
}


.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--red);

    box-shadow: 0 0 20px rgba(139, 0, 0, .12);
}


.contact-form button {

    align-self: flex-start;
}


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

footer {

    padding: 40px 0 80px;

    background: #030303;

    border-top: 1px solid #1c1c1c;
}


.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 20px;
}


.footer-logo {

    width: 180px;

    margin-bottom: 20px;
}


footer p {

    max-width: 250px;

    color: var(--gray-text);
}


footer h4 {

    font-family: "Bebas Neue", sans-serif;

    font-size: 1.8rem;

    font-weight: 400;

    margin-bottom: 10px;
}


footer ul li {

    margin-bottom: 10px;
}


footer a {

    color: var(--gray-light);

    transition: var(--transition);
}


footer a:hover {

    color: var(--red);
}


.socials {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.copyright {

    width: min(var(--max-width), 90%);

    margin: 70px auto 0;

    padding-top: 25px;

    border-top: 1px solid #1c1c1c;

    color: #666;

    font-size: .8rem;

    text-align: center;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {

    position: absolute;

    z-index: 5;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    width: 25px;

    height: 45px;

    border: 1px solid rgba(255, 255, 255, .5);

    border-radius: 20px;

    display: flex;

    justify-content: center;

    padding-top: 8px;
}


.scroll-indicator span {

    display: block;

    width: 3px;

    height: 8px;

    background: var(--white);

    border-radius: 5px;

    animation: scrollDown 1.8s infinite;
}


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

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.reveal.revealed {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroFadeIn {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


@keyframes scrollDown {

    0% {

        opacity: 0;

        transform: translateY(0);

    }

    30% {

        opacity: 1;

    }

    100% {

        opacity: 0;

        transform: translateY(18px);

    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .navbar {

        padding: 0 4%;

    }


    .menu {

        gap: 25px;

    }


    .menu a {

        font-size: .7rem;

    }


    .about-grid {

        gap: 50px;

    }


    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .contact-grid {

        gap: 60px;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {

    section {

        padding: 90px 0;

    }


    /* HEADER */

    .navbar,
    .navbar.scrolled {

        height: 70px;

        padding: 0 25px;

    }


    .logo img,
    .navbar.scrolled .logo img {

        height: 38px;

    }


    .menu-mobile {

        display: block;

    }


    .menu {

        position: fixed;

        inset: 0;

        width: 90%;

        height: 100svh;

        padding: 120px 35px 50px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 30px;

        background: rgba(0, 0, 0, .98);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-50px);

        transition: var(--transition);

    }


    .menu.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .menu a {

        font-size: 2rem;

        letter-spacing: 3px;

    }


    /* HERO */

    .hero {

        min-height: 700px;

    }


    .hero-logo {

        width: 85vw;

        margin-bottom: 25px;

    }


    .hero-content h1 {

        font-size: 3.5rem;

    }


    .hero-content p {

        font-size: .8rem;

        line-height: 1.7;

        max-width: 320px;

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        flex-direction: column;

        width: min(320px, 90%);

        margin: auto;

    }


    .btn,
    .btn-outline {

        width: 100%;

    }


    /* ABOUT */

    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-visual {

        min-height: 450px;

    }


    /* SERVICES */

    .services-grid {

        grid-template-columns: 1fr;

    }


    .service {

        min-height: 320px;

    }


    /* BEATS */

    .beats-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .play-button {

        opacity: 1;

    }


    /* FEATURED */

    .beat-detail-grid {

        grid-template-columns: 1fr;

        gap: 10px;

    }


    .beat-detail-info h2 {

        font-size: 4rem;

    }


    /* CHECKOUT */

    .checkout-grid {

        grid-template-columns: 1fr;

    }


    /* WORKS */

    .works-grid {

        grid-template-columns: 1fr;

    }


    /* CONTACT */

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 80px;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 80px;

    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {

        width: 88%;

    }


    .section-title {

        font-size: 3.2rem;

    }


    .hero-content h1 {

        font-size: 3rem;

    }


    .hero-content p {

        letter-spacing: 1px;

    }


    .about-visual {

        min-height: 350px;

    }


    .service {

        padding: 35px 25px;

    }


    .service h3 {

        font-size: 2.2rem;

    }


    .beat-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .small-btn {

        justify-content: center;

    }


    .beat-details {

        text-align: center;

    }


    .beat-data {

        grid-template-columns: 1fr;

    }


    .beat-data div {

        border-right: none;

        border-bottom: 1px solid #292929;

    }


    .beat-data div:last-child {

        border-bottom: none;

    }


    .license-header {

        flex-direction: column;

    }


    .license-price {

        font-size: 2.5rem;

    }


    .copyright {

        width: 100%;

    }

}