/* 
* Hero Button Fix
* This file fixes the alignment and styling of the hero section buttons
* Ensures buttons are centered and have the consistent blue glow effect
*/

/* Improved Hero Content Alignment */
.hero-content {
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.hero-content h1 {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
    font-size: 3.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.hero-content p {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Hero buttons container */
.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 50px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    width: 100% !important;
}

/* Hero button styling with white background */
.hero-buttons .btn {
    padding: 16px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    margin: 0 10px !important;
    color: #000000 !important; /* Black text color */
    border-color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.9) !important; /* Semi-transparent white background */
    text-align: center !important;
    min-width: 180px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Hero button hover effect with blue glow */
.hero-buttons .btn:hover {
    background-color: #3B82F6 !important;
    color: #ffffff !important;
    border-color: #3B82F6 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4), 
                0 0 20px rgba(59, 130, 246, 0.3) !important;
}

/* Ensure buttons are visible with white background */
.hero-buttons .btn-outline-light {
    color: #000000 !important; /* Black text color for better contrast */
    border-color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-width: 2px !important;
}

/* Force correct button rendering */
.hero-area .hero-content .hero-buttons a.btn {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive styles */
@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 5px auto !important;
    }
}
