/**
 * VIP Membership Landing Page Styles
 */

:root {
    --primary-color: #1f3a19;
}

/* Reset styles for Divi compatibility */
.vip-membership-landing-page {
    all: initial;
    font-family: 'Harmonia Sans', sans-serif;
}

.vip-membership-landing-page * {
    font-family: inherit;
}

/* Hero Section Styles */
.vip-hero-section, .vip-cta-section {
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
    position: relative;
    overflow: hidden;
}

/* Animated elements */
.vip-floating-element {
    position: absolute;
    border-radius: 100%;
    background-color: var(--primary-color);
    opacity: 0.1;
}

.vip-circle-1 {
    top: 15%;
    left: 10%;
    width: 20rem;
    height: 20rem;
    animation: float 15s ease-in-out infinite;
}

.vip-circle-2 {
    bottom: 10%;
    right: 5%;
    width: 30rem;
    height: 30rem;
    animation: float 18s ease-in-out infinite reverse;
}

.vip-radial-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    border-radius: 100%;
    background: radial-gradient(circle, rgba(52, 75, 72, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: pulse 10s infinite;
    z-index: 0;
}

/* CTA Buttons */
.vip-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.vip-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: all 0.6s ease;
}

.vip-cta-button:hover:before {
    left: 100%;
}

.vip-cta-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    overflow: hidden;
    font-size: 1rem;
}

.vip-cta-button-outline:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Feature Card Styles */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(52, 75, 72, 0.1);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-card:hover .feature-icon svg {
    color: white;
}

/* Step Cards */
.step-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(52, 75, 72, 0.1);
}

.step-number {
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
}

/* Accordion Styles */
.vip-accordion-item {
    transition: all 0.3s ease;
}

.vip-accordion-header {
    cursor: pointer;
}

.vip-accordion-arrow {
    transition: transform 0.3s ease;
}

.vip-accordion-header.active .vip-accordion-arrow {
    transform: rotate(180deg);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.1; transform: scale(0.97); }
    50% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.1; transform: scale(0.97); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vip-circle-1 {
        width: 10rem;
        height: 10rem;
    }
    
    .vip-circle-2 {
        width: 15rem;
        height: 15rem;
    }
    
    .step-card {
        margin-top: 2rem;
    }
    
    .step-number {
        margin-top: -2rem;
    }
}