* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}

iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.header {
    width: 100%;
    position: absolute;
    color: white;
    padding: 20px 0;
    font-size: 1.1rem;
    z-index: 1;
}

.nav {
    margin-top: 0px;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: white;
    text-decoration: none;
}

.nav-list a:hover {
    text-decoration: underline;
}


.hero {
    position: relative;
    height: 70vh;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110%; 
    height: 110%; 
    background: url('./assets/hero.jpeg') center center/cover;
    filter: blur(4px);
    z-index: -1; 
    transform: translate(-5%, -5%); 
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero img{
    width: 340px;
    height:160px;
}

@media (max-width: 640px) {
    .hero {
        text-align: center;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

.btn,
.btn-show,
.btn-contact {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    box-shadow: none;
}

.btn {
    background-color: #ff0000;
    transition: all ease-in-out .5s;
}

.btn:hover {
    color: white;
    background-color: #012144;
}


.about,
.products,
.contact,
.findus {
    padding: 50px 0;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .container {
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: row;
    gap: 5rem;
    padding-block: 3rem;
}


.about .container h2 {
    font-size: 2rem;
}

.about .container p {
    width: 60%;
    font-size: 1.3rem;
}

@media (max-width: 640px) {
    .about .container {
        flex-direction: column;
        padding-block: 1rem;
        gap: 2rem;
    }

    .about .container p {
        width: 80%;
        font-size: .9rem;
    }
}

.findus .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    text-align: center;
}

.findus .text {
    display: flex;
    gap: 3rem;
}

.products {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));

}

.products .container {
    
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 2rem
}

.products .container h2 {
    font-size: 2rem;
    color: #000000;
}

.product-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 5rem;
}

.product-item {
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 20px 20px 5px black;
    width: 20%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    transition: transform ease-in-out .4s;
    will-change: transform;

}

@media (hover: hover) {
    .product-item:hover {
        transform: scale(1.1);
        cursor: pointer;
    }
}

.product-item:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-text {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    background: #fce3e6;
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
}


@media (max-width: 640px) {

    .product-list {
        gap: 1rem;
    }

    .product-item {
        width: 100%;
    }
}


.container-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-icons {
    display: flex;
    gap: 15px;
}

.contact-icons a svg {
    width: 70px;
}

.footer {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 2rem 20%;
}

.gitlink a {
    color: white;
    text-decoration: none;
}

.gitlink a:visited {
    color: white;
}

.footer .container {
    gap: 1rem;
    text-align: center;
}

@media (max-width: 640px) {

    .footer {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .contact-icons {
        justify-content: center;
    }
}