﻿body {
    margin: 0;
    font-family: Segoe UI;
    background: #fff
}

/* HERO */
.contact-hero {
    height: 60vh;
    background: url('/Content/Images/fieldfarmer.jpg') center/cover;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,.65);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.fade-in {
    font-size: 58px;
    animation: fade 2s
}

.slide-up {
    font-size: 20px;
    max-width: 650px;
    animation: slide 2s
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slide {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* SECTION */
.contact-section {
    padding: 80px 8%;
    background: #f5faf7
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(380px,1fr));
    gap: 40px;
}

/* INFO CARD */
.contact-info {
    background: #1c7c54;
    color: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

    .contact-info h3 {
        margin-top: 10px
    }

.address {
    line-height: 1.6;
    margin: 20px 0
}

.info-box {
    margin-top: 15px;
    font-size: 17px
}

/* FORM CARD */
.contact-form {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 14px;
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 15px;
    }

    .contact-form button {
        background: #1c7c54;
        color: #fff;
        border: none;
        padding: 14px;
        width: 100%;
        border-radius: 30px;
        font-size: 18px;
        cursor: pointer;
        transition: .3s;
    }

        .contact-form button:hover {
            background: #145c3e
        }

/* MAP */
.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0
}
