* {
    --color-primary-rgb: 255, 165, 0;
}

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

html { background-color: #fff; }

html,
body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

h1, h2 { font-family: Georgia, serif; }
body { font-family: Arial, Helvetica, sans-serif; }

.container {
    max-width: 800px;
    margin: auto;
}

/* HEADER */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    min-height: 100px;
    padding: 10px;
}

.header-logo {
    max-width: 100px;
}

/* HERO */
.hero {
    position: relative;
    max-height: min-content;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    overflow: visible;
    background: transparent;
    text-align: center;
}

.hero p {
    color: rgba(0,0,0,0.6);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    min-height: 120%;
    aspect-ratio: 1 / 1;
    top: 100%;
    left: 50%;
    scale: 2.5;
    transform: translate(10%, 0%);
    background-color: rgba(var(--color-primary-rgb), 0.5);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.2;
    clip-path: polygon(
        50% 100%,
        0% 75%,
        0% 25%, 
        50% 0%, 
        100% 25%, 
        100% 75%
    );
}

/* BUTTONS */
.cta {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cta .btn,
.cta-btn {
    padding: 10px 20px;
    text-align: center;
    border: 1px solid rgba(var(--color-primary-rgb), .7);
    color: black;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    border-radius: 2px;
    cursor: pointer;
}

.cta .btn:hover,
.cta-btn:hover {
    background-color: rgba(var(--color-primary-rgb), 1);
}

.btn.primary {
    background-color: rgba(var(--color-primary-rgb), .7);
}

.btn.secondary {
}

/* CONTACT FORM */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 165, 0, .7);
    padding: 40px;
    border-radius: 2px;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    z-index: 1000;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: bolder;
    font-size: 14px;
}

.contact-form label input,
.contact-form label textarea {
    margin-top: 4px;
    background-color: transparent;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 2px;
    border: 1px solid rgba(255, 165, 0, .7);
    font-size: 14px;
    outline: none;
    width: 100%;
}
a:focus-visible,
button:focus-visible,
.contact-form label:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 2px solid rgba(var(--color-primary-rgb), 1);
    outline-offset: 3px;
}


/* FOOTER */
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    width: 100%;
    font-size: 14px;
    text-align: center;
}