/* ================================
   GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================================
   HEADER
================================ */

.site-header {
    height: 78px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-family: Georgia, serif;
    font-size: 38px;
    font-style: italic;
    font-weight: bold;
    color: #6633e8;
}

.logo div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo strong {
    font-size: 13px;
    letter-spacing: 2px;
}


/* NAVIGATION */

.site-header nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-header nav a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.site-header nav a:hover,
.site-header nav a.active {
    color: #6633e8;
    border-bottom-color: #6633e8;
}


/* WHATSAPP */

.site-header > .whatsapp-btn {
    background: #6633e8;
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: bold;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 520px;
    padding: 60px 6% 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 40%,
            #e7dcff 0%,
            #f7f4ff 35%,
            #ffffff 70%
        );
}


/* HERO TEXT */

.hero-content {
    padding-top: 25px;
    position: relative;
    z-index: 5;
}

.hero-tag {
    color: #6633e8;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-tag span {
    margin: 0 7px;
}


.hero h1 {
    font-size: 78px;
    line-height: 0.9;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero h1 span {
    display: block;

    font-family: Georgia, serif;
    font-style: italic;

    background: linear-gradient(
        90deg,
        #6633e8,
        #dc3f8b
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    font-size: 72px;
}


.hero h2 {
    margin-top: 22px;

    font-family: Georgia, serif;
    font-style: italic;

    font-size: 28px;
    color: #222;
}


.hero-description {
    margin-top: 18px;

    color: #555;

    font-size: 14px;
    line-height: 1.7;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 25px;

    flex-wrap: wrap;
}

.btn {
    padding: 13px 20px;

    border-radius: 12px;

    background: #ffffff;

    border: 1px solid #dddddd;

    font-size: 13px;
    font-weight: bold;

    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}


/* INSTAGRAM */

.instagram-btn {
    border-color: #c26ce5;
}


/* YOUTUBE */

.youtube-btn {
    border-color: #ff5a5a;
}


/* WHATSAPP */

.hero-buttons .whatsapp-btn {
    border-color: #39c96b;
}


/* ================================
   HERO IMAGE
================================ */

.hero-image {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: flex-end;
    justify-content: center;
}


.hero-image::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 420px;

    border-radius: 50%;

    background: #ded1ff;

    filter: blur(15px);

    opacity: 0.7;
}


/* TEMP PHOTO */

.photo-placeholder {
    position: relative;

    width: 310px;
    height: 430px;

    border-radius: 160px 160px 0 0;

    background:
        linear-gradient(
            145deg,
            #39353f,
            #111217
        );

    display: flex;

    align-items: center;
    justify-content: center;

    color: #aaa;

    font-size: 13px;
    letter-spacing: 2px;

    z-index: 2;

    box-shadow:
        0 20px 50px rgba(80, 55, 130, 0.25);
}


/* ================================
   INSTAGRAM REELS
================================ */

.reels-section {
    padding: 35px 5%;

    background: #0c1018;

    color: #ffffff;
}


.section-title {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}


.section-title h2 {
    font-size: 20px;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.section-title a {
    font-size: 12px;

    color: #b996ff;

    font-weight: bold;
}


/* REELS GRID */

.reels-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 14px;
}


.reel-card {
    height: 240px;

    border-radius: 14px;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    padding-bottom: 25px;

    background:
        linear-gradient(
            145deg,
            #63798b,
            #11141a
        );

    border: 1px solid #292e38;

    font-size: 13px;
    font-weight: bold;

    transition: 0.3s;
}


.reel-card:hover {
    transform: translateY(-5px);
}


.reel-card:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #9b805f,
            #161719
        );
}


.reel-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #58728d,
            #11161c
        );
}


.reel-card:nth-child(4) {
    background:
        linear-gradient(
            145deg,
            #d19355,
            #211814
        );
}


.reel-card:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #9da8a8,
            #171b1d
        );
}


/* ================================
   YOUTUBE
================================ */

.songs-section {
    padding: 35px 5%;

    background: #faf9ff;
}


.songs-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


.song-card {
    background: #ffffff;

    border-radius: 13px;

    overflow: hidden;

    border: 1px solid #e8e4f0;

    box-shadow:
        0 8px 25px rgba(50, 30, 100, 0.06);

    transition: 0.3s;
}


