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

/* RESET */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    background-color: #FFF;
}

/* VARIABLES */

:root {
    --GOOD-TEST-COLOR: #F4E8ED;
    --PRIMARYCOLOR: #E42961;
    --LIGHTTEXT: #f5f5f5;
    --SHADOW: 1px 2px 3px 2px black;
    --SHADOW-BORDER: transparent;
    --SHADOW-BORDER-RADIUS: 10px;
}

/* GENERAL STYLES */

.link-btn {
    font-size: inherit;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    color: red;
    cursor: pointer;
}

.link-btn:hover {
    text-decoration: underline;
    transform: scale(1.2);
}

.link-btn:focus {
    outline: none;
}


/* STYLING */

.header {
    background-color: var(--PRIMARYCOLOR);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--SHADOW);
    padding: 0 2rem 0;
    margin-bottom: 1.75rem;
}

.header-responsive {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.header-responsive > h3 {
    font-size: small;
    color: #f5f5f5;
}

.menu-btn {
    cursor: pointer;
    background-color: transparent;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    background-color: white;
    width: 40px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    transition: all 0.5s;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: "";
}

.menu-icon::before {
    transform: translate(-20px, -12px);
}

.menu-icon::after {
    transform: translate(-20px, 12px);
}

.menu-btn:active .menu-icon {
    transform: rotate(720deg);
}

.header img {
    height: 75px;
    width: auto;
}

.header nav {
    font-size: 1.2rem;
    color: white;
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--LIGHTTEXT);
    padding: .25rem;
}

