/*Regular Roboto*/

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('Content/Fonts/Roboto-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('Content/Fonts/Roboto-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    src: url('Content/Fonts/Roboto-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('Content/Fonts/Roboto-Black.ttf') format('truetype');
    font-display: swap;
}

/*Italic Roboto*/

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100;
    src: url('Content/Fonts/Roboto-ThinItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 200;
    src: url('Content/Fonts/Roboto-LightItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('Content/Fonts/Roboto-Italic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 600;
    src: url('Content/Fonts/Roboto-MediumItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 800;
    src: url('Content/Fonts/Roboto-BoldItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 900;
    src: url('Content/Fonts/Roboto-BlackItalic.ttf') format('truetype');
    font-display: swap;
}

/* Fat Frank */

@font-face {
    font-family: 'FatFrank';
    font-style: normal;
    font-weight: 700;
    src: url('/Content/Fonts/FatFrank-Heavy-Regular.ttf') format('truetype');
    font-display: swap;
}

/* Neuzit Grotesk */

@font-face {
    font-family: 'NeuzitGrotesk';
    font-style: normal;
    font-weight: 200;
    src: url('/Content/Fonts/NeuzeitGro-Lig.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'NeuzitGrotesk';
    font-style: normal;
    font-weight: 400;
    src: url('/Content/Fonts/NeuzeitGro-Reg.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'NeuzitGrotesk';
    font-style: normal;
    font-weight: 600;
    src: url('/Content/Fonts/NeuzeitGro-Bol.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'NeuzitGrotesk';
    font-style: normal;
    font-weight: 800;
    src: url('/Content/Fonts/NeuzeitGro-Bla.ttf') format('truetype');
    font-display: swap;
}

/*Variables*/

:root {
    --main-bg-color: #D5EEE8;
    --navy: #06323D;
    --purple: #AD6EDB;
}

/*PAGE STYLES*/
html {
    margin: 0;
    padding: 0;
    font-family: NeuzitGrotesk,sans-serif;
    line-height: 1.5;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    color: white;
    background-color: var(--main-bg-color);
    min-height: 100vh;
}

body::before {
    content: "";
    background-image: url('../Images/Backgrounds/ALWM_Logo_Tall_Black.png');
    background-size: cover;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place the pseudo-element behind the content */
}

p {
    color: white;
    font-family: NeuzitGrotesk, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: FatFrank, Arial, Helvetica, sans-serif;
    font-size: 3rem;
    margin: 0;
    padding: 0;
    text-align: center;
}

h2 {
    font-family: FatFrank, Arial, Helvetica, sans-serif;
    font-size: 2rem;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* ----------------INDIVIDUAL ELEMENTS--------------- */

/* BUTTONS */

.navy-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin: 0;
    padding: .5rem 1rem;
    background-color: #06323D;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}
    .navy-button:hover {
        background-color: #1F5461;
    }

/* IMAGES */

.alwbbq-flyer-image {
    height: auto;
    width: 50vw;
    max-width: 50rem;
    box-shadow: 0 0 3rem #8CD53B;
}

/* ----------------SECTIONS----------------------- */

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 2rem 0;
    width: 100%;
}
.section-with-purple-border {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 1.5rem;
    border: .125rem solid #AD6EDB;
    border-radius: 10px;
    background-color: rgba(0,0,0,.3);
}
.section-title {
    color: #AD6EDB;
    font-size: 3rem;
}
.section-subtitle {
    /* font-family: FatFrank, Arial, Helvetica, sans-serif; */
    font-size: 1.25rem;
    font-weight: 600;
    color: #06323D;
    text-align: center;
}
.section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: .5rem;
    width: 90vw;
    max-width: 75rem;
}

/* ---------------OTHER COMMON ELEMENTS-------------- */

.playlists-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 1.5rem;
    border: .125rem solid #AD6EDB;
    border-radius: 10px;
    background-color: rgba(0,0,0,.3);
}
.tracks-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 100%;
    max-width: 90vw;
}

/* Inherits from playlists-container */
.track-container {
    align-items: stretch;
}

.track-spotify-iframe {
    max-width: 70vw;
}

.coming-soon-cover-art {
    height: 17rem;
    width: auto;
    margin: 0;
    padding: 0;
}

.track-details-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: .75rem;
    align-self: stretch;
    margin: 0;
    padding: 0 0 1rem 0;
    width: 14rem;
}

.track-details-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: .5rem;
    margin: 0;
    padding: 0;
}

.track-details-title {
    font-family: FatFrank,Arial, Helvetica, sans-serif;
    color: white;
    font-size: 2rem;
    margin: 0;
    padding: 0;
}

.track-details-subtitle {
    font-size: 1.25rem;
    margin: 0 0 1.75rem 0;
    margin: 0;
    padding: 0;
    color: #D5EEE8;
}

.track-details-buy-button {
    height: 4rem;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
}

/* ---------------SPECIAL MODIFICATIONS-------------- */

.navy-text {
    color: var(--navy);
}

.purple-text {
    color: var(--purple);
}

/* ----------MEDIA QUERIES------------- */

@media only screen and (max-width: 1200px) {
    .alwbbq-flyer-image {
        width: 75vw;
        box-shadow: 0 0 2rem #8CD53B;
    }
}

@media only screen and (max-width: 768px) {
    .header-image-link {
        display: none;
    }
    .playlists-container {
        flex-direction: column;
    }
    .track-container {
        flex-direction: column-reverse;
    }

    .track-details-container {
        width: 100%;
    }
}