/* ===> Hero section */
section.hero {
    height: 100dvh;
    padding-top: 150px !important;

    background-color: #ffffff;
    background-image: url("../assets/banner.jpeg");

    background-position: center top;

    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

section.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(255, 255, 255, 0.10);
}

section.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background: radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.75) 25%,
            rgba(255, 255, 255, 0.5) 45%,
            rgba(255, 255, 255, .1) 70%
    );
}

section.hero .content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    width: min-content;
}

section.hero h1 {
    width: max-content;
    min-width: 100%;

    text-wrap: wrap;
    line-height: .8;

    font-size: clamp(40px, 11vw, 80px);
    font-weight: bold;
}

section.hero h1 em {
    color: var(--accent);
    text-shadow: 0 2px 10px oklch(from var(--accent) l c h / .255);
}

section.hero .content p {
    margin-top: 10px;
    opacity: .75;
    font-size: clamp(10px, 4vw, 20px);
}

section.hero .content .actions {
    display: flex;
    flex-direction: row;

    justify-content: flex-start;
    align-items: flex-start;

    margin-top: 8px;
    flex-wrap: wrap;

    gap: 8px;
}

section.hero .content .actions a {
    width: auto;

    background-color: var(--accent);
    color: #ffffff;

    font-size: 18px;
    font-weight: bold;

    padding: 15px;
    border-radius: 5px;

    border: 2px solid var(--accent);

    transition: .3s ease-out;
}

section.hero .content .actions a:hover {
    scale: 1.05;
}

section.hero .content .actions a:last-child {
    background: transparent;
    backdrop-filter: blur(5px);
    color: var(--accent);
}

/* ===> Services section */
section.services h2 {
    font-size: 45px;
}


/* ===> Projects Section */
section.projects h2 {
    font-size: 45px;
}

section.projects a {
    font-size: 18px;
    color: var(--accent);
    font-weight: bold;
}

section.projects .row {
    width: 100%;
    flex-wrap: wrap;

    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: center;
}































