/* Influencers Page Styles */

/* Hero Invitation Section */
.influencer-hero {
    background: linear-gradient(135deg, var(--brand-aqua) 0%, var(--brand-navy) 100%);
    padding: 60px 0;
    margin-top: 20px;
    margin-bottom: 50px;
}

.invitation-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.invitation-card h1 {
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.invitation-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.invitation-card .cta-btn {
    background: var(--color-navy) !important;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 52, 86, 0.4);
}

.invitation-card .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 52, 86, 0.6);
    color: white;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    text-align: center;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-aqua) 0%, var(--brand-navy) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Sample Influencer Cards */
.sample-influencers-section {
    margin-bottom: 60px;
}

.sample-influencers-section h2 {
    text-align: center;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.influencer-sample-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.influencer-sample-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-aqua);
}

.influencer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fffe 0%, #e6f9f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    border: 3px solid var(--brand-aqua);
}

.influencer-sample-card h3 {
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.influencer-sample-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.influencer-sample-card .example-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-aqua) 0%, var(--brand-navy) 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Registered Influencers Section */
.registered-influencers-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 3px solid var(--border-light);
}

.registered-influencers-section h2 {
    text-align: center;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2rem;
}
