#hero::before {
    background-image: url("/assets/imgs/location-vue-mer.png");
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #1B3A57;
}

h3 {
    font-family: 'Raleway', sans-serif;
    color: #1B3A57;
}

h4 {
    font-family: 'Raleway', sans-serif;
    color: #1B3A57;
    font-size: 1.3rem;
}

p {
    font-family: 'Raleway', sans-serif;
    color: #1B3A57;
}

footer p {
    color: white;
}

#services {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
    color: #1B3A57;
    scroll-margin-top: 80px;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 20px;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    color: #1B3A57;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
}

#offres {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
    font-family: sans-serif;
    color: #1B3A57;
}

.offers-intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.offers-intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.formule {
    background-color: #fff;
    padding: 20px;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto 40px auto;
    font-size: 1.5rem;
}

.offers-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .offers-cards {
        justify-content: space-around;
    }
}

.offer-card {
    background-color: #fff;
    padding: 25px 20px;
    margin-bottom: 50px;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-card h4 {
    margin-bottom: 20px;
    font-style: italic;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 15px;
}

.offer-card ul li {
    margin-bottom: 8px;
}

.offer-price {
    font-size: 1.1rem;
    font-weight: bold;
    font-style: italic;
    margin-top: 10px;
}

.formule-card-container {
    display: flex;
    justify-content: center;
}

.formule-card {
    padding-inline: 50px;
}

.section-separator {
    width: 50%;
    height: auto;
}

@media (min-width: 768px) {
    .section-separator {
        width: 20%;
    }
}

.options span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.options-container,
.packs-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* Card individuelle option/pack */
.options-card {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}


@media (min-width: 768px) {
    .options {
        width: 75%;
        max-width: 650px;
    }

    .options-card,
    .formule-card {
        min-height: 120px;
        min-width: 175px;
    }

    .pack-card {
        min-height: 170px;
    }

    .options-card:last-child {
        min-height: 100px;
    }

    .full-pack {
        min-height: 100px;
        width: 100%;
        min-width: 555px;
    }
}

.options-card h4 {
    margin-bottom: 5px;
}

.options-card h4 {
    margin-bottom: 20px;
}

.options-card ul {
    list-style: none;
    padding: 0;
}

.options-des {
    margin: 0;
    padding-bottom: 10px;
}

.options-price {
    font-weight: bold;
    font-style: italic;
    margin-top: auto;
    margin-bottom: 0;
}

.options-price:last-child {
    margin-top: 0;
}

.full-pack {
    height: auto;
}


@media (min-width: 768px) {

    .packs-container,
    .options-container {
        gap: 15px;
        justify-content: space-between;
        width: 100%;
        margin-inline: 0;
    }

    .pack-card {
        padding: 15px;
    }

    .options-card p,
    .pack-card p {
        font-size: 0.85rem;
    }
}