/* Contact Page Specific Styles */

/* Hero Section (like HubSpot example) */
/* Hero Section with Background Image */
.contact-hero {
    position: relative;
    color: white;
    padding: 120px 20px 100px; /* account for fixed navbar */
    text-align: center;
    overflow: hidden;
}

/* Background Image */
.contact-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/images/forest_image_converted.png') no-repeat center center;
    background-size: cover;
    filter: blur(1px);
    z-index: -2;
}

/* Overlay */
.contact-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 128, 128, 0.3); /* teal overlay for branding */
    z-index: -1;
}

/* Hero Text */
.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}


/* Cards Section */
.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 350px;
    width: 100%;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-card i {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 1rem;
}

.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2C3E50;
}

.contact-card img {
  width: 50px;     
  height: auto;      
  margin-bottom: 1rem; /* space below icon */
  display: block;
  margin-left: auto;
  margin-right: auto; /* centers the icon */
}


.contact-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

/* Contact Buttons (re-using .btn style) */
.contact-card .btn {
    background: #008080;
    padding: 10px 20px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.contact-card .btn:hover {
    background: rgba(0, 128, 128, 0.8);
}

/* Responsive Layout */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

    .contact-card {
        max-width: 90%;
    }
}
