/* CONTACT PAGE STYLING */
.contact-hero {
    height: 45vh;
    background: url("../../site-photos/contact-banner.png"), linear-gradient(#0a0a0acc, #0a0a0acc);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-overlay {
    text-align: center;
    color: #fff;
}

.contact-hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* CONTACT BOXES CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-box {
    background: #121212;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #1f5f36;
    box-shadow: 0 0 8px #000;
    flex: 1 1 200px;
    text-align: center;
    transition: 0.25s ease;
}

.contact-box:hover {
    transform: scale(1.05);
    border-color: #2b7c47;
}

.contact-box h3 {
    color: #6eea86;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-box p {
    font-size: 0.95rem;
}

.contact-box a {
    color: #6eea86;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* FOOTER */
.site-footer {
    margin-top: 60px;
    padding: 30px;
    background: #111;
    text-align: center;
    border-top: 2px solid #1f5f36;
}

.site-footer a {
    color: #6eea86;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* MOBILE RESPONSIVE */
@media (max-width: 700px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-hero-overlay h1 {
        font-size: 2.2rem;
    }
}
