@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Open+Sans:wght@300;500;700&family=Oswald:wght@300;400;500&family=Satisfy&display=swap');


:root {
    --family-oswald: 'Oswald', sans-serif;
    ;
    --family-archivo: 'Archivo Black', sans-serif;
    --family-satisfy: 'satisfy', cursive;
    --family-open: 'Open Sans', sans-serif;
    --white: #ffffff;
    --black: #090909;
    --honey: #fdbc01;
    --light-blue: #084b4c;
    --cherry: #c23900;
}


/* ================== HTML PAGE FORMATTING ================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: max-content;
    background-color: var(--white);
}

.description {
    min-height: 50vh;
    background-color: var(--white);
    color: var(--black);
}

.flex__center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex__left {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.title {
    font-family: var(--family-oswald);
    font-weight: 400;
    font-size: 1.8em;
    margin-top: 2rem;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--family-satisfy);
    font-size: 2em;
    text-align: center;
}

.para {
    font-family: var(--family-open);
    font-weight: 300;
    margin: 1rem 2.2rem 2.3rem;
    text-align: center;
}

.animated-gradient {
    
    background: linear-gradient(122deg, #c801a3, #8a26fc, #c23900);
    background-size: 600% 600%;
    background-clip: text;
    color: transparent;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    -webkit-animation: AnimationName 6s ease infinite;
    -moz-animation: AnimationName 6s ease infinite;
    -o-animation: AnimationName 6s ease infinite;
    animation: AnimationName 6s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}

.btn-style {
    color: var(--cherry);
    font-size: 1.5em;
    font-weight: 500;
    font-family: var(--family-oswald);
    text-transform: uppercase;
    background-color: transparent;
    border: 5px solid var(--cherry);
    width: 7em;
    height: 2em;
    cursor: pointer;
    margin-bottom: 4rem;
    transform: scale(1);
    transition: .3s ease;
}

.btn-style:hover {
    transform: scale(1.1);
}

/* ============= HEADER =============*/

header {
    width: 100%;
    height: 70px;
    background-color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    padding: .5em 1em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

header a {
    color: var(--black);
    cursor: pointer;
    font-size: 1.8em;
    font-family: var(--family-satisfy);
    position: fixed;
    left: 50%;
    transform: translate(-50%);
}

header a {
    color: var(--black);
    cursor: pointer;
    font-size: 1.8em;
    font-weight: 900;
    font-family: var(--family-satisfy);
    position: fixed;
    left: 50%;
    transform: translate(-50%);
}

header svg {
    cursor: pointer;

}



/* ============= NAV =============*/

#navigation-menu {
    width: 100%;
    background-color: var(--white);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4;
    animation-name: slideIn;
    animation-duration: 350ms;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

#navigation-menu.close {
    width: 100%;
    background-color: var(--white);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4;
    animation-name: slideOut;
    animation-duration: 350ms;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes slideIn {
    from {
        right: -100%;
    }

    to {
        right: 0;
    }
}

@keyframes slideOut {
    from {
        right: 0;
    }

    to {
        right: -100%;
    }
}


#navigation-menu a {
    font-family: var(--family-satisfy);
    font-size: 3.5em;
    color: var(--dark-font);
    margin: .5rem 0;
    padding: 1rem;
}

#navigation-menu a:nth-of-type(1) {
    opacity: 0;
    animation-name: showText;
    animation-delay: 350ms;
    animation-duration: 550ms;
    animation-fill-mode: forwards;
}

#navigation-menu a:nth-of-type(2) {
    opacity: 0;
    animation-name: showText;
    animation-delay: 450ms;
    animation-duration: 550ms;
    animation-fill-mode: forwards;
}

