/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f0e6d2;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Étoile 1 - Diagonale classique */
body::before {
    content: '';
    position: fixed;
    width: 3px;
    height: 5px;
    background: linear-gradient(to bottom, 
        transparent,
        rgb(172, 122, 253, 1),
        rgba(212, 175, 55, 1),
        rgba(212, 175, 55, 0.8),
        rgba(212, 175, 55, 0.4),
        rgba(212, 175, 55, 0.1),
        transparent
    );
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.8),
        0 50px 50px rgba(212, 175, 55, 0.3);
    filter: blur(1px);
    animation: shooting-star-1 18s ease-in-out infinite;
    opacity: 0;
    z-index: 0;
}

/* Étoile 2 - Horizontale gauche → droite */
body::after {
    content: '';
    position: fixed;
    width: 5px;
    height: 3px;
    background: linear-gradient(to right, 
        transparent,
        rgb(172, 122, 253, 1),
        rgba(212, 175, 55, 1),
        rgba(212, 175, 55, 0.8),
        rgba(212, 175, 55, 0.4),
        rgba(212, 175, 55, 0.1),
        transparent
    );
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.8),
        50px 0 50px rgba(212, 175, 55, 0.3);
    filter: blur(1px);
    animation: shooting-star-2 22s ease-in-out infinite;
    opacity: 0;
    z-index: 0;
}

/* Link COLOR */
.link {
  color: #ffc400;
}
.link:hover {
  color: #d400ff;
}

/* Étoiles 3, 4, 5 - Besoin de spans dans HTML */
.shooting-star-3 {
    content: '';
    position: fixed;
    width: 3px;
    height: 5px;
    background: linear-gradient(to bottom, 
        transparent,
        rgb(172, 122, 253, 1),
        rgba(212, 175, 55, 0.9),
        rgba(212, 175, 55, 0.6),
        rgba(212, 175, 55, 0.3),
        transparent
    );
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.8),
        0 50px 50px rgba(212, 175, 55, 0.3);
    filter: blur(1px);
    animation: shooting-star-3 15s ease-in-out infinite;
    opacity: 0;
    z-index: 0;
    transform: rotate(-45deg);
}

.shooting-star-4 {
    content: '';
    position: fixed;
    width: 3px;
    height: 5px;
    background: linear-gradient(to bottom, 
        transparent,
        rgb(172, 122, 253, 1),
        rgba(212, 175, 55, 0.9),
        rgba(212, 175, 55, 0.6),
        rgba(212, 175, 55, 0.3),
        transparent
    );
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.8),
        0 50px 50px rgba(212, 175, 55, 0.3);
    filter: blur(1px);
    animation: shooting-star-4 20s ease-in-out infinite;
    opacity: 0;
    z-index: 0;
    transform: rotate(30deg);
}

/* Animations */
@keyframes shooting-star-1 {
    0% {
        top: -100px;
        left: 100%;
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        top: 100%;
        left: 0%;
        opacity: 0;
    }
}

@keyframes shooting-star-2 {
    0% {
        top: 20%;
        left: -100px;
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        top: 20%;
        left: 120%;
        opacity: 0;
    }
}

@keyframes shooting-star-3 {
    0% {
        top: 100%;
        left: 0%;
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        top: -100px;
        left: 100%;
        opacity: 0;
    }
}

@keyframes shooting-star-4 {
    0% {
        top: 50%;
        left: 120%;
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        top: 50%;
        left: -100px;
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    text-align: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);

    /* DÉBUT ajout */
        background-image: 
        linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.85)),
        url('images/CARTE_25_LA_CLAIRIERE.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 1px;
    /* DÉBUT ajout */
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.header h1 {
    font-size: 2.5em;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tagline {
    font-style: italic;
    font-size: 1.2em;
    color: #f0e6d2;
    opacity: 0.9;
}

/* Hero Section */
.hero
{
    /* DÉBUT ANCIEN CODAGE À GARDER */
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    /* FIN ANCIEN CODAGE À GARDER */

    background-image: 
    linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.85)),
    url('images/CARTE_25_LA_CLAIRIERE.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero h2 {
    font-size: 2.8em;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.intro {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #f0e6d2;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
    font-size: 1.3em;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* How it works section */
.how-it-works {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);

    /* debut ajout */
    background-image: 
        linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.85)),
        url('images/CARTE_25_LA_CLAIRIERE.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 70px;
/* Fin ajout */
}

.how-it-works h3 {
    text-align: center;
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.step h4 {
    font-size: 1.8em;
    color: #d4af37;
    margin-bottom: 10px;
}

.step p {
    font-size: 1.1em;
    color: #f0e6d2;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing h3 {
    text-align: center;
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.plans {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.plan {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.premium {
    border: 3px solid #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

/* Ajout de badge */

.regular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #ffffff 50%);
    color: #1a1a2e;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

/* Fin ajout badge */

.plan h4 {
    font-size: 2em;
    color: #d4af37;
    margin-bottom: 20px;
}

.price {
    font-size: 3em;
    color: #f0e6d2;
    margin-bottom: 30px;
    font-weight: bold;
}

.price span {
    font-size: 0.4em;
    opacity: 0.7;
}

.plan ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan ul li {
    padding: 12px 0;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.plan-button {
    width: 100%;
    padding: 15px;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.plan-button:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.premium-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
    border: none;
}

.premium-button:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Oracle Form Section */ /* Oracle Form Section */ /* Oracle Form Section */

.oracle-form-section {
    padding: 80px 0;
    background-image: 
        linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.85)),
        url('images/CARTE_25_LA_CLAIRIERE.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.form-title {
    text-align: center;
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.form-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #f0e6d2;
    margin-bottom: 50px;
    opacity: 0.9;
}

.oracle-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #d4af37;
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #f0e6d2;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder {
    color: rgba(240, 230, 210, 0.5);
}

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 0.9em;
    margin-top: 5px;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.form-submit-btn {
    width: 100%;
    margin-top: 20px;
}

.form-loading {
    text-align: center;
    color: #d4af37;
    font-size: 1.2em;
    margin-top: 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.form-guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.guarantee-item-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f0e6d2;
    opacity: 0.9;
}

.guarantee-item-inline span {
    font-size: 1.5em;
}

.guarantee-item-inline p {
    margin: 0;
    font-size: 0.95em;
}

/* Responsive Form */
@media (max-width: 768px) {
    .oracle-form {
        padding: 25px;
    }
    
    .form-title {
        font-size: 2em;
    }
    
    .form-guarantees {
        flex-direction: column;
        gap: 15px;
    }
    
    .guarantee-item-inline {
        justify-content: center;
    }
}

/* Oracle Form Section */ /* Oracle Form Section */ /* Oracle Form Section */

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 80px;

    /* debut ajout */
    background-image: 
        linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.85)),
        url('images/CARTE_25_LA_CLAIRIERE.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 70px;
    /* Fin ajout */

}

.footer p {
    margin: 10px 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 2em;
    }
    
    .intro {
        font-size: 1.1em;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .plans {
        flex-direction: column;
        align-items: center;
    }
}
