/* ======= RESET GENERAL ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Michroma", sans-serif;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
    overflow-x: hidden;
}

/* ======================================================== */
/* 1. HEADER */
/* ======================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 100;
    color: #fff;
    background: transparent;
}
.main-header.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.logo-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #CF5B6D;
}

.nav-icon {
    font-size: 1.1rem;
}

/* ======================================================== */
/* 2. HERO SECTION */
/* ======================================================== */

.hero-section {
    min-height: 100vh;
    width: 100%;
    color: #fff;
    background-image: url("AlfonLopez_x_Die_Gryn_Ediorial_002 (1).jpg");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 70px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 0;
}

.main-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transform: translateY(20vh);
}

.single-title-img {
    width: 80vw;
    max-width: 500px;
    height: auto;
    margin-top: -50px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.listen-button-hero {
    text-decoration: none;
    background-color: #fff;
    color: #000;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 999px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.listen-button-hero:hover {
    background-color: #CF5B6D;
    color: #fff;
}

.social-buttons-hero {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 35px;
    transform: translateY(10vh);
}

.hero-icon {
    color: #fff;
    font-size: 28px;
    transition: color 0.3s, transform 0.3s;
}

.hero-icon:hover {
    color: #CF5B6D;
    transform: translateY(-5px);
}

/* ======================================================== */
/* 3. SINGLE SECTION */
/* ======================================================== */

.single-section {
    min-height: 90vh;
    width: 100%;
    background-image: url("Fake\ Love\ BG.png");
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.single-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.single-cover-scroll {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
    width: 100%;
    margin-bottom: 25px;
}

.grid-btn {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s, opacity 0.3s;
    border-radius: 999px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.platform-spotify,
.platform-apple,
.platform-youtube,
.platform-amazon {
    background-color: #CF5B6D;
}

.grid-btn:hover {
    opacity: 0.9;
}

.fund-me-button {
    text-decoration: none;
    background-color: #A9B94D;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 999px;
    transition: background-color 0.3s, transform 0.3s;
}

.fund-me-button:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

/* ======================================================== */
/* 4. FOOTER */
/* ======================================================== */

.main-footer {
    width: 100%;
    padding: 20px 10px;
    background-color: #fff;
    color: #888;
    border-top: 1px solid #eee;
    font-size: 0.75rem;
}

.main-footer a {
    color: #888;
    text-decoration: none;
    margin: 0 5px;
}

.main-footer a:hover {
    color: #000;
}

.mobile-only {
    display: none;
}

/* ======================================================== */
/* 5. RESPONSIVE - MOBILE */
/* ======================================================== */

@media (max-width: 768px) {

    /* HEADER */
    .main-header {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        justify-content: flex-start;
        background: transparent;
    }

    .logo-img {
        height: 140px;
    }

    .main-nav a:not(.nav-icon) {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        width: 85vw;
        max-width: 380px;
    }

    /* HERO */
    .hero-section {
        background-attachment: scroll;
    }

    .main-content {
        transform: translateY(6vh);
        gap: 10px;
    }

    .listen-button-hero {
        margin-bottom: 20px;
    }

    .social-buttons-hero {
        gap: 20px;
        bottom: 30px;
        margin-bottom: 10px;
    }

    .hero-icon {
        font-size: 30px;
    }

    /* SINGLE SECTION */
    .single-section {
        background-image: none;
        background-color: #fff;
    }

    .single-cover-scroll {
        width: 80vw;
        height: 80vw;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
    }

    .fund-me-button {
        margin-top: 10px;
        width: 250px;
    }

    .text-footer {
        width: 100%;
    }
}