#navigation-menu a:nth-of-type(3) {
    opacity: 0;
    animation-name: showText;
    animation-delay: 550ms;
    animation-duration: 550ms;
    animation-fill-mode: forwards;
}
#navigation-menu a:nth-of-type(4) {
    opacity: 0;
    animation-name: showText;
    animation-delay: 650ms;
    animation-duration: 550ms;
    animation-fill-mode: forwards;
}

@keyframes showText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#navigation-menu svg {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* ========== BANNER ========== */

main {
    width: 100%;
    margin-top: 70px;
}

section {
    width: 100%;
}

.banner {
    width: 100%;
    height: 250px;
    background-color: var(--honey);
    color: var(--white);
}

.banner h4 {
    font-family: var(--family-oswald);
    font-size: 2em;
    font-weight: 500;
}

.banner h1 {
    font-family: var(--family-archivo);
    font-weight: 300;
    font-size: 3em;
    text-shadow: 1px 1px 1px rgba(2, 2, 2, 0.413);
}

/* ========== MISSION ========== */

.place {
    width: 100%;
    min-height: 60vh;
    margin-top: 5rem;
}


/* ========== LOCATION ========== */

iframe {
    width: 300px;
    height: 250px;
    margin-bottom: 6rem;
}

/* ========== FOOTER ========== */

footer {
    width: 100%;
    min-height: 50vh;
    background-color: var(--black);
    color: var(--white);
}

.footer {
    margin-left: 3rem;
}

.address {
    padding-top: 3rem;
}

.footer > p {
    line-height: 2rem;
    font-family: var(--family-oswald);
}

.form-email {
    width: 250px;
    height: 40px;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--white);
    background-color: var(--black);
    border: 3px solid var(--white);
}

.form-email::placeholder {
    color: var(--white);
    font-size: 1rem;
}

.form-btn {
    color: var(--white);
    border:2px solid var(--white);
    font-size: 1em;
    width: 120px;
    height: 40px;
    margin-top: 1.5rem;
}
.author {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
}

.author svg {
    width: 35px;
    height: 35px;
    margin-left: 1.2rem;
}


/* ================ MEDIA QUERIES =============== */

/* ==========TABLETS========== */

@media screen and (min-width: 481px) {

    
    .banner-image h4 {
        font-size: 3em;
        margin-top: 1.8rem;
    }
    
    .banner-image h3 {
        font-size: 4em;
        margin-top: 9rem;
    }

    .banner-image button {
        margin-top: 2rem;
    } 
    .discount__description {
        margin: 0 3rem;
    }
}


/* ==========SMALL SCREENS, LAPTOPS========== */

@media screen and (min-width: 769px) {
   
    header svg {
        display: none;    
    }
    
    #navigation-menu {
        background-color: transparent;
        width: 30%;
        height: 70px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;            
    }

    #navigation-menu a {
        font-family: var(--family-oswald);
        font-size: 1.5em;
        margin: .5rem .2rem;
        margin-right: 1rem;
    }
    
    
   #navigation-menu svg {
       display: none;
   }

    header a {
        font-size: 2.2em;
    }

    .para {
        margin: 1rem 5rem 2.3rem;
    }

    iframe {
        width: 500px;
        height: 350px;
        margin-bottom: 6rem;
    }

    .footer__container {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
    }
    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer h3, .footer p {
        text-align: center;
    }

     .footer .title {
        margin-top: 80px;
    } 

    .footer .address {
        padding-top: 0;
    }
   
}

/* ==========LARGE SCREENS, DESKTOPS========== */

@media screen and (min-width: 1025px) {

    header a {
        font-size: 2.4em;
    }

    #navigation-menu a {
        font-family: var(--family-oswald);
        font-size: 1.5em;
        margin-bottom: .5rem;
        margin-left: 2rem;
    }

    .para {
        margin-left: 15rem;
        margin-right: 15rem;
    }

    .place__image {
        width: 50%;
        height: 60vh;
    }
    
}

/* ==========EXTRA LARGE SCREENS, TV========== */

@media screen and (min-width: 1201px) {}