/* ---------------------- */
/*  COLOR VARIABLES       */
/* ---------------------- */
:root {
    --dark: #2c403E;
    --light-teal: #B4D9CE;
    --pink: #D9B5B4;
    --offwhite: #F2f2f2;

    --radius: 30px;
    --outside-border: 5px solid var(--dark);
    --inside-border: 3px solid var(--dark);
}

/* ---------------------- */
/*  GLOBAL STYLES         */
/* ---------------------- */

 
body {
    margin: 0;
    background-color: var(--dark);
    font-family: "europa", sans-serif;
    justify-items: center;
}

a {
    color: var(--dark);
    text-decoration: none;
}

h1 {
    font-family: "europa-regular", sans-serif;
}

h2 {
    font-family: "laca", sans-serif;
}

p {
    color: var(--dark);
}

.ds {
    /* width: 50%; */
    /* height: auto; */
    

    filter: drop-shadow(3px 3px 3px rgba(74, 74, 74, .75));
}

.fadein {
    animation: logoFadeUp .8s ease-out .25s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes logoFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------- */
/*  HERO SECTION          */
/* ---------------------- */
.hero {
    width: 70%;
    background: var(--light-teal);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: .5;
}

.hero-title {
    margin-top: 1.5em;
    /* padding-bottom: 1em; */
    font-size: 5rem;
}


.herologo {
    width: 50%;
}

/* .hero h1 {
    margin-bottom: 1rem;
    font-size: 5em;
} */

.hero p {
    font-size: 1.2rem;
}

/* ---------------------- */
/*  FORM SECTION          */
/* ---------------------- */
.contact-section {
    width: 50%;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--pink);
    border: var(--outside-border);
    border-radius: var(--radius);
}

.formtitle {
    color: var(--dark);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: var(--dark);
    padding-bottom: 1em;
}

input,
textarea {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: var(--inside-border);
    background: var(--offwhite);
    font-family: "europa", sans-serif;
}

button {
    padding: 0.85rem 1.2rem;
    background: var(--dark);
    color: var(--offwhite);
    font-size: 1.1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    width: 50%;
    align-self: center;
}

button:hover {
    background: #233330;
}

/* Hide honeypot */
.hidden {
    display: none;
}


@media screen and (max-width: 600px) {
.hero {
        width: 100%;
        padding: 4rem 0 4rem 0;
    }

.hero-title {
    font-size: 3em;
    color: var(--dark);
}

.hero-content h1 {
        font-family: "europa", sans-serif;
        font-weight: 700;
}

.hero-content {
    width: 100%;
}

.hero-content h2 {
    font-size: 1.25em;
}

.contact-section {
    width: 75%;
    /* padding: 2rem 0 2rem 0; */
    margin: 2rem 0rem auto;
}
}