/* seance.css */

/* Importer le CSS principal */
@import url('./styles.css');

:root {
    --color-primary: #4527a0; /* Indigo-violet */
}

header, footer {
    background: linear-gradient(135deg, var(--color-primary), #3949ab);
}

h1 {
    font-family: var(--font-subheading); /* Righteous au lieu de Rubik Moonrocks */
    font-size: 3.4rem;
}

/* Ajustement du bouton au survol */
.session-link:hover {
    background-color: #0288d1; /* Bleu un peu plus foncé au survol */
}

@media (max-width: 1200px) {
    header {
        min-height: 195px;
    }
    
    .header-content {
        margin-top: 0;
    }
    .breadcrumb {
        position: relative;
        top: 0;
        left: 0;
        width: fit-content;
        margin: 10px auto -12px;
    }
    .subtitle {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.9rem;
    }
    h1::after {
        display:none;
    }
    .breadcrumb {
        position: relative;
        top: 0;
        left: 0;
        width: fit-content;
        margin: 10px auto 0;
    }
}

@media (max-width: 670px) {
    h1 {
        font-size: 2.5rem;
    } 
}

@media (max-width:576px) {
    h1 {
        font-size: 1.9rem;
    }
    .intro {
        margin-top: -6rem;
    }
}

@media (max-width: 440px) {
    .breadcrumb {
        display: none;
    }
    header {
        min-height: 185px;
    }
}

.buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(33, 150, 243, 0.15);
    color: var(--color-accent);
    transition: var(--transition-standard);
}

.download-link:hover {
    background-color: var(--color-accent);
    transform: scale(1.1);
}

.download-link img {
    width: 20px;
    height: 20px;
    filter: invert(47%) sepia(92%) saturate(1423%) hue-rotate(180deg) brightness(98%) contrast(96%);
    transition: var(--transition-standard);
}

.download-link:hover img {
    filter: invert(100%);
}

/* Pour préserver le comportement existant du bouton principal */
.session-link {
    margin-top: 0;
}