/* Membership Page - Homepage Style */

/* Hero Section - wie auf der Startseite */
.hero-section {
    background: linear-gradient(135deg, #111E0A 0%, #1a2a0a 100%);
    padding: 60px 0;
    margin-bottom: 20px;
    border-radius: 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    text-align: center;
}

.hero-text {
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.title-line.highlight-white {
    color: #ffffff;
}

.title-line.highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 100px;
    color: #cccccc;
}

.hero-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #60b347;
    margin-bottom: 30px;
    padding: 15px 30px;
    background-color: rgba(96, 179, 71, 0.1);
    border-left: 4px solid #60b347;
    border-radius: 8px;
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: linear-gradient(135deg, #e31818 0%, #c01414 100%);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    color: white;
}

.cta-secondary {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.cta-secondary:hover {
    background-color: #ffd700;
    color: #111E0A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.cta-primary i, .cta-secondary i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Intro Section */
.intro-section {
    background-color: #111E0A;
    padding: 40px 0;
    color: white;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section - wie auf der Startseite */
.features-section {
    padding: 40px 0;
    background-color: #111E0A;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e31818;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #ffd700;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #312E0A;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #e31818;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #312E0A;
}

.feature-card p {
    line-height: 1.6;
    color: #312E0A;
}

.feature-card .highlight {
    color: #e31818;
    font-weight: bold;
}

/* Details Section */
.details-section {
    background-color: #111E0A;
    padding: 40px 0;
    color: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
}

.detail-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section - wie auf der Startseite */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e31818 0%, #c01414 100%);
    color: white;
    border-radius: 20px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-white {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-primary.large {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #ffd700;
    color: #312E0A;
}

.cta-primary.large:hover {
    transform: translateY(-3px);
    background: #ffed4e;
}

.cta-primary.large i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
}

.contact-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-price {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-section,
    .details-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card,
    .detail-card {
        padding: 30px 20px;
    }
    
    .cta-title-white {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary.large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0;
    }
    
    .hero-price {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title-white {
        font-size: 1.8rem;
    }
    
    .cta-primary.large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

