* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    word-spacing: 0.5rem;
}

@font-face {
    font-family: "aram";
    src: url("assets/fonts/Aram_sf.ttf");
}

@font-face {
    font-family: "poppins";
    src: url("assets/fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "cairo";
    src: url("assets/fonts/Cairo-Regular.ttf");
}

@keyframes cards {
    0% {
        opacity: 0%;
        transform: translateX(20px);
    }

    100% {
        opacity: 100%;
        transform: translateX(0px);
    }
}

@keyframes home-text-ani {
    0% {
        opacity: 0%;
        transform: translateY(-20px);
    }

    100% {
        opacity: 100%;
        transform: translateY(0px);
    }
}

body {
    background-color: #eaf2e7;
}

hr {
    opacity: 50%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background-color: #e7ffdb;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.15);
    top: 0;
    z-index: 100;
    position: sticky;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    font-family: "poppins";
    color: #333b30;
    background-color: #e7ffdb;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-links {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-family: "poppins";
    color: #606b5a;
    transition: all .2s ease;
    padding-right: 2.5rem;
}

.nav-links a:hover,
.nav-links .active {
    color: #232921;
    transition: all .3s ease-in;
}

#cart-icon {
    transform: scale(1.2);
    transition: all .2s ease;
    cursor: pointer;
}

#cart-icon:hover {
    transform: scale(1.5);
}

/** Home Section **/

.home-container {
    display: inline;
    justify-content: center;
    text-align: center;
    margin: 10rem;
    background-image: url("/assets/images/logos/verzio-home-image.png");
}

.home-text {
    animation: home-text;
}

.home-title {
    font-size: 5rem;
    font-family: "aram";
    font-weight: 300;
    color: #6a7565;
    padding-top: 5rem;
}

.home-title span {
    color: #333b30;
    font-size: 6rem;
}

.home-slogan {
    text-align: center;
    font-size: 2.5rem;
    font-family: "poppins";
    font-weight: 300;
    color: #6a7565;
    margin-bottom: 5rem;
}

.home-slogan span {
    color: #333b30;
    font-family: "aram";

}

.verzio-home-image {
    width: 200px;
}
/* about section*/

.about-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
}

.about-title {
    font-size: 5rem;
    font-family: "aram";
    font-weight: 300;
    color: #333b30;
    padding-top: 5rem;
}

.about-paragraph {
    font-family: "poppins";
    font-weight: 300;
    color: #86967e;
    margin-bottom: 5rem;
    margin-inline: 30%;
    background-color: #333b30;
    border: 3px solid #6a7565;
    border-radius: 30px;
    padding: 1rem 2rem;
    margin-top: 1rem;
    box-shadow: 0 0 50px #333b30;
}

.about-paragraph span {
    font-family: "aram";
}

/** merch section **/

.product-container {
    background-color: #333b30;
}

.merch-container {
    justify-content: center;
    text-align: center;
    padding: 3rem 5rem;
}

.cards-container {
    display: flex;
    padding: 3rem 5rem;
}

.merch-title {
    font-size: 3rem;
    word-spacing: 0.5rem;
    font-family: "poppins";
    font-weight: 300;
    color: #e7ffdb;
    background-color: #232921;
    border: 3px solid #6a7565;
    border-radius: 300px;
    padding-block: 0.5rem;
    margin-top: 5rem;
    box-shadow: 0px 0px 30px #6a7565;
}

.merch-title span {
    font-family: "aram";
}

.merch-slogan {
    text-align: center;
    font-size: 1.5rem;
    font-family: "poppins";
    font-weight: 300;
    color: #eaf2e7;
    margin-top: 2rem;
}

.merch-slogan span {
    font-family: "aram";
    color: #e7ffdb;
}

.card {
    background-color: #606b5a;
    border: 3px solid rgba(234, 242, 231, 0.1);
    border-radius: 30px;
    height: 100%;
    width: 100%;
    padding: 1rem;
    margin: 1rem;
    animation: cards 1s;
    transition: all .3s ease;
    flex-wrap: wrap;
}

.card:hover {
    background-color: #6a7565;
    box-shadow: 0px 0px 30px #6a7565;
    transform: translateY(-10px);

}

.card-title {
    display: flex;
    text-align: center;
    justify-content: center;
    font-family: "poppins";
    font-weight: 300;
    color: #eaf2e7;
}

.details-btn {
    display: flex;
    text-align: center;
    justify-content: center;
    font-family: "poppins";
    font-weight: 300;
    color: #e7ffdb;
    background-color: #232921;
    border: 3px solid #6a7565;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
}

.details-btn:hover {
    color: #232921;
    background-color: #eaf2e7;
    border: 3px solid #6a7565;
}

.card-img {
    width: 100%;
    height: 65%;
    border-radius: 30px;
    transition: all .2s ease;
    margin-bottom: 0.5rem;
    background-size: cover;
}

.card-img:hover {
    opacity: 75%;
    transform: scale(1.03);
}

/** why-us section **/

.whyus-container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.whyus-title {
    font-size: 4rem;
    font-family: "poppins";
    font-weight: 300;
    color: #6a7565;
    padding-top: 5rem;
    margin-bottom: 2rem;
}

