/* Frontend Styles for About Us Hero Section */

/* Hide WordPress default page title when About Hero block is present */
body.page .entry-title,
body.page .page-title,
body.page header.entry-header {
    display: none !important;
}

.hero {
    background-color: #D9E0DB !important;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 100px 20px;
    text-align: center;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
}
