@font-face {
    font-family: 'Coolvetica';
    src: url('./assets/CoolveticaBk-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Coolvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #FDD835;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: hidden;
    padding: 2rem 0;
    margin: 0;
    width: 100%;
}

#root {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Logo personnalisé */
.logo-container {
    margin-top: 3rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    color: #FF7043;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: -2px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    font-style: italic;
}

/* Tagline principal */
.tagline {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline-highlight {
    color: #FF7043;
    font-weight: 700;
}

/* Section Modes de Rencontre */
.modes-section {
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.modes-title {
    font-size: 2.5rem;
    color: #FF7043;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.modes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.mode-card {
    background: #FFF9C4;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.8s ease-out both;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF7043, #FDD835);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.mode-card:hover::before {
    transform: scaleX(1);
}

.mode-equilibree {
    animation-delay: 0.6s;
}

.mode-decouverte {
    animation-delay: 0.8s;
}

.mode-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mode-title {
    font-size: 1.8rem;
    color: #FF7043;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mode-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mode-badge {
    display: inline-block;
    background: #FF7043;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.feature {
    background: #FFF9C4;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    color: #FF7043;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text {
    color: #666;
    line-height: 1.5;
}

/* Section construction */
.under-construction {
    background: #FFF9C4;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.construction-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.construction-title {
    font-size: 2.2rem;
    color: #FF7043;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.construction-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Formulaire waitlist */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.email-input {
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid #FF7043;
    border-radius: 15px;
    background: white;
    outline: none;
    transition: all 0.3s ease;
    color: #333;
}

.email-input:focus {
    border-color: #FF7043;
    box-shadow: 0 0 0 4px rgba(255, 112, 67, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #999;
}

.submit-button {
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F7F3E9;
    background: #FF7043;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 112, 67, 0.5);
    background: #e66339;
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.message {
    padding: 18px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    animation: slideInUp 0.5s ease-out;
}

.message.success {
    background: #4CAF50;
    color: white;
}

.message.error {
    background: #f44336;
    color: white;
}

/* Footer */
.footer {
    margin-top: 3rem;
    color: #666;
    font-size: 1rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

/* Éléments décoratifs */
.decoration {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: #FFF9C4;
    top: -100px;
    left: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: #FFE0B2;
    bottom: -50px;
    right: -50px;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    background: #FFECB3;
    top: 50%;
    right: 10%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 2rem 1rem;
    }

    .logo-container {
        margin-top: 1rem;
    }

    .logo {
        font-size: 3rem;
    }

    .logo-image {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .modes-title {
        font-size: 2rem;
    }

    .modes-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mode-card {
        padding: 30px 20px;
    }

    .mode-title {
        font-size: 1.5rem;
    }

    .mode-description {
        font-size: 1rem;
    }

    .construction-title {
        font-size: 1.8rem;
    }

    .construction-text {
        font-size: 1.1rem;
    }

    .under-construction {
        padding: 35px 25px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .decoration {
        display: none;
    }
}