:root {
    --primary-blue: #0A3D62;
    --secondary-blue: #1E5A8E;
    --accent-red: #cf1b22;
    --light-blue: #E8F1F8;
    --cream: #FAF9F6;
    --text-dark: #1A2332;
    --text-light: #5A6C7D;
    --border-subtle: #D4DFE8;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 400;
    letter-spacing: -0.5px;
    z-index: 1001;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a,
.nav-links > li > span {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
    padding: 0.5rem 0;
}

.nav-links > li > a::after,
.nav-links > li > span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links > li:hover > a,
.nav-links > li:hover > span {
    color: var(--secondary-blue);
}

.nav-links > li:hover > a::after,
.nav-links > li:hover > span::after {
    width: 100%;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(10, 61, 98, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-subtle);
}

.nav-links > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--light-blue);
    border-left-color: var(--accent-red);
    padding-left: 1.75rem;
}

.category-icon {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.nav-links > li:hover .category-icon {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 5rem 3rem 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.6;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 800px;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 62, 29, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 62, 29, 0.4);
    background: #fd373e;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* Section Styles */
section {
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out both;
}

section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(4) { animation-delay: 0.3s; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Presentation Section */
.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 61, 98, 0.08);
}

.presentation-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.presentation-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.presentation-image {
    height: 400px;
    /* background: linear-gradient(135deg, var(--light-blue) 0%, #C8E0F0 100%); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* .presentation-image::before {
    content: '⚕';
    font-size: 150px;
    color: rgba(10, 61, 98, 0.15);
    position: absolute;
} */

/* Testimonial Bar */
.testimonial-bar {
    background: var(--light-blue);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin: 5rem 0;
}
.testimonial-text { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--primary-blue); font-style: italic; margin-bottom: 1rem; }

/* Actions Grid */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-red);
    transition: height 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 61, 98, 0.12);
}

.action-card:hover::before {
    height: 100%;
}

.action-card h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.action-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.action-link:hover {
    transform: translateX(5px);
}

.action-link::after {
    content: ' →';
}

/* News Section */
.news-container {
    background: var(--light-blue);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--accent-red);
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-item:hover {
    transform: translateX(10px);
}

.news-date {
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-item h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Action Boxes Section */
.action-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.action-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-subtle);
    transition: all 0.4s ease;
    cursor: pointer;
}

.action-box:hover {
    border-color: var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(199, 62, 29, 0.15);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.action-box h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-box:hover {
    box-shadow: 0 8px 25px rgba(10, 61, 98, 0.1);
    transform: translateY(-3px);
}

.partner-box p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    color: white;
}

.newsletter-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.newsletter-input {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.newsletter-input input {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    min-width: 300px;
    font-family: 'Work Sans', sans-serif;
}

.newsletter-input input:focus {
    outline: 2px solid var(--accent-red);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
    RESPONSIVE DESIGN
    ============================================ */

/* Tablette Landscape / Small Desktop */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1.2rem 2rem;
    }

    .container {
        padding: 4rem 2rem;
    }

    .hero {
        padding: 4rem 2rem 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .newsletter-section {
        padding: 3rem 2rem;
    }
}

/* Tablette Portrait */
@media (max-width: 968px) {
    /* Menu mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 40px rgba(10, 61, 98, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .nav-links.active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        opacity: 1;
        padding: 1rem 0;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid var(--border-subtle);
        padding: 0;
    }

    .nav-links > li:last-child {
        border-bottom: none;
    }

    .nav-links > li > span,
    .nav-links > li > a {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .nav-links > li > a::after,
    .nav-links > li > span::after {
        display: none;
    }

    .category-icon {
        float: right;
    }

    /* Dropdown sur mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--light-blue);
    }

    .nav-links > li.mobile-dropdown-open .dropdown-menu {
        max-height: 500px;
    }

    .nav-links > li.mobile-dropdown-open .category-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.75rem 3rem;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        padding-left: 3.25rem;
    }

    /* Hero */
    .hero {
        margin-top: 80px;
        padding: 3rem 1.5rem 2.5rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Sections */
    .presentation-content {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .presentation-image {
        height: 300px;
    }

    .action-boxes {
        grid-template-columns: 1fr;
    }

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

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .newsletter-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .newsletter-input {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input input {
        width: 100%;
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

/* Mobile */
@media (max-width: 640px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .action-card,
    .action-box {
        padding: 1.5rem;
    }

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

    .news-container,
    .presentation-content {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-section h2 {
        font-size: 1.5rem;
    }

    .newsletter-section p {
        font-size: 0.95rem;
    }
}

/* Très petits écrans */
@media (max-width: 380px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }
}/* ========================================
   MODALS STYLES
   ======================================== */

/* Bouton de connexion dans la nav */
.login-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(199, 62, 29, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 62, 29, 0.4);
    background: #fd373e;
}

.login-btn span {
    font-size: 1.2rem;
}

/* Modal Base */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 61, 98, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--accent-red);
    background: rgba(199, 62, 29, 0.1);
    transform: rotate(90deg);
}

/* Modal Title */
.modal-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    color: var(--text-dark);
    font-size: 0.95rem;
    cursor: pointer;
}

/* Modal Submit Button */
.modal-submit-btn {
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0 4px 15px rgba(199, 62, 29, 0.3);
    margin-top: 0.5rem;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 62, 29, 0.4);
    background: #fd373e;
}

/* Modal Links */
.modal-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.modal-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.modal-link:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* Modal de Notification */
.modal-notification .modal-content {
    max-width: 400px;
    text-align: center;
    padding: 2.5rem;
}

.notification-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.notification-icon.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.notification-icon.error {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.notification-icon.info {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.notification-icon.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.notification-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.notification-message {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 640px) {
    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

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

    .login-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .login-btn span {
        font-size: 1rem;
    }

    .modal-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* ========================================
   FIN DU FICHIER
   ======================================== */