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

body {
    font-family: Arial, sans-serif;
    background: #031513;
    color: white;
}


/* HEADER */

.header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 6%;
    background: #03100f;
    border-bottom: 1px solid #16413d;
}

.logo {
    font-size: 27px;
    font-weight: bold;
}

.logo span {
    color: #00e5c8;
}

.logo small {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 2px;
    color: #ddd;
}

.header nav {
    display: flex;
    gap: 38px;
    margin-left: 17%;
}

.header nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 25px 0;
}

.header nav a:hover,
.header nav a.active {
    color: #00e5c8;
    border-bottom: 2px solid #00e5c8;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.search {
    width: 310px;
    height: 40px;
    border: 1px solid #267b73;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
}

.search input::placeholder {
    color: #aaa;
}

.search i {
    color: #00e5c8;
}

.icon {
    color: white;
    font-size: 22px;
    text-decoration: none;
}

.icon:hover {
    color: #00e5c8;
}


/* BANNER */

.category-banner {
    height: 320px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 12, 11, 0.88),
            rgba(0, 12, 11, 0.25)
        ),
        url("../image/categories/categories-background.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    padding-left: 7%;
}

.banner-text p {
    font-size: 14px;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.banner-text h1 {
    font-size: 58px;
    color: #00e5c8;
    margin-bottom: 15px;
}

.banner-text span {
    display: block;
    color: #ddd;
    font-size: 18px;
    margin-top: 6px;
}


/* CATEGORY SECTION */

.category-section {
    width: 88%;
    max-width: 1300px;
    margin: auto;
    padding: 50px 0 65px;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 38px;
}

.section-title h2 span {
    color: #00e5c8;
}

.section-title p {
    margin-top: 12px;
    color: #aaa;
    letter-spacing: 4px;
    font-size: 12px;
}


/* GRID */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* CARD */

.category-card {
    text-decoration: none;
    color: white;
    background: #061d1a;
    border: 1px solid #08766c;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #00e5c8;
    box-shadow: 0 0 20px rgba(0, 229, 200, 0.18);
}


/* IMAGE */

.category-image {
    height: 230px;
    background: #03100f;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* INFO */

.category-info {
    position: relative;
    min-height: 105px;
    padding: 18px 20px;
}

.category-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.category-info p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
}

.arrow {
    position: absolute;
    right: 20px;
    top: 30px;

    width: 38px;
    height: 38px;

    border: 1px solid #00e5c8;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #00e5c8;
    font-size: 23px;
}


/* FOOTER */

.footer {
    min-height: 100px;
    border-top: 1px solid #16413d;
    background: #020b0a;

    display: flex;
    align-items: center;

    padding: 25px 6%;
}

.footer-brand h2 {
    font-size: 25px;
}

.footer-brand h2 span {
    color: #00e5c8;
}

.footer-brand p {
    font-size: 9px;
    letter-spacing: 3px;
    color: #aaa;
    margin-top: 5px;
}

.social {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.social i {
    width: 36px;
    height: 36px;

    border: 1px solid #31514e;
    border-radius: 50%;

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

.social i:hover {
    color: #00e5c8;
    border-color: #00e5c8;
}

.footer-right {
    border-left: 1px solid #31514e;
    margin-left: 35px;
    padding-left: 35px;
    color: #aaa;
    font-size: 14px;
}

.copyright {
    background: #020807;
    color: #888;
    padding: 15px 6%;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .header nav {
        display: none;
    }

    .search {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 550px) {

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-banner {
        height: 280px;
    }

    .banner-text h1 {
        font-size: 40px;
    }

    .header {
        padding: 0 20px;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social {
        margin-left: 0;
    }

    .footer-right {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
    }

}