/* Styles de base pour la page d'accueil */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Comfortaa', sans-serif;
    background: url('../images/index_background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.content-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.content-container:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.content-container:hover .logo-container img {
    opacity: 0.8;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 500px;
    width: 90vw;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.description {
    color: #333;
    line-height: 1.6;
    font-weight: 300;
    font-size: 1.1rem;
    padding: 0 20px;
}

.description .line1 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.description .line2 {
    font-size: 0.95rem;
} 