/*
 * Copyright (C) 2025 0xMRCL. - All Rights Reserved
 *
 * Unauthorized copying or redistribution of this file in source and binary forms via any medium
 * is strictly prohibited.
 */

/* Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: "Kumbh Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #fff;
    background: #000;
}

h2 {
    color: #FFF;
    text-align: left;
    font-family: "Kumbh Sans", serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.articles > article {
    width: 100%;
    min-height: 30rem;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media screen and (min-width: 850px) {
    .articles > article {
        max-width: 55vw;
    }
}

article p {
    color: #FFF;
    font-family: "Kumbh Sans", serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* hero centered with flexbox, full viewport */
main {
    margin-top: 0;
}

.banner {
    min-height: 100svh;
    /* full screen */
    display: flex;
    /* flexbox for centering */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    position: relative;
    text-align: center;
    padding: 0 16px;
    background: linear-gradient(180deg, #0a63ff 0%, #083594 50%, #000 80%);
}

/*  vignette  */
.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .85) 100%);
    pointer-events: none;
}

.banner-text {
    position: relative;
}

/* BANNER FOR COLLAB PAGE */
.banner-collaborate {
    min-height: 100svh;
    /* full screen */
    display: flex;
    /* flexbox for centering */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    position: relative;
    text-align: center;
    padding: 0 16px;
    background: linear-gradient(180deg, #ff8a00 0%, #9d234d 40%, #000 80%);
}

/* vignette  */
.banner-collaborate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .85) 100%);
    pointer-events: none;
}


/* BANNER FOR CONTACT PAGE */
.banner-contact {
    min-height: 100svh;
    /* full screen */
    display: flex;
    /* flexbox for centering */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    position: relative;
    text-align: center;
    padding: 0 16px;
    background: linear-gradient(180deg, #00c853 0%, #006458 40%, #000 80%);
}

/* vignette */
.banner-contact::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .85) 100%);
    pointer-events: none;
}

.banner-404 {
    min-height: 100svh;
    /* full screen */
    display: flex;
    /* flexbox for centering */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    position: relative;
    text-align: center;
    padding: 0 16px;
    background: linear-gradient(180deg, #ff0000 0%, #9d234d 40%, #000 80%);
}

/* vignette  */
.banner-404::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .85) 100%);
    pointer-events: none;
}

#over-heading {
    margin: 0 0 12px;
    font-size: clamp(0.9rem, 1.6vw, 1.25rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dfe8ff;
    font-weight: 500;
}

#heading {
    margin: 0;
    font-weight: 500;
    font-size: clamp(3rem, 14vw, 12rem);
    line-height: 0.9;
    background: linear-gradient(180deg, #e6e9ef 0%, #aeb5c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    transition: all 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.card-logo {
    width: 64px;
    height: 64px;
    background-color: #333;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.card-content h3 {
    margin: 0 0 8px 0;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.card-content p {
    margin: 0;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

footer {
    background: #232323;
    color: #fff;
    margin-top: 200px;
    height: 50vh;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: start;
    text-align: left;

}

.footer-container section {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-left: 30px;
    flex-grow: 1;
}

.footer-container section h2 {
    margin: 0;
    gap: 20px;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
}

footer a {
    color: #bebebe;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer p {
    color: #bebebe;
}
