/* Hero Section Improvements */

/* Single Post Hero Section */
.single-dentist-post .header-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.single-dentist-post .entry-header {
    padding: 4rem 0 !important;
}

/* Homepage Hero Section with Custom Background */
.hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 124, 186, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* State Cards with Images */
.state-card {
    position: relative;
    overflow: hidden;
}

.state-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.state-card:hover .state-card-image {
    transform: scale(1.05);
}

.state-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    z-index: 2;
}

.state-card-overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.state-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}
