/* ===> Hero section */
section.hero {
    height: auto;
    padding-top: 150px !important;
    padding-bottom: 80px !important;

    background-color: #ffffff;
    background-image: url("../assets/banner1.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 {
    z-index: 4;
}

section.hero h1 {
    font-size: 60px;
    color: var(--accent);
}

/* ===> Contact */
section.contact {
    flex-direction: row;
    justify-content: space-around;
    gap: 15px;
}

section.contact .info {
    display: flex;
    flex-direction: column;

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

    gap: 10px;
}

section.contact .info p {
    font-size: 18px;
    margin-bottom: 15px;
}

section.contact .info a {
    display: flex;
    flex-direction: row;

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

    width: 100%;
    gap: 5px;

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

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

    background-color: oklch(from var(--accent) l c h / 0.555);
    color: #ffffff;

    transition: .3s ease-out;
}

section.contact .info a:hover {
    scale: 1.025;
    border-radius: 12px;
}

section.contact .info a i {
    font-size: 30px;
}

section.contact iframe {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

@media (max-width: 1000px) {
    section.contact {
        flex-direction: column;
        align-items: center;
    }
}
























