@import url('https://fonts.googleapis.com/css2?family=Aladin&family=Libre+Franklin:wght@200;300;400;600;800&family=Open+Sans:wght@300;600;800&display=swap');

:root {
    --family-aladin: 'Aladin', cursive;
    --family-franklin: 'Libre Franklin', sans-serif;
    --family-open: 'Open Sans', sans-serif;
    --white: #f7f7f7;
    --black: #090909;
    --grey: #f1f1e6;
    --blue: #b6d0e4;
    ---trans-blue: #b6d0e4d5;
    --ocean: #2f4858;
}


/* ================== 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);
}

/* ============== COMPONENTS ============ */

.flex__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex__left {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.para {
    font-family: var(--family-open);
    font-weight: 300;
    margin: 1rem 2.2rem 2.3rem;
    text-align: center;
}

.btn-style {
    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%;
    min-height: 100px;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  
}

header .content {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--family-franklin);
    font-size: .6em;
}

header .content .discount {
    line-height: 1rem;
    margin-left: .5rem
}

header .countdown {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .countdown>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 .5rem;
}

.countdown h2 {
    font-size: 1.1em;
    font-weight: 600;
}

.countdown .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: .2rem;
    margin-right: .5rem;
    text-transform: capitalize;
}

.header {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: .5em 1em;
}

.header a {
    color: var(--black);
    cursor: pointer;
    font-size: 1.8em;
    font-family: var(--family-aladin);
    font-weight: 700;
    position: fixed;
    left: 50%;
    transform: translate(-50%);
}

.header svg {
    cursor: pointer;
}

/* ============= NAV =============*/

#navigation-menu {
    width: 100%;
    height: 60px;
    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 {
        top: -100%;
    }

    to {
        top: 0;
    }
}

@keyframes slideOut {
    from {
        top: 0;
    }

    to {
        top: -100%;
    }
}


#navigation-menu a {
    font-family: var(--family-franklin);
    font-size: 2.8em;
    font-weight: 200;
    text-transform: uppercase;
    color: var(--black);
    margin: .5rem 2rem;
    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;
}

@keyframes showText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#navigation-menu svg {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}


/* ======== BANNER IMAGE ========= */

main {
    width: 100%;
    margin-top: 100px;
}

section {
    width: 100%;
}

.swiper {
    width: 100%;
    min-height: 20vh;
}

.banner__image-1,
.banner__image-2,
.banner__image-3 {
    width: 100%;
    min-height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    isolation: isolate;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.banner__image-1 {
    background-image: url("./images/pink-copy.jpg");
}

.banner__image-2 {
    background-image: url("./images/man-bike-copy.jpg");
}

.banner__image-3 {
    background-image: url("./images/underground-2.jpg");
}

.banner__blender::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #cbb3f8bd;
    mix-blend-mode: multiply;
}

.swiper-button-prev,
.swiper-button-next {
    color: white;
    transform: scale(0.4);
}

.swiper-pagination {
    transform: scale(.8);
}

.swiper-pagination-bullet {
    background: white;
}

/* ============ BANNER TEXT=========== */

.banner__text {
    width: 100%;
    height: 20vh;
}

.banner__text h3 {
    font-size: 1.2rem;
    font-family: var(--family-franklin);
    text-transform: uppercase;
    text-align: center;
    margin: 2rem 1rem;
    color: var(--black);
    text-decoration: underline 3px solid var(--black);
}


/* ============ VIDEO ============= */

.video {
    width: 100%;
    min-height: 100vh;
}

.video video {
    width: 100%;
    height: auto;
}

.video__text {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: 2rem;
}

.video__text h1 {
    text-transform: uppercase;
    font-family: var(--family-franklin);
    font-size: 1.5em;
    line-height: 1.5em;
    letter-spacing: 5px;
}

.video__text h4 {
    font-family: var(--family-open);
    font-weight: 300;
    margin: 2rem;
}

