* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; 
}

@import url(fonts.css);

:root {
    --pink: #FF99CC;
    --black: #000000;
    --orange: #FF9900;
    --white: #FFFFFF;
}

body {
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}


/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    
}

.logo { width: 150px; }

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
  
}

/* MENU */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 80%;
    height: 100vh;
    background-color: var(--pink);
    z-index: 1000;
    transition: 0.4s;
    padding: 50px;
}

.menu-overlay.active {
    right: 0;
}

.menu-overlay ul {
    list-style: none;
    margin-top: 50px;
}

.menu-overlay li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    display: block;
    margin: 20px 0;
}

/* --- ABOUT --- */

.outline-text {
    color: transparent;
    -webkit-text-stroke: 3px var(--orange); 
    font-weight: 900;
    text-transform: uppercase;
}

.about-hero {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px; 
    line-height: 0.8;
    text-align: center;
    width: 100%;
}

.about-container {
    display: flex;
    padding: 40px 20px;
    background-color: var(--black);
    gap: 15px;
}

.about-vertical-title {
    writing-mode: vertical-lr; 
    transform: rotate(180deg); 
}

.about-vertical-title h2 {
    font-size: 80px;
    letter-spacing: 5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    color: var(--pink); 
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
    font-weight: bold;
}

.about-gif {
    width: 100%;
    border-radius: 4px;
}

/* BUTTON */
.btn-orange {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    text-decoration: none;
}

a {
    text-decoration: none; 
    color: inherit;       
}

/* SPOTIFY, ALBUM AND SHOP */

.spotify-container {
    width: 80%;
    margin: 20px;;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: var(--black);
}

.album-track {
    display: flex;
    width: calc(250px * 18); 
    animation: scrollAlbum 30s linear infinite; }

.album-track img {
    width: 400px; 
    height: 400px;
    object-fit: cover;
    margin: 0 15px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(255, 153, 204, 0.3); 
}

/* SLIDER */
@keyframes scrollAlbum {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-230px * 9)); 
    }
}

.slider-container:hover .album-track {
    animation-play-state: paused;
}

.poopy-gif {
    width: 100%;
    display: block;
    margin: 40px auto;
}

.music-preview h2 {
    text-align: center;
    font-size: 35px;
    margin-top: 40px;
    letter-spacing: 2px;
    font-family: 'Mystery Quest', system-ui;
}

.shop-preview img {
    width: 310px;
    margin: 20px;
    display: flex;
    align-items: center;
    align-content: center;
}


.shop-preview h2 {
    text-align: center;
    font-size: 35px;
    margin-top: 40px;
    letter-spacing: 2px;
    font-family: 'Mystery Quest', system-ui;
}

.spotify-section {
    text-align: center;
    margin: 50px 0;
    margin-bottom: 10px;
    font-size: 25px;
}

.spotify-section iframe {
    margin: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    
}


/* SHOPS AND MUSIC */
.shop-page, .shop-collection-page, .music-page {
    text-align: center;
    padding-bottom: 50px;
}

.full-width-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

/* Shop.html */
.shop-item {
    margin: 40px 0;
}
.shop-item p {
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.shop-item img {
    width: 250px;
    margin-bottom: 10px;
}

/* Shop_2.html*/

.shop-collection-page h3 {
    font-size: 18px;
    margin: 30px 0;
}

.collection-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.pink-card {
    background-color: var(--pink); 
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    text-align: left;
    color: var(--black);
}

.pink-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 10px;
}

.card-text h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.card-text p {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.btn-add {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}

/* Music.html */

.music-page h3 {
    font-size: 16px;
    margin: 30px 0;
    letter-spacing: 2px;
}


.platform-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.platform-list .btn-orange {
    width: 200px;
    text-decoration: none;
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    color: white;
    padding: 20px;
    margin-top: 40px;
}

footer img {
    width: 350px;
    margin-top: 10px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px; 
    margin: 20px 0;
}

.footer-icons i {
    font-size: 35px; 
    transition: transform 0.3s ease;
}

.footer-icons i:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.footer-icons a {
    text-decoration: none;
}


/* MEDIA QUERIES FOR LARGE SCREENS */

@media (min-width: 1024px) {
    
    .hero-title {
        font-size: 450px; 
        -webkit-text-stroke: 5px var(--orange); 
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 40px;
        gap: 50px; 
    }

    .about-vertical-title h2 {
        font-size: 100px;
    }

    .about-content {
        flex-direction: row; 
        align-items: center;
        gap: 60px;
    }

    .about-text {
        font-size: 30px; 
        flex: 1;
    }

    .about-gif-container {
        flex: 1; 
    }

    .about-gif {
        max-width: 500px; 
    }






.shop-page {
        max-width: 1200px; 
        margin: 0 auto;   
        padding: 40px;
        text-align: left;  
    }

    .shop-page h2 {
        margin-bottom: 40px;
        margin-left: 20px; 
        font-size: 36px;
    }

    .shop-page {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 40px; 
        justify-items: start; 
    }

    .shop-page h2 {
        grid-column: 1 / -1;
    }

    .shop-item {
        margin: 0; 
        text-align: left; 
    }

    .shop-item img {
        width: 100%;   
        max-width: 300px; 
    }

    .shop-item .btn-orange {
        margin: 20px 0; 
    }







    .shop-collection-page {
        max-width: 1300px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .shop-collection-page h3 {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: left; 
    }

    .collection-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
        gap: 30px; 
        justify-content: start; 
    }

    .pink-card {
        width: 100%; 
        margin-bottom: 0; 
        padding: 20px;
       
        flex-direction: column; 
        text-align: center;
    }

    .pink-card img {
        width: 100%; 
        height: 300px; 
        margin-right: 0;
        margin-bottom: 20px;
        object-fit: cover;
    }

    .card-text h4 {
        font-size: 25px;
    }

    .card-text p {
        font-size: 20px;
    }
}