* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    padding-top: 120px; /* Increased to ensure hero section is not occluded by header */
}

/* Header styles */
header {
    background-color: #8B5A2B;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensure header stays on top */
}

.logo img {
    max-height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #D2B48C;
}

/* Hero section adjustments */
.hero {
    text-align: center;
    padding-top: 30px; /* Additional padding to push content below header */
}

.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.hero h1 {
    padding: 2rem 1rem;
    font-size: 2rem;
    color: #8B5A2B;
}

.hero .mission {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Content sections */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content h2 {
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.content p, .content ul {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content ul {
    padding-left: 20px;
}

.content a {
    color: #8B5A2B;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Gallery styles */
.gallery {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

/* Video player styles */
.video-player {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
}

/* Team section styles */
.team-member {
    text-align: center;
    margin: 1rem 0;
}

.team-member img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.team-member h3 {
    color: #8B5A2B;
    margin-bottom: 0.3rem;
}

.team-member p {
    font-style: italic;
}

/* Social links */
.social-links a {
    margin-right: 1rem;
    color: #8B5A2B;
    font-weight: bold;
}

/* Footer styles */
footer {
    background-color: #8B5A2B;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 140px; /* Increased for mobile to account for stacked header */
    }

    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        max-height: 40px;
    }

    .hero {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .mission {
        font-size: 1rem;
    }

    .gallery img {
        max-width: 100%;
    }

    .team-member img {
        max-width: 150px;
    }

    .content {
        padding: 1rem;
    }
}
me, I’ll provide the full updated `styles.css` with adjustments to fix the hero section occlusion. The key changes are in the `body`, `.hero`, and related styles to increase padding and ensure proper positioning.

### Steps to Apply the Changes

1. **Update styles.css**:
   - Replace your existing `styles.css` file on HostGator with the updated version above.

2. **Test the Site**:
   - Visit `paverde.com` on Chrome (Linux) and your Android phone.
   - Confirm that the hero section (image and mission statement) is fully visible and not occluded by the header.
   - Scroll to ensure the entire hero section, including the mission statement, is accessible.

### Notes
- **Increased Padding**: I’ve increased the `padding-top` on the `body` to `120px` (and `140px` on mobile) to account for the header height, including the stacked navigation on mobile devices. This should push the hero section down sufficiently.
- **Z-Index**: Added `z-index: 1000` to the header to ensure it stays on top of other elements, but this shouldn’t affect the hero section’s visibility with the increased padding.
- **Testing Across Devices**: The adjustments should resolve the issue on both Chrome (Linux) and Android. If the issue persists, we can further increase the padding or explore alternative positioning strategies (e.g., using `margin-top` or adjusting the header’s height calculation
