/* Styles pour la page plan */
.plan-page {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

/* Ajout d'un overlay sombre pour améliorer la lisibilité */
.plan-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}



.plan-intro {
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    color: white;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease-out;
    z-index: 100;
    width: 90%;
    max-width: 800px;
    margin: auto;
}

.plan-intro p {
    font-size: 1.8rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 500;
}

.plans-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.plan-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 0;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.plan-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.plan-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px var(--overlay-light-dark);
}

.plan-description {
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.plan-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

.plan-features {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.plan-features li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.plan-button {
    width: calc(100% - 4rem);
    margin: 2rem;
    padding: 1.2rem;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 62, 255, 0.3);
}

.plan-button .icon {
    font-size: 1.4rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .plan-content {
        padding: 2rem 1rem;
    }

    .plan-intro p {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .plan-card {
        margin: 0 1rem;
    }

    .plan-image {
        height: 200px;
    }

    .plan-header h2 {
        font-size: 1.8rem;
    }

    .plan-price {
        font-size: 3rem;
    }

    .plan-features li {
        font-size: 1rem;
    }

    .plan-button {
        margin: 1.5rem;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* Styles pour le bloc premium */
.premium-status-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

.premium-header {
    margin-bottom: 2rem;
}

.premium-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.premium-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.premium-features {
    margin: 2rem 0;
    text-align: left;
}

.premium-features ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.premium-features li {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: white;
}

.premium-cta {
    margin-top: 2rem;
}

.premium-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
} 