.whyus-paragraph {
    text-align: center;
    font-size: 2.5rem;
    font-family: "aram";
    font-weight: 300;
    color: #6a7565;
    margin-bottom: 5rem;
}

/** contact-us section **/

.contactus-container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contactus-title {
    font-size: 4rem;
    font-family: "poppins";
    font-weight: 300;
    color: #6a7565;
    padding-top: 5rem;
    margin-bottom: 2rem;
}

.contactus-paragraph {
    text-align: center;
    font-size: 2.5rem;
    font-family: "aram";
    font-weight: 300;
    color: #6a7565;
    margin-bottom: 5rem;
}

#topBtn {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #232921;
    color: #e7ffdb;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#topBtn.show {
    opacity: 1;
    visibility: visible;
}

#topBtn:hover {
    background-color: #6a7565;
    transform: translateY(-5px);
}


.social-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links a i{
    transform: scale(3);
    margin-bottom: 3rem;
    transition: all 0.2s ease;
    margin-bottom: 3rem;

}

.social-links-footer a i{
    transform: scale(2);
    transition: all 0.2s ease;
    margin-left: 1rem;
}

.social-links a i:hover {
    transform: scale(2.5);
}

.social-links-footer a i:hover {
    transform: scale(1.5);
}




@media (max-width: 768px) {

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }

    /** Home Section **/

    .home-container {
        display: inline;
        justify-content: center;
        text-align: center;
    }

    .home-text {
        animation: home-text;
    }

    .home-title {
        font-size: 2rem;
        font-family: "aram";
        font-weight: 400;
        color: #6a7565;
        padding-top: 1rem;
    }

    .home-title span {
        color: #333b30;
        font-size: 5rem;
    }

    .home-slogan {
        text-align: center;
        font-size: 2.5rem;
        font-family: "poppins";
        font-weight: 500;
        color: #6a7565;
        margin-bottom: 1rem;
        margin-inline: 1rem;
    }

    .home-slogan span {
        color: #333b30;
        font-family: "aram";

    }

    .verzio-home-image {
        width: 200px;
    }

    /* about section*/

    .about-container {
        display: flex;
        justify-content: space-around;
        text-align: center;
        align-items: center;
    }

    .about-title {
        font-size: 4rem;
        font-family: "aram";
        font-weight: 300;
        color: #333b30;
    }

    .about-paragraph {
        font-family: "poppins";
        font-weight: 300;
        color: #86967e;
        margin-bottom: 5rem;
        margin-inline: 10%;
        background-color: #333b30;
        border: 3px solid #6a7565;
        border-radius: 30px;
        padding: 1rem 2rem;
        margin-top: 1rem;
        font-size: 1rem;
    }

    .about-paragraph span {
        font-family: "aram";
    }

    /** merch section **/

    .product-container {
        background-color: #333b30;
    }

    .merch-container {
        justify-content: center;
        text-align: center;
        padding: 3rem 5rem;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 3rem;
    }

    .merch-title {
        font-size: 2rem;
        word-spacing: 0.5rem;
        font-family: "poppins";
        font-weight: 300;
        color: #e7ffdb;
        background-color: #232921;
        border: 3px solid #6a7565;
        border-radius: 50px;
        padding: 1rem 1rem;
        margin-top: 5rem;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .merch-title span {
        font-family: "aram";
    }

    .merch-slogan {
        text-align: center;
        font-size: 1rem;
        font-family: "poppins";
        font-weight: 300;
        color: #eaf2e7;
        margin-top: 2rem;
    }

    .merch-slogan span {
        font-family: "aram";
        color: #e7ffdb;
    }

    .card {
        min-width: 250px;
        max-width: 400px;
    }

    .card:hover {
        background-color: #6a7565;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);

    }

    .card-title {
        display: flex;
        text-align: center;
        justify-content: center;
        font-family: "poppins";
        font-weight: 300;
        color: #eaf2e7;
    }

    .order-btn {
        display: flex;
        text-align: center;
        justify-content: center;
        font-family: "poppins";
        font-weight: 300;
        color: #e7ffdb;
        background-color: #232921;
        border: 3px solid #6a7565;
        border-radius: 30px;
        padding: 1rem 2rem;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        margin-top: 0.5rem;
        transition: all 0.2s ease;
    }

    .order-btn:hover {
        color: #232921;
        background-color: #eaf2e7;
        border: 3px solid #6a7565;
    }

    .card-img {
        width: 100%;
        height: 65%;
        border-radius: 30px;
        transition: all .2s ease;
        margin-bottom: 0.5rem;
        background-size: cover;
    }

    .card-img:hover {
        opacity: 75%;
        transform: scale(1.03);
    }

    /** why-us section **/

    .whyus-container {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .whyus-title {
        font-size: 2rem;
        font-family: "poppins";
        font-weight: 300;
        color: #6a7565;
        margin: 1rem;
    }

    .whyus-paragraph {
        text-align: center;
        font-size: 1.2rem;
        font-family: "aram";
        font-weight: 300;
        color: #232921;
        padding: 1rem;
    }

    /** contact-us section **/

    .contactus-container {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .contactus-title {
        font-size: 2rem;
        font-family: "poppins";
        font-weight: 300;
        color: #6a7565;
        margin-bottom: 3rem;

    }

    
}
