:root{
    /* Colors */
    --brown-derby-100: #f1e8d4;
    --brown-derby-200: #e2d1a5;
    --brown-derby-300: #d2b577;
    --brown-derby-400: #c89e57;
    --brown-derby-500: #bd8543;
    --brown-derby-600: #a76938;
    --brown-derby-700: #8b5032;
    --brown-derby-800: #73422d;
    --brown-derby-900: #5f3728;
    --brown-derby-950: #472519;

    /* Font-sizes */
    --font-max: 3.8rem;
    --font-huge: 3rem;
    --font-mid: 2.75rem;
    --font-sm: 2rem;
    --font-extra-sm: 1.6rem; 
    --font-min: 1.12rem;
}
html{
    font-family: "Quicksand", serif;
    color: #ffffff;
    font-optical-sizing: auto;
    font-style: normal;
}

body{
    background-color: #000000;
    width: 100%;
    margin: 0;
    padding: 0;
}
strong{
    font-weight: bold;
}
header{
    display: grid;
    text-align: center;
    width: 100%;
    height: 100vh;
}
.header-container{
    position: relative;
    display: flex;
    flex-direction: column;
    /* Aligment x position*/
    justify-content: center;
    /* Aligment y position*/
    align-items: center;
}
#image-studio{
    /*filters effects*/
    position: absolute;
    filter: 
        blur(5px)
        opacity(60%)    
    ;
    object-fit: cover;
    height: 100%;
    width:100%;
}
.tittle{
    /* Display position*/
    z-index: 1000;
    width: 70%;
    margin: 1rem 0;
    /* Aperence */
    font-size: var(--font-max);
    font-weight: 400;
    text-transform: capitalize;
    color: #FFFFFF;
    text-shadow: -6px 6px 20px #000000;
}
.sub-title{
    z-index: 1000;
    font-size: var(--font-extra-sm);
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 2rem;
    row-gap: 5rem;
}
.card{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    max-width: 70rem;
    row-gap: 3.5rem;
    box-sizing: border-box;
    /* border: 1px solid red; */
}
.card__title{
    font-size: var(--font-sm);
}
.card__image-container{
    display: flex;
    max-width: 900px;
    place-content: center;
    align-items: center;
    box-sizing: border-box;
    /* border: 1px solid green; */
}
.card__image{
    width: 80%;
    height: auto;
    opacity: 0; /*The animation class adds opacity 1*/
    border-radius: 25px;
    /* xPositon, yPosition, Boder opacity, Internal border size */
    box-shadow: 0rem 0.5rem 5rem 0.05rem var(--brown-derby-800);
}
.card__info-container{
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.5rem;
    box-sizing: border-box;
    /* border: 1px solid yellow; */
}
.card__info-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 30rem;
    padding: 0 1rem;
    line-height: 1.5rem;
    /* border: 1px solid blue; */
}
.card__info-list li{
    text-align: left;
    display: block;
    font-size: var(--font-min);
    padding-bottom: 4px;
}
.spoty-div{
    display: flex;
    justify-content: center;
    width: 23rem;
    opacity: 0;
    /*The animation class adds opacity 1*/
    /* border: 1px solid red; */
}
.spoty-div iframe{
    padding: 0;
    width: 95%;
}

/*Footer*/
.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem;
    row-gap: 1rem;
    gap: 1rem;
    background-color: var(--brown-derby-950);
}
.footer-description, .footer-about-us{
    display: flex;
    flex-direction: column;
    width: 30rem;
}
.footer-tittle-left, .footer-tittle-right{
    border-style:solid;
    border-left-width:0px;
    border-right-width:0px;
    border-top-width:0px;
    border-bottom-width:2px;
    border-color: var(--brown-derby-400);
    height: fit-content;
}
.footer-tittle-left h2, .footer-tittle-right h2{
    text-align: center;
    font-weight: bold;
    font-size: var(--font-extra-sm);
    padding: 5px;
}

.footer-content-left, .footer-content-right{
    /* y / x*/
    padding: 10px 15px;
    line-height: 1.5rem;
}
.footer-content-left p{
    text-align: justify;
    font-size: var(--font-min);
} 
.footer-content-right p{
    text-align: center;
    padding-bottom: 8px;
    font-size: var(--font-min);
}
.footer-content-right a{
    text-decoration: none;
    color: inherit;
    font-size: var(--font-min);
}

/*ANIMATIONS STACK*/
@keyframes tittleAnimation{
    from{
        transform: translateY(-250px);
        opacity: 0;
    }to{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes imageAnimation {
    0% {
        -webkit-transform: translateY(250px);
                transform: translateY(250px);
        opacity: 0;
      }
      100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
      }
}
@keyframes spotyAnimation{
    0%{
        transform: translateX(450px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
.animationTitle{
    /*Animation*/
    animation-name: tittleAnimation;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}
.animationImage{
    /*Animation*/
    animation: imageAnimation 900ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;  
}
.animationSpoty{
    /*Animation*/
    animation: spotyAnimation 800ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    display: flex;
    justify-content: center;
    width: 23rem;
}


