/* Bootstrap via CDN - les styles seront ajoutés via le CDN dans le template */
/* Animate.css via CDN - les styles seront ajoutés via le CDN dans le template */

body {
    background: linear-gradient(135deg, #e5bc9f, #d87416);
    min-height: 100vh;
    color: white;
    padding-bottom: 100px;
    /* Pour éviter que le footer ne couvre le contenu */
}

.odora-logo {
    max-width: 300px;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.odora-logo:hover {
    transform: scale(1.05);
}

.social-icon {
    font-size: 2rem;
    margin: 0 15px;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #f8f9fa;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.btn-download {
    margin-top: 20px;
}

.social-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    /* Espacement entre les icônes */
    margin: 40px 0;
}

.social-card {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}