@import url('../fontsAndColors.css');

/* -------------------- */
/*  Contact Us Content  */
/* -------------------- */
.contact-us-section {
    margin-top: 2rem;
}
.contact-us-content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 1000px) {
    .contact-us-content-wrapper {
    flex-wrap: wrap;
        width: 100%;
        max-width: 95vw;
    }
}

@media (max-width: 767px) {
    .contact-us-content-wrapper {
        width: 100%;
        max-width: 95vw;
    }
}

.contact-us-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

/* ----------------- */
/*  Contact Us Form  */
/* ----------------- */
#contactUsForm.contact-form {
    min-width: 20rem;
    width: 100%;
    margin: 0 2rem;
}

.contact-form {
    max-width: 500px;
    margin: auto;
}

.form-control {
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: rgba(217, 137, 106, 1);
    box-shadow: 0 0 0 0.25rem rgba(217, 137, 106, 0.25);
}

label {
    color: #6f7d5e;
}

.modern-btn {
    background: var(--gg-coral);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.modern-btn:hover {
    background: var(--gg-sun);
    transform: translateY(-2px);
}

h3 {
    color: #6f7d5e;
}

/* ----------------- */
/*  Calendar Section */
/* ----------------- */

.calendar-container {
    min-width: 25rem;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 4 / 3;
    position: relative;
}

@media (max-width: 767px) {
    .calendar-container {
        min-width: 0px;
        width: 100%;
        max-width: 95vw;
    }
}


.calendar-text {
    text-align: center;
}

.calendar-container iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #777;
    border-radius: 0.5rem;
}


@media (max-width: 767px) {
    .calendar-container {
        margin-top: 1rem;
        aspect-ratio: 4 / 4;
    }
}

.events-intro {
    font-size: 1.2rem;
    text-align: left;
}