/* Home Page Styles - Premium v2.0 */

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(233, 30, 99, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 30%, #ede7f6 60%, #fff3e0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(33, 150, 243, 0.08) 0%, transparent 40%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23e91e6318"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1,
.hero-content h2,
.hero-content h3 {
    color: #1a1a2e !important;
}

.hero-content p {
    color: #4a4a6a !important;
}

.text-gradient {
    background: linear-gradient(135deg, #e91e63 0%, #ff6090 50%, #7c4dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sexy CTA Button */
.btn-sexy {
    background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%);
    border: none;
    color: white;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-sexy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-sexy:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.45);
    color: white;
}

.btn-sexy:hover::before {
    left: 100%;
}

/* Member Grid */
.member-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px;
}

.member-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15);
}

.member-item:hover {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
    border-color: #ff6090;
}

.member-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-item:hover img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 12px 12px;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
    color: white;
}

.member-overlay .member-name {
    color: #ffffff;
    font-weight: 600;
}

.member-overlay .member-age {
    color: rgba(255, 255, 255, 0.9);
}

.online-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    background: #4caf50;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.5);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
}

/* Feature Box */
.feature-box {
    background: #ffffff;
    border: 2px solid rgba(233, 30, 99, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
}

.feature-box:hover {
    border-color: #e91e63;
    background: #fff5f7;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.feature-box h4,
.feature-box h5 {
    color: #1a1a2e !important;
}

.feature-box p {
    color: #5a5a7a !important;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Stats */
.stats-box {
    text-align: center;
    padding: 30px;
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Backgrounds */
.section-dark {
    background: linear-gradient(135deg, #f8f4f6 0%, #f0f4f8 100%);
    color: #1a1a2e;
}

.section-darker {
    background: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 100%);
    color: #1a1a2e;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-darker h2,
.section-darker h3,
.section-darker h4 {
    color: #1a1a2e !important;
}

.section-dark p,
.section-darker p {
    color: #5a5a7a !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fce4ec 0%, #ede7f6 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2,
.cta-section h3 {
    color: #1a1a2e !important;
}

.cta-section p {
    color: #5a5a7a !important;
}

/* Responsive */
@media (max-width: 992px) {
    .member-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .member-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .btn-sexy {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .hero-logo-img {
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .member-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}