/* Menu de navigation */
/* Styles globaux */
.custom-header {
    background-color: #1a2345; /* Couleur de fond */
    padding: 15px 0;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
  }

  /* Centrer le contenu du header */
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Logo */
  .logo img {
    height: 40px;
  }

  /* Navigation */
  .nav-menu {
    display: flex;
    justify-content: center;
    flex: 1; /* Prend tout l'espace restant */
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Espacement entre les liens */
    padding: 0;
    margin: 0;
  }

  .nav-menu ul li {
    display: inline-block;
  }

  .nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px; /* Espace entre l'icône et le texte */
    transition: color 0.3s ease;
  }

  .nav-menu a i {
    font-size: 20px;
  }

  .nav-menu a:hover {
    color: #f6c953; /* Couleur dorée au survol */
  }

  /* Section spécifique à la page Propriété */
  .propriete-section {
    background-color: #f8f9fc;
  }

  /* Tabs de navigation */
  .propriete-tabs .propriete-tab {
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: black;
    border: 1px solid transparent;
    justify-content: space-between;
  }

  .propriete-tabs .propriete-tab.active {
    background-color: white;
    color: black;
  }

  /* Styles des cartes */
  .propriete-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
  }

  .propriete-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .propriete-card-img-container {
    position: relative;
  }

  .propriete-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .propriete-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: white;
    color: black;
    border: 1px solid  #fff972;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
  }

  .propriete-card-body {
    text-align: center;
    padding: 15px;
  }

  .propriete-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .propriete-card-price {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
  }

  .propriete-card-profit {
    font-size: 14px;
    color: #1a2345;
    background-color: #e9ecef;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
  }

  .propriete-card-interest {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
  }

  .propriete-card-btn {
    display: block;
    width: 100%;
    background-color: #ffc107;
    color: black;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 3px solid  #fff972;
  }

  .propriete-card-btn:hover {
    background-color: #d4a017;
    color: white;
  }

