/* Styles pour l'optimisation SEO */

/* Breadcrumbs */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px; /* Compensation pour la navbar fixed */
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Hero sections pour pages internes */
.hero-small {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('/img/auberge-anglefort-facade.webp');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
}

.hero-small .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-small h1, .hero-small .lead, .hero-small .display-4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white !important;
}

/* Optimisations mobile */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0.5rem 0;
        margin-top: 70px;
    }
    
    .hero-small {
        min-height: 300px;
        margin-top: 70px;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
    }
}

/* Styles pour FAQ */
.accordion-button:not(.collapsed) {
    background-color: #e7f3ff;
    color: #0c63e4;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Styles pour améliorer la lisibilité SEO */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Schema.org friendly content styling */
.schema-content {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.img-optimized {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.img-optimized:hover {
    transform: scale(1.02);
} 