

:root {
    --orange-ci: #f77f00;
    --green-ci: #009739;
    --gray-bg: #f8f9fa;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray-bg);
}

.text-primary{
    color: var(--orange-ci) !important;
}
/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.navbar-brand span {
    color: var(--orange-ci);
    font-weight: 700;
}

/* Hero section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)),
                url('../../assets/img/bg-tout-est-decrou-ici.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 160px 20px;
    z-index: 1;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}
.hero .btn {
    margin: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}
.btn-orange {
    background-color: var(--orange-ci);
    color: #fff;
}
.btn-orange:hover {
    background-color: #e86d00;
}
.btn-green {
    background-color: var(--green-ci);
    color: #fff;
}
.btn-green:hover {
    background-color: #017a2f;
}

/* Search section */
.search-section {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    margin-top: -60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 5;
}

/* Champ de formulaire */
.search-section .form-control {
  border-radius: 10px;
  border: 1px solid #ced4da;
  transition: 0.3s ease-in-out;
}

.search-section .form-control:focus {
  border-color: #009e60;
  box-shadow: 0 0 0 0.2rem rgba(0, 158, 96, 0.15);
}

/* Bouton de recherche */
.search-section .btn-success {
  background-color: #009e60;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  padding: 0.6rem 1rem;
  transition: background-color 0.3s ease;
}

.search-section input::placeholder,
.search-section textarea::placeholder,
.search-section select::placeholder {
    color: #999;
    font-style: italic;
    opacity: 1;
    font-size: small;
}

.search-section .btn-success:hover {
  background-color: #007f4f;
}

/* Object cards */
.object-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.object-card:hover {
    transform: translateY(-5px);
}
.object-card img {
    height: 180px;
    object-fit: cover;
}

/* How it works */
.how-it-works {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 20px;
    margin-top: 80px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.how-it-works .icon {
    font-size: 2.5rem;
    color: var(--orange-ci);
    margin-bottom: 15px;
}

header {
    position: relative;
    background: linear-gradient(90deg, #f77f00, #009e60);
    color: white;
    padding: 5rem 0;
}
header h2 {
    padding-top: 2.3rem;
    font-size: 2.5rem;
    font-weight: 700;
}
.form-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 2rem;
}
.btn-orange {
    background-color: #f77f00;
    border: none;
    color: white;
}
.btn-orange:hover {
    background-color: #e96e00;
}

/* Footer */
footer {
    background: linear-gradient(90deg, var(--orange-ci), #fff, var(--green-ci));
    color: #222;
    padding: 25px 0;
    text-align: center;
    font-weight: 500;
}
footer a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
}
footer a:hover {
    color: var(--orange-ci);
}