/* styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
	font-size: 1.1em;
}

/* Bandeau rouge pour la section héroïque */
.hero {
    background-color: #dc3545; /* Rouge Bootstrap utilisé dans "débarras maison" */
    color: #fff; /* Texte blanc pour contraste */
}

/* Bouton primaire ajusté pour cohérence avec le rouge */
.btn-primary {
    background-color: #fff; /* Fond blanc pour contraste sur rouge */
    color: #dc3545; /* Texte rouge */
    border-color: #fff;
}

.btn-primary:hover {
    background-color: #f8f9fa; /* Gris clair au survol */
    color: #dc3545;
    border-color: #f8f9fa;
}

/* Bouton secondaire (optionnel, pour cohérence) */
.btn-secondary {
    background-color: #6c757d; /* Gris par défaut Bootstrap */
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}

/* Footer */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

.container.py-5 {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    overflow: hidden;
}

iframe.photoright {
    display: block;
    width: 100%;
    height: 100%;
}

.iframe-container {
    width: 450px; /* Dimensions exactes */
    height: 300px;
    float: right; /* Si nécessaire */
    margin-left: 20px; /* Ajustez selon votre design */
    overflow: hidden; /* Empêche tout débordement */
}
iframe.photoright {
    display: block;
    width: 100%;
    height: 100%;
    border: 0; /* Redondant avec frameborder, mais clarifie */
}