:root {
    --speaker: #262626;
    --main-bg-color: #453C47;
    --pink-grey: #4B4050;
    --pale-pink: #D7D0D9;
    --section-bg-color: #7C757E;
    --dark-purple: #0C041C;

    --light-black: #181619;

    --josefin-sans: "Josefin Sans", sans-serif;
    --marck-script: "Marck Script";
}

/* universal Classes */
.inner-container {
    margin: 0 auto;
    max-width: 1500px;
    padding: 3rem;
}
.flex {
    display: flex;
    flex-wrap: nowrap;
}
.column {
    flex-direction: column;
}
.jc-c {
    justify-content: center;
}
.jc-sb {
    justify-content: space-between;
}

.a-c {
    align-items: center;
}
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.size-up-50 {
    width: 20rem;
    image-resolution: initial;
}


.hidden {
    display: none;
}

.coming-soon {
    rotate: 20deg;
    text-align: center;
    text-transform: capitalize;
    font-size: 3rem;
    font-weight: 700;
}
.music-cs {
    position: relative;
    top: 10rem;
}

.social-logo {
    width: 4rem;
    color: white;
}

.speaker-hole {
    height: 100%;
}

svg:not(svg.speaker-hole) {
    width: 2rem;
}


body {
    background-color: #332352;
    color: white;
    font-family: var(--josefin-sans);
}

main {
    margin-top: -15rem;
}

img {
    pointer-events: none;
}


.bg-gradiant {
    background-color: #170220;
    background: linear-gradient(180deg,rgba(23, 2, 32, 1) 0%, rgba(100, 58, 101, 1) 100%);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }    
    100% {
        opacity: 100;
    }
}
.intro-text,
.return-text {
    position: absolute;
    text-align: center;
    top: 7rem;
    left: 50%;    
    transform: translate(-50%, -50%);

    animation: 1s ease-in-out 0s 1 fadeIn;
    opacity: 100;

    color: white;
    font-family: var(--marck-script);
    font-size: 2.5rem;
    font-weight: 400;
    z-index: 99;
}

.return-text svg {
    rotate: 180deg;
}

.intro-text h1 {
    font-size: 3rem;
}
.intro-text h2 {
    font-size: 5rem;
}

picture{
    width: 100%;
}
body picture source,
body img {
    width: 100%;
    object-fit: fill;
}

.buildings {
    object-fit: fill;
    z-index: 1;
    position: absolute;
    top: 14rem;
}

a:not(.socials a){
    font-size: 2rem;
    color: white;
    text-decoration: none;
    border-bottom: rgba(0, 0, 0, 0) 3px solid;
    margin-bottom: 0.25rem;
    transition: all 0.5s ease-out;

}

a:hover:not(.socials a) {
    color: white;
    padding-bottom: 0;
    border-bottom: white 3px solid;
    border-radius: 2px;
    transition: all 0.5s ease-in-out;
}

a div.flex {
    gap: 0.5rem;
}

.main-container {
    position: relative;
    z-index: 100;
    padding: 1rem;
    gap: 1.5rem;

    background-color: var(--main-bg-color);
    border-radius: 25px;

    margin-bottom: 3rem;
}

.main-container div:not(.main-container div div) {
    width: calc((100% / 3) - (1.5rem / 3));

}

.main-container div:not(.main-container div div):first-child {
    background-color: var(--pink-grey);
    border-radius: 25px;
    padding: 1.5rem;
}

.intro-section {
    flex-direction: column;
    gap: 1.5rem;
}
.about-me p {
    font-size: 3rem;
}


.intro-section section div,
.logo,
.image-carousel {
    background-color: var(--pale-pink);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    color: var(--light-black);
}
.logo,
.image-carousel {
    display: flex;
    background-color: var(--section-bg-color);
    justify-content: center;
}
.logo img {
    border-radius: 100%;
    width: 50%;
}

.intro-section section h1 {
    font-size: 1.5rem;
    font-weight: 400;
}

.name div h2{
    font-size: 4rem;
    padding-top: 1rem;
}
.about-me p {
    text-align: start;
    font-weight: 700;
}
.socials div {
    gap: 3rem;
}

.image-galery-section {
    gap: 1rem;
}
.image-galery-section section{
    height: calc((100% / 2) - (1rem / 2));
}
.image-carousel {
    min-height: calc(100% - ((100% / 4) - (1rem / 4)));
    max-height: calc(100% - ((100% / 4) - (1rem / 4)));
    position: relative;
}
.image-carousel .slide {
    max-height: inherit;
    width: 100%;
}

.image-carousel img {
    max-height: 300.8px;

    object-fit: contain;
}

div.previous ,
div.next {
    width: 20%;
    height: 100%;
    position: absolute;
    cursor: pointer;
    align-content: center;
    background-image: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.2) 75%);
    transition: background-image 0.5s ease-in-out;

}

div.previous:hover,
div.next:hover {
    background-image: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.4) 75%);
}

.previous {
    left: 0;
    rotate: 180deg;
    border-radius: 0 10px 10px 0;
}
svg.previous {
    left: 0.5rem;
    rotate: 0deg;
    opacity: 100%;
}

.next {
    right: 0;
    border-radius: 0 10px 10px 0;

}
svg.next {
    right: 0.5rem;
}




.music-section {
    gap: 1rem;
}

.music-section div.music-box {

    height: calc(((100% / 5) - (1rem / 5)) *2 );
    background-color: var(--section-bg-color);
    border-radius: 25px;
    padding: 1rem;

    justify-content: center;
    align-items: center;
}

.music-box {
    gap: 1rem;
}

.music-section section {
    height: calc(((100% / 5) - (1rem / 5)) * 3 );

}




/* Footer */
footer {
    position: absolute;
    z-index: 10;
    background: #332352;
    background: linear-gradient(180deg, rgba(51, 35, 82, 1) 0%, rgba(12, 4, 28, 1) 50%, rgba(12, 4, 28, 1) 100%);
    height: 15rem;
    width: 100%;
}




@media (max-width: 1260px){
    .inner-container{
        max-width: 700px;
        padding: 0;
    }
    main {
        margin-top: -5rem;
    }

    .main-container {
        background-color: transparent;
    }
    .main-container.flex {
        flex-direction: column;
    }
    .main-container div:not(.main-container div div) {
        width: unset;
    }   

    .coming-soon {
        rotate: 0deg;
    }
    .music-cs {
        top: 2rem;
    }

}


@media (max-width: 780px) {
    .inner-container{
        max-width: unset;
    }

    .buildings {
        margin-top: -10rem;
    }


    main {
        margin-top: rem;
    }
}



