/* EmpowerHer Pathway Specific Styles */

/* EmpowerHer Hero Section */
.empower-hero {
    background: linear-gradient(135deg, #8B5A8F 0%, #D4B5A0 100%);
    color: var(--text-dark);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.empower-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.empower-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.empower-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.empower-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.empower-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-style: italic;
}

/* EmpowerHer Overview */
.empower-overview {
    background: linear-gradient(135deg, var(--secondary-blush) 0%, var(--background-light) 100%);
    border-left: 5px solid #8B5A8F;
}

/* Component Grid */
.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.component-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #8B5A8F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(139, 90, 143, 0.2);
}

.component-card h3 {
    color: #8B5A8F;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.component-card ul {
    list-style: none;
    padding: 0;
}

.component-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.component-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-gold);
    font-weight: bold;
}

/* Workshop Highlight */
.workshop-highlight {
    background: linear-gradient(135deg, #FFF8E1 0%, var(--background-light) 100%);
    border-left: 5px solid var(--highlight-gold);
}

.workshop-badge {
    display: inline-block;
    background-color: var(--highlight-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.workshop-highlight h3 {
    color: #8B5A8F;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.curriculum-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-gold);
}

.curriculum-item h4 {
    color: #8B5A8F;
    margin-bottom: 0.75rem;
}

.curriculum-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Workshop Details */
.workshop-details {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid var(--secondary-blush);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-neutral);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.detail-value {
    display: block;
    font-size: 1.2rem;
    color: #8B5A8F;
    font-weight: bold;
}

.partnership-note {
    background-color: var(--secondary-blush);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #8B5A8F;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.method {
    display: flex;
    gap: 1rem;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-gold);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method strong {
    color: #8B5A8F;
    display: block;
    margin-bottom: 0.25rem;
}

.method p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* Expectation List */
.expectation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expectation-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--highlight-gold);
    position: relative;
    padding-left: 4rem;
}

.expectation-number {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--highlight-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.expectation-item h3 {
    color: #8B5A8F;
    margin-bottom: 0.75rem;
}

.expectation-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .empower-hero h1 {
        font-size: 2rem;
    }

    .empower-tagline {
        font-size: 1.1rem;
    }

    .empower-logo {
        width: 120px;
        height: 120px;
    }

    .component-grid,
    .curriculum-grid,
    .contact-methods,
    .expectation-list {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .empower-hero {
        padding: 2rem 1rem;
    }

    .empower-hero h1 {
        font-size: 1.5rem;
    }

    .empower-logo {
        width: 100px;
        height: 100px;
    }

    .workshop-details {
        padding: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .expectation-item {
        padding-left: 3rem;
    }

    .expectation-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
