/* Links Page Specific Styles */

/* Hero Section */
.links-hero {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

/* Resources Grid */
.resources-section {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
}

/* Category Headers */
.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.category-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Resource Cards */
.resource-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 100%);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(215, 51, 113, 0.15);
    border-color: rgba(215, 51, 113, 0.2);
    background: rgba(255, 255, 255, 1);
}

.resource-card h3 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-link {
    color: #d73371;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #e24a7a;
}

/* Internal Links Cards (Dating Resources) */
.internal-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(215, 51, 113, 0.1);
}

.internal-card:nth-child(1) {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
}

.internal-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(215, 51, 113, 0.05) 0%, rgba(226, 74, 122, 0.05) 100%);
}

.internal-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(226, 74, 122, 0.1) 0%, rgba(240, 244, 255, 0.6) 100%);
}

.internal-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(226, 74, 122, 0.05) 0%, rgba(184, 41, 90, 0.05) 100%);
}

.internal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(215, 51, 113, 0.15);
    border-color: rgba(215, 51, 113, 0.2);
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 1);
}

.cta-button {
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 51, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(255, 255, 255, 1);
}

.disclaimer-card {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-icon {
        margin: 0;
    }
    
    .resource-card,
    .internal-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
} 