/* GLOBAL STYLES
-------------------------------------------------- */
:root {
    --bs-body-bg: #C7E4E8;
    --bs-body-font-size: 1.25rem;
}
.navbar-brand,
.navbar-brand:visited,
.navbar-brand:active,
.navbar-brand:focus,
.navbar-brand:hover {
    color: var(--bs-body-color) !important;
    font-size: 2rem;
    text-decoration: none;
}

body {
    background-image: url('../images/background.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.card {
    background-color: rgba(255, 255, 255, 0.8);
}

.navbar-logo-circle {
    background: var(--bs-body-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.navbar-logo-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: 30rem;
}

.carousel-caption {
    top: 35%;
}

    @media (min-width: 40em) {
        /* Bump up size of carousel content */
        .carousel-caption p {
            margin-bottom: 1.25rem;
            font-size: 1.25rem;
            line-height: 1.4;
        }
    }

    .bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

#description {
    height: 100%;
    text-align: justify;
}

#description h1{
    margin-bottom:1rem;
}

.haiku-text p {
    font-family: 'Merriweather', serif;
    color: #232428;
    font-size: 1.5rem;
}
/* Footer fixe sur desktop, normal sur mobile */
.responsive-fixed-footer {
    position: static;
    bottom: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .responsive-fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1030;
    }
}