@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');

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

:root {
    --bg-color: #060606;
    --fg-color: #ffffff;
    --accent-color: #8b0013;

    --spotify: #1ED760;
    --apple: #FA586A;
    --youtube: #FE0032;
}

.spacing-120 {
    width: 100%;
    height: 120px;
}

body {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--fg-color);

    font-family: monospace;

    overflow-x: hidden;
}

.page-container {
    width: 100%;
    max-width: 100vw;
    height: 100%;

    display: flex;
    justify-content: center;

    flex-flow: column;
}

.hero-container {
    width: 100%;
    height: 100vh;

    display: flex;

}

#hero-image {
    width: 50%;
    height: 100%;

    background-image: url('assets/images/photo.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-text-container {
    width: 50%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    gap: 50px;
    overflow: hidden
}

#hero-header {
    font-size: 69px;
    animation: slideInFromLeft 1.5s ease-out forwards;
}

#hero-text {
    transition: all 0.5s ease-in-out;
    animation: slideInFromLeft 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

.misty {
    font-family: "Metal Mania";
}

.grayed {
    color: #6f6f6f;
}

.releases {
    width: 100%;
    height: 100px;
    padding-left: 50px;
    font-size: 69px;
}

.contact {
    width: 100%;
    height: 100px;
    padding-left: 50px;
    font-size: 69px;
}

.not-available {
    pointer-events: none;
    opacity: 0.4;
    filter: grayscale(80%);
}


.content-container {
    width: calc(100% - 50px);
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    margin-left: 25px;
    margin-right: 25px;

    gap: 25px;
}

.content-item {
    width: 300px;
    height: 500px;
    padding: 15px;

    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;

    border: 1px solid var(--accent-color);
    border-radius: 25px
}

.cover {
    width: 100%;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;
}

.button-container button {
    height: 35px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border-radius: 15px;

    transition: all 0.5s ease;
}

.button-container button img {
    width: 25px;
    height: 25px;
}

.Spotify {
    background-color: var(--spotify);
    color: #000000;
    width: 125px;
    border: 2px solid var(--spotify);
}

.Spotify img {
    background-color: var(--spotify);
    border-radius: 50%;
}

.Apple {
    background-color: var(--apple);
    color: #000000;
    width: 125px;
    border: 2px solid var(--apple);
}

.Apple img {
    background-color: var(--apple);
    border-radius: 50%;
}

.Youtube {
    background-color: var(--youtube);
    color: #000000;
    border: 2px solid var(--youtube);
    width: 250px;
}

.Youtube img {
    background-color: #252323;
    border-radius: 50%;
}


.Spotify:hover {
    background-color: var(--bg-color);
    color: var(--fg-color);
    box-shadow: 0 0 25px 0px var(--spotify);
    transform: scale(1.05);
}

.Apple:hover {
    background-color: var(--bg-color);
    color: var(--fg-color);
    box-shadow: 0 0 25px 0px var(--apple);
    transform: scale(1.05);
}

.Youtube:hover {
    background-color: var(--bg-color);
    color: var(--fg-color);
    box-shadow: 0 0 25px 0px var(--youtube);
    transform: scale(1.05);
}


.contact-container {
    padding-bottom: 120px;
}

.contact-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-wrap: wrap; 
    gap: 50px;
}

.contact-links {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center; 
    
    padding: 50px;

    border: 1px solid var(--accent-color); 
    border-radius: 25px;

    width: 500px;
    max-width: 90%;
    height: auto; 

    gap: 30px; 
}

.contact-link {
    color: var(--fg-color);
    text-decoration: none;
    transition: all 0.5s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

footer {
    width: 100%;
    height: 60px;

    background-color: var(--bg-color); 

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

    border-top: 1px solid var(--accent-color);
}

.footer-text {
    font-size: 0.85em;
    padding: 0 20px;
    text-align: center;
}


.content-item, .button-container button, .contact-link {
    transition: all 0.3s ease-in-out;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px 5px rgba(139, 0, 19, 0.9);
}

.content-item {
    border-radius: 25px;
    transition: all 0.3s ease-in-out; 
}


@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


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

@media (min-width: 1400px) {

    #hero-image {
        width: 40%;
    }

    .hero-text-container {
        width: 60%;
        gap: 30px; 
    }

    #hero-header {
        font-size: 5em;
    }
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
    body {
        width: 100%;
        max-width: 100vw;
        height: 100%;
    }

    .hero-container {
        flex-flow: column;
        height: auto;
    }

    #hero-image {
        width: 100%;
        height: 70vh;
    }

    .hero-text-container {
        width: 100%;
        height: 30vh;
        gap: 20px;
        padding: 20px 0;
    }

    #hero-header {
        font-size: 3.5em;
    }

    .releases, .contact {
        font-size: 3.5em;
        padding-left: 20px;
    }

    .spacing-120 {
        height: 80px;
    }

    .contact-links {
        width: 90%;
        padding: 30px;
    }
}