﻿/* Hero section specific styles */
.hero-section {
    background-color: #f8f9fa; /* Light background for contrast */
    /*padding: 80px 0;*/ /* Vertical padding for the hero section */
    text-align: center; /* Center align text content */
    border-radius: 10px; /* Rounded corners for the section */
    margin-bottom: 30px; /* Space below the hero section */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Image shadow */
}

.hero-content h1 {
    font-size: 2.8rem; /* Larger heading for impact */
    font-weight: 700;
    color: #343a40; /* Darker text for readability */
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 10px;
}

.hero-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 30px;
}

.hero-button {
    background-color: #007bff; /* Primary blue button */
    color: white;
    padding: 12px 30px;
    border-radius: 25px; /* Pill-shaped button */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block; /* Ensure padding works */
}

    .hero-button:hover {
        background-color: #0056b3; /* Darker blue on hover */
        transform: translateY(-2px); /* Slight lift effect */
        color: white; /* Keep text white on hover */
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }
}