.song-card:hover {
    transform: translateY(-4px);
}


/* THUMBNAILS */

.song-thumbnail {
    height: 160px;

    display: flex;

    align-items: center;

    padding: 20px;

    color: white;

    font-size: 24px;

    font-weight: 900;

    text-shadow:
        0 3px 10px #000;

    background:
        linear-gradient(
            135deg,
            #21130e,
            #805343
        );
}


.song-card:nth-child(2)
.song-thumbnail {
    background:
        linear-gradient(
            135deg,
            #24172d,
            #8b506c
        );
}


.song-card:nth-child(3)
.song-thumbnail {
    background:
        linear-gradient(
            135deg,
            #24201d,
            #977152
        );
}


.song-card:nth-child(4)
.song-thumbnail {
    background:
        linear-gradient(
            135deg,
            #131a23,
            #53697b
        );
}


.song-card h3 {
    padding: 12px 12px 4px;

    font-size: 14px;
}


.song-card p {
    padding: 0 12px 14px;

    font-size: 11px;

    color: #777;
}


/* ================================
   SPOTIFY
================================ */

.spotify-section {
    padding: 35px 5%;

    background: #0c1018;

    color: #ffffff;
}


.spotify-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}


.spotify-card {
    min-height: 100px;

    border-radius: 13px;

    padding: 25px;

    display: flex;

    align-items: center;

    background: #181c23;

    border: 1px solid #2c3039;

    color: #ffffff;

    font-weight: bold;
}


/* ================================
   CONTACT
================================ */

.contact-section {
    padding: 70px 6%;

    text-align: center;

    background:
        linear-gradient(
            120deg,
            #ffffff,
            #f4efff
        );
}


.contact-section h2 {
    font-size: 42px;

    margin-bottom: 15px;

    text-transform: uppercase;
}


.contact-section p {
    max-width: 500px;

    margin: auto;

    color: #666;

    line-height: 1.6;
}


.contact-whatsapp {
    display: inline-block;

    margin-top: 25px;

    padding: 14px 25px;

    border-radius: 12px;

    background: #6633e8;

    color: #ffffff;

    font-weight: bold;

    font-size: 13px;
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 35px 6%;

    background: #0b1220;

    color: #ffffff;

    text-align: center;
}


.footer-logo {
    font-family: Georgia, serif;

    font-style: italic;

    font-size: 40px;

    color: #8d5cff;

    margin-bottom: 15px;
}


footer p {
    color: #999;

    font-size: 11px;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .site-header nav {
        gap: 15px;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .reels-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .songs-grid,
    .spotify-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .site-header {
        padding: 0 20px;
    }

    .site-header nav {
        display: none;
    }

    .site-header > .whatsapp-btn {
        display: none;
    }

    .hero {
        padding: 45px 25px;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero h1 span {
        font-size: 47px;
    }

    .hero h2 {
        font-size: 23px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .reels-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .reel-card {
        height: 190px;
    }

    .reel-card:last-child {
        display: none;
    }

    .songs-grid,
    .spotify-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        gap: 10px;
        align-items: flex-start;
    }

    .section-title h2 {
        font-size: 16px;
    }

    .section-title a {
        font-size: 10px;
    }

    .contact-section h2 {
        font-size: 32px;
    }
}
/* =================================
   REAL HERO PHOTO
================================= */

.hero-person {
    position: absolute;

    width: 390px;
    height: 470px;

    object-fit: cover;

    object-position: center 20%;

    right: 8px;
    bottom: 0;

    z-index: 3;

    border-radius: 180px 180px 0 0;

    /* Soft fade at bottom */
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 82%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        #000 82%,
        transparent 100%
    );

    filter: saturate(1.05) contrast(1.02);
}


/* Hide old placeholder */

.photo-placeholder {
    display: none;
}


/* Better hero image area */

.hero-image {
    min-height: 470px;
}


/* Mobile */

@media (max-width: 900px) {

    .hero-person {
        width: 320px;
        height: 420px;

        right: -20px;
    }

}


@media (max-width: 600px) {

    .hero-image {
        display: block;
        min-height: 380px;
    }

    .hero-person {
        width: 280px;
        height: 370px;

        right: 50%;
        transform: translateX(50%);

        opacity: 0.9;
    }

}
