@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
    overflow-x: hidden;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.bg-dark.bg-gradient {
    /* background-color: rgb(255, 250, 244); */
    background-image: var(--bs-gradient)
}

/* Navbar */
.navbar {
    height: 5rem;
    background-color: rgb(254, 243, 230);
    z-index: 10;
}

.navbar-brand,
.navbar-brand:hover {
    font-size: 1.2rem;
    font-weight: 400;
    color: darkblue;
    margin-left: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.dropdown-toggle:focus {
    box-shadow: none;
    outline: none;
}

.accueil,
.story {
    background-color: rgba(0, 0, 0, 0.25);
    background-blend-mode: darken;
}

/* Accueil */

.accueil {
    position: relative;
    background-image: url(./move1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-header,
.accueil-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 70vh;
}

/* Hero */
.hero-container {
    width: 100%;
    min-height: 85vh;
}

.hero-title {
    color: rgb(254, 243, 230);
    font-weight: 500;
    text-shadow: 1px 2px 3px black;
}

.hero-p {}

/* Features */
.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .75rem;
}

/* Footer */
span {
    color: darkblue;
    font-weight: 500;
    cursor: pointer;
}

/* À propos */

.story {
    background-image: url(./move_story1-mart-production-7414919.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.accueil::before,
.story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.accueil>*,
.story>* {
    position: relative;
    z-index: 1;
}

.hero-container p {
    color: rgb(253, 244, 233);
    text-shadow: 2px 1px 2px black;

}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgb(254, 243, 230, 0.9);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.75rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero-container {
        height: auto;
        min-height: 60vh;
        padding-bottom: 3rem;
    }

    .hero-container {
        font-size: 1rem;
    }
}