/* Full-screen Hero Section */

.fullscreen-hero {
    height: 100vh !important;
    padding: 0 !important;
    position: relative !important;
    background: url('../assets/home-image-maureen.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    color: #fff !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 1 !important;
}

.fullscreen-hero .container {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    padding-top: 120px !important; /* Add padding to push content down */
}

.fullscreen-hero .hero-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.fullscreen-hero .hero-text {
    max-width: 600px !important;
}

.fullscreen-hero h1 {
    font-size: 4rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.fullscreen-hero h1 span {
    color: var(--secondary-color) !important;
}

.fullscreen-hero h2 {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-bottom: 2rem !important;
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.4 !important;
}

.fullscreen-hero .hero-cta {
    margin-top: 2rem !important;
}

.fullscreen-hero .btn-primary {
    background-color: #fff !important;
    color: var(--primary-color) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.fullscreen-hero .btn-primary:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .fullscreen-hero h1 {
        font-size: 3rem !important;
    }
    
    .fullscreen-hero h2 {
        font-size: 1.4rem !important;
    }
    
    .fullscreen-hero .hero-text {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .fullscreen-hero .container {
        padding-top: 100px !important;
    }
}

@media screen and (max-width: 576px) {
    .fullscreen-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .fullscreen-hero h2 {
        font-size: 1.2rem !important;
    }
}
