/* styles.css */

/* Personnaliser la barre de navigation */
.navbar-brand {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

/* Section Héros */
header {
    background-image: url('../assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
}

header .container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Pied de page */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Formulaire de contact */
#formMessage {
    display: none;
}

/* styles.css */

/* Ajuster la hauteur des images du carousel */
.carousel-item img {
    height: 250px; /* Ajustez selon vos besoins */
    object-fit: cover;
}

/* Personnaliser les indicateurs du carousel */
.carousel-indicators [data-bs-target] {
    background-color: #ffffff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}
/* Styles pour le logo */
.logo-container {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000; /* Assurez-vous que le logo reste au-dessus des autres éléments */
}

.logo {
    width: 70px; /* Ajustez la taille selon vos besoins */
    height: 50px;
}

/* Couleur de fond générale */
body {
    background-color: #3b5d5e;
    color: #ffffff; /* Couleur du texte en blanc pour le contraste */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* Exemple de carte ou de conteneur */
.card {
    background-color: #3b5d5e; /* Légèrement plus clair pour se démarquer */
    border: none;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Boutons */
.btn {
    background-color: #ffffff;
    color: #3b5d5e;
    border: 1px solid #ffffff;
}

.btn:hover {
    background-color: #3b5d5e;
    color: #ffffff;
    border-color: #ffffff;
}

/* Liens */
a {
    color: #697a75; /* Couleur complémentaire pour les liens */
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}
/* Carousel */
.carousel {
    background-color: #3b5d5e;
}

.carousel-caption {
    background: rgba(52, 96, 61, 0.7); /* Semi-transparent pour faire ressortir le texte */
    color: #ffffff;
}
.whatsapp-icon {
    font-size: 40px;          /* Adjust the size */
    color: #25D366;           /* WhatsApp green color */
}

.whatsapp-icon:hover {
    color: #128C7E;           /* Darker shade on hover */
}
.smartphone-icon {
    font-size: 40px;         /* Adjust the size */
    color: #555;             /* Customize the color */
}

.smartphone-icon:hover {
    color: #000;             /* Darken color on hover */
}

.stripe {
    flex: 1;               /* Ensure equal width for each stripe */
}
.zoomable {
    cursor: zoom-in;
}

/* Style pour ajuster la modale d'affichage d'image */
.modal-dialog img {
    max-width: 100%;
    height: auto;
}
.whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.whatsapp-button:hover {
    background-color: #128C7E; /* Darker green on hover */
}


