/* styles.css */

/* Style global */
body {
    background-color: black;
    /*color#: e2b0a7;*/
    color: #e2b0a7;
}

/* police pour les icones bath, parking, etc */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Ajustez la taille selon vos besoins */
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.inline-items {
    display: inline-flex;
    align-items: center;
}

.inline-items .material-symbols-outlined {
    margin-right: 5px; /* Ajustez l'espacement selon vos besoins */
}


.bg-image {
  height: 60vh; /* 75% de la hauteur de la fenêtre */
  /*width: 100%; /* Largeur complète */
  object-fit: cover; /* Couvre toute la zone sans déformation */
}

/* Style pour le menu */
.navbar {
    background-color: black;
}

.navbar-nav .nav-link {
    color: #e2b0a7;
}

.navbar-nav .nav-link:hover {
    color: orange;
}

.navbar-nav .nav-link.active {
    color: orange; /* Remplacez par la couleur de survol souhaitée */
    background-color: transparent; /* Assurez-vous que le fond est transparent si nécessaire */
    /*souligné*/
    text-decoration: underline;
}

.dropdown-menu {
    background-color: black;
}
.dropdown-item {
    color: #e2b0a7;
}
.dropdown-item:hover {
    color: orange;
    background-color: transparent;
}

/* Style pour le pied de page */
footer {
    background-color: black;
    color: #e2b0a7;
    padding: 20px 0;
}

footer a {
    color: #e2b0a7;
    text-decoration: none;
}

footer a:hover {
    color: orange;
    text-decoration: underline;
}

/* Effet de zoom sur les images des propriétés au survol */
.property-card img {
    transition: transform 0.3s ease;
}

.property-card img:hover {
    transform: scale(1.05);
}

/* Animation des textes principaux */
.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour les boutons et les formulaires */
.btn-primary {
    background-color: orange;
    border: none;
}

.btn-primary:hover {
    background-color: darkorange;
}

.form-control {
    background-color: #222;
    color: #e2b0a7;
    border: 1px solid #555;
}

.form-control:focus {
    background-color: #333;
    color: #e2b0a7;
    border-color: orange;
}

/* Autres styles personnalisés */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    background-size: 100%, 100%;
}
