/* Minimalistic enhancements for French theme */
:root {
    --french-white: #FFFFFF;
    --french-light-blue: rgba(0, 85, 164, 0.1);
    --french-light-red: rgba(239, 65, 53, 0.1);
}

/* Enhanced body with subtle texture */
body {
    background: linear-gradient(135deg, 
        var(--french-blue) 0%, 
        var(--french-red) 100%);
    background-attachment: fixed;
}

/* Refined card with elegant borders */
.landing-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Simplified header with cleaner gradient */
.landing-header {
    background: linear-gradient(135deg, 
        var(--french-blue) 0%, 
        #D92B24 100%);
    padding: 2.5rem 2rem;
}

.landing-header h1 {
    font-weight: 300;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Minimalist flag decoration */
.flag-decoration {
    height: 4px;
    margin: 1.5rem auto 0;
    width: 60px;
    border-radius: 2px;
}

/* Refined practice options */
.practice-options {
    gap: 1.5rem;
}

.practice-option {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.practice-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Simplified hover states */
.practice-option.tef:hover {
    background: var(--french-blue);
    border-color: var(--french-blue);
}

.practice-option.ai:hover {
    background: #1976d2;
    border-color: #1976d2;
}

.practice-option.culture:hover {
    background: var(--french-gold);
    border-color: var(--french-gold);
}

/* Cleaner icons */
.practice-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Refined typography */
.practice-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.practice-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Minimalist button */
.practice-btn {
    border-width: 1.5px;
    padding: 0.6rem 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Simplified newsletter card */
.newsletter-card {
    background: transparent;
    border: 1.5px dashed var(--french-blue);
    padding: 1.5rem;
}

/* Cleaner floating shapes */
.shape {
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

/* Subtle animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.02);
    }
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
    .landing-header {
        padding: 2rem 1.5rem;
    }
    
    .landing-header h1 {
        font-size: 2rem;
    }
    
    .practice-option {
        padding: 1.5rem;
    }
    
    .practice-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--french-gold);
    outline-offset: 2px;
}