.nav-link:hover {
    text-decoration: none;
    color: #222;
    transform: scale(1.2);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content {
    white-space: normal;
}

.text-content-container {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.news-wrapper {
    display: flex;
    gap: 1.5rem;
}

.news-article > blockquote {
    font-style: italic;
}

.news-article > h3 {
    font-size: 1.5rem;
}

.ingress {
    font-weight: bolder;
    font-size: large;
}

.pop-up-img {
    width: 300px;
    height: auto;
}

.pres__content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.pres__right-container {
    height: 100%;
}

.pres__text {
    height: 100%;
}

.pres__socials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials-icons {
    padding: 0 0 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.socials-icons i {
    font-size: 3rem;
    color: black;
}

.content-container {
    background-color: white;
    width: calc(100% - 2 * 10rem);
    margin: 3rem 10rem 3rem 10rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    box-shadow: var(--SHADOW);
    border: var(--SHADOW-BORDER);
    border-radius: var(--SHADOW-BORDER-RADIUS);
}

.pres__left-container,
.pres__right-container {
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.pres__left-container {
    gap: 2rem;
}

.pres__right-container {
    width: 100%;
    max-width: 560px;
}

.text-content a {
    color: red;
    text-decoration: none;
}

.text-content a:hover {
    text-decoration: underline;
    transform: scale(1.2);
}

.pres__box-link {
    color: red;
    text-decoration: none;
}

.pres__box-link:hover {
    text-decoration: underline;
    transform: scale(1.2);
}


.left-container,
.right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-container > img {
    width: 100%;
    height: auto;
}

.cd-disc__right-container {
    display: flex;
    gap: 1rem;
}

.cd-disc__side-container {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.cd-disc__img-container > img {
    width: 100%;
    height: auto;
}

.icon-link-container {
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.instagram-pics {
    height: 506px;
    overflow-y: scroll;
    border: 1px solid;
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    position: relative;
    background-color: white;
    margin: 3rem;
    padding: 2rem;
    border: 2px solid black;
    border-radius: 10px;
    max-height: 800px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.close-modal-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.price-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}
    
.price-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.making-of-alfabiten {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-container {
    display: flex;
    gap: 3rem;
    
}

.team-container > div > img {
    height: auto;
    width: 100%;
}

.team {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-member-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.team-member-container > div > img {
    width: 100%;
    height: auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.singers-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.singers-container {
    display: flex;
    gap: 3rem;
}

.singers__img-container {
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.singers__img-container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.singers__img-container > div > img {
    width: 100%;
    height: auto;
    max-width: 332px;
    border: 1px solid black;
}

.singers__img-container > div > a {
    color: red;
    text-decoration: none;
}

.singers__img-container > div > a:hover {
    text-decoration: underline;
}

.singers__left-container {
    width: 50%;
}

.singer-article {
    margin: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid black;
    padding-top: 2rem;
}

.singer-article .img-container {
    padding: 1rem;
    border: 2px solid black;
}

.singer-article > div > img {
    width: auto;
    height: auto;
    max-height: 300px;
}

.singer-info-container {
    max-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scroll-container {
    overflow-y: scroll;
}

.scroll-container::-webkit-scrollbar {
    width: 7px;
}

.scroll-container::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  }

.disc-cover-container > p {
    white-space: nowrap;
}

.song-list {
    white-space: nowrap;
}

.extra-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.extra-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.alphabet {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.alphabet > .text-content {
    max-width: 50%;
}

.alphabet-img-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.alphabet-img-container {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: auto;
}

.alphabet-img-container > img {
    max-height: 350px;
    width: auto;
}

.bellas-bingo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bellas-bingo-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bellas-bingo-img-container {
    height: auto;
    width: auto;
}

.bellas-bingo-img-container > img {
    max-width: 600px;
    height: auto;
}

.xims-memory {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.xims-memory-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xims-memory-img-container {
    height: auto;
    width: auto;
}

.xims-memory-img-container > img {
    max-width: 600px;
    height: auto;
}

.remsor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.remsor-img-container {
    height: auto;
    width: auto;
}

.remsor-img-container > img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.extra-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.extra-img-wrapper-row {
    display: flex;
    justify-content: space-between;
}

.extra-img-container {
    height: auto;
    width: auto;
}

.extra-img-container > img {
    max-width: 300px;
    height: auto;
}

@media (max-height: 675px) {
    .modal {
        height: 95vh;
    }
}

@media (max-width: 1024px) {
    .pres__content-container,
    .content-container,
    .singers-container,
    .singer-article {
        flex-wrap: wrap;
    }

    .header nav {
        gap: 1rem;
    }

    .pres__left-container {
        margin-top: 2rem;
    }

    .header img {
        height: 50px;
    }

    .price-container {
        grid-template-columns: 1fr;
    }

    .alphabet-img-container > img {
        width: 90px;
        height: auto;
    }

    .bellas-bingo-img-container > img,
    .xims-memory-img-container > img,
    .extra-img-container > img{
        width: 300px;
        height: auto;
    }

    .extra-img-wrapper-row {
        flex-direction: column;
    }

} 

@media (max-width: 768px) {
    .header {
        display: block;
    }


    .header nav {
        padding: 1rem 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        border-top: 1px solid black;
        transform-origin: top center;
        animation: showMenu .5s ease-in-out forwards;
    }

    .nav-link {
        width: 100%;
    }

    .price-item {
        flex-direction: column;
    }

    .price-img {
        width: 75%;
    }

    .making-of-alfabiten,
    .team-container,
    .team-member-container {
        flex-wrap: wrap;
    }

    .cd-disc__side-container {
        align-items: center;
    }

    .modal {
        padding: 0 1rem 0;
    }

    .content-container,
    .pres__content-container {
        width: 95%;
        gap: 1rem;
    }

    .content-container {
        box-shadow: none;
    }

    .team-member-container {
        gap: 0;
    }

    .team-member {
        justify-content: flex-start;
    }

    .singers-logo-img,
    .team-main-img {
        display: none;
    }

    .singers__left-container {
        width: 100%;
    }

    .singers__img-container > div > img {
        height: 60px;
        width: auto;
    }

    .song-list {
        white-space: inherit;
    }

    .bellas-bingo-img-container > img,
    .xims-memory-img-container > img,
    .extra-img-container > img{
        width: 200px;
        height: auto;
    }

    .alphabet-img-wrapper {
        justify-content: center;
    }

    .news-wrapper {
        flex-direction: column;
    }

    .pop-up-img {
        width: 100%;
        padding-top: 3rem;
    }

}

/* ANIMATIONS */

@keyframes showMenu {
    0% {
      transform: scaleY(0);
    }
    80% {
      transform: scaleY(1.2);
    }
    100% {
      transform: scaleY(1);
    }
  }