.video__text div {
    width: 250px;
    height: 70px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
    margin-bottom: 2rem;
}

.video__text button {
    background-color: var(--white);
    font-family: var(--family-franklin);
    cursor: pointer;
}


/* ========== PRODUCT SLIDER ========== */

.product {
    width: 100%;
    min-height: 100vh;
    display: block;
   
}

.product__text h3 {
    font-size: 1.2rem;
    font-family: var(--family-franklin);
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    padding: 6rem 2rem 2rem;
    color: var(--black);
}

.product-slider {
    overflow: hidden;
}

.product__column {
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product__column img {
    width: 220px;
    height: auto;
    display: block;
    object-fit: cover;
}

.product__column span {
    padding-top: .6rem;
}


/* ========== FOOTER ========== */

.footer__details {
    width: 100%;
    min-height: 50vh;
    background-color: var(--white);
    color: var(--black);
    padding-left: 3rem;
    font-family: var(--family-franklin);
}

.footer__details div h3 {
    font-weight: 400;
    font-size: 1.2em;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
}

.address {
    padding-top: 8rem;
}

.footer__details div p {
    line-height: 2rem;
    font-family: var(--family-open);
}

.form-email {
    width: 250px;
    height: 40px;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--black);
}

.form-email::placeholder {
    font-size: 1rem;
}

.form-btn {
    color: var(--black);
    border: 1px solid var(--black);
    font-size: 1em;
    width: 120px;
    height: 40px;
    margin-top: 1.5rem;
}

.author {
    width: 100%;
    height: 30px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.author svg {
    width: 35px;
    height: 35px;
    margin-left: 1.2rem;
}




/* ================ MEDIA QUERIES =============== */

/* ==========TABLETS========== */

@media screen and (min-width: 481px) {
    header .content .discount {
        margin-left: 1.5rem
    }
    
    header .countdown {
        width: 350px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/* ==========SMALL SCREENS, LAPTOPS========== */

@media screen and (min-width: 769px) {
    header .countdown>div {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        margin: 0 2rem;
    }

    .countdown h2 {
        font-size: 1.6em;
    }

    .banner__image-1,
    .banner__image-2,
    .banner__image-3 {
        min-height: 80vh;
    }

    .footer__details {
        display: grid;
        grid-template-columns: 350px 350px;
        grid-template-rows: 150px 320px;
        padding-top: 5rem;
    }


    .address {
        padding-top: 0;
    }

}

/* ==========LARGE SCREENS, DESKTOPS========== */

@media screen and (min-width: 1025px) {

    header svg {
        display: block;
        margin-top: 10px;
    }

    #open-menu svg {
        display: none;
    }

    .header a {
        font-size: 2.5em;
        margin-top: 10px;
    }

    #navigation-menu {
        background-color: transparent;
        width: 30%;
        height: 70px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin-top: 40px;
    }

    #navigation-menu a {
        font-size: 1.2em;
        margin-right: 1.5rem;
    }


    #navigation-menu svg {
        display: none;
    }

    .banner__image-1,
    .banner__image-2,
    .banner__image-3 {
        min-height: 100vh;
    }

    .video {
        width: 100%;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .video video {
        width: 50%;
    }

    .video__text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 2rem;
    }

    .video__text h1 {
        text-transform: uppercase;
        font-family: var(--family-franklin);
        font-size: 1.5em;
        line-height: 1.5em;
        letter-spacing: 5px;
    }

    .video__text h4 {
        font-family: var(--family-open);
        font-weight: 300;
        margin: 2rem;
    }

    .video__text div {
        width: 250px;
        height: 70px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        cursor: pointer;
        margin-bottom: 2rem;
    }

    .video__text button {
        background-color: var(--white);
        font-family: var(--family-franklin);
        cursor: pointer;
    }

    .footer__details {
        min-height: 40vh;
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        margin-top: 2rem;
    }

}

/* ==========EXTRA LARGE SCREENS, TV========== */

@media screen and (min-width: 1201px) {

}