/* Styles spécifiques à la page d'accueil */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
    margin-top: 80px;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.card-container {
    width: 500px !important;
    max-width: 500px !important;
    min-width: 500px !important;
}

.main-container {
    width: 100%;
    margin: 0 auto;
    padding: 1.25rem;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 1.25rem 1.25rem 0 1.25rem;
}

.profile-image {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.profile-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.15rem;
    color: var(--primary-color);
}

.profile-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 1.25rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    height: 55px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

.social-button:hover {
    background-color: #586920;
    transform: scale(1.05);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
}

.social-button i {
    font-size: 1.5rem;
}

.social-button svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        margin-top: 80px;
        padding: 0 0.5rem;
    }

    .card-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
    }

    .main-container {
        padding: 1rem;
    }

    .profile-section {
        padding: 0.75rem 0.75rem 0 0.75rem;
    }

    .social-links {
        padding-bottom: 0.75rem;
    }

    .profile-title {
        font-size: 1.75rem;
        margin-bottom: 0.15rem;
    }

    .profile-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .profile-image {
        width: 6rem;
        height: 6rem;
    }

    .social-button {
        padding: 0.5rem;
        height: 45px;
        font-size: 1.1rem;
    }

    .social-links {
        gap: 0.9rem;
    }
} 