/*
    =====================================================
    |   UPDATED: Homepage (index.php) Specific CSS (Light Theme) |
    =====================================================
*/

/* --- Index Page Specific Styles --- */

/* Hero section video background styles */
.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border-radius: 1rem;
}
.hero-background-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* These child-element styles remain, but their parent will be the common card class */
.contact-card h3 {
    color: #111827; /* Very Dark Gray for heading */
}
.contact-card p {
    color: #374151; /* Dark Gray for paragraph text */
}
/* NEW: Style for the hero section on the light theme */
.hero-section-light {
    background-color: #FFFFFF;
    /*border: 1px solid #E5E7EB;*/
    border-radius: 1rem; /* 16px */
    padding: 5rem 1rem; /* 80px top/bottom, 16px left/right */
    text-align: center;
}