@import './reset.css';
@import './remixicon.css';

/* Style minimaliste blanc avec texte noir utilisant des classes */
:root {
    --background-color: #ffffff;
    --text-color: #000000;
    --text-secondary-color: #666666;
    --max-width: 800px;
    --spacing-unit: 1.5rem;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-unit);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: var(--spacing-unit);
}

.tagline {
    font-size: 1.1rem;
    max-width: 500px;
    color: var(--text-color);
}

.location {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    font-weight: 400;
}

.social-section {
    margin-top: var(--spacing-unit);
}

.social-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-unit);
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link i {
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .site-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .location {
        font-size: 0.8rem;
    }

    main {
        padding: calc(var(--spacing-unit) * 0.75);
    }
}