body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
}

/* NAVBAR */
.custom-navbar {
  background: transparent;
  border: none;
  transition: 0.3s;
}

.custom-navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* HERO */
.hero {
  background: url('../img/bg.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: white;
}

.overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 60px;
  font-weight: bold;
}

.hero p {
  font-size: 20px;
  margin: 20px 0;
}

/* SECTIONS */
section {
  padding: 80px 0;
}

/* TITRES */
h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

/* CARDS */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-10px);
}

/* IMAGES */
img {
  border-radius: 10px;
}

/* BOUTON */
.btn-danger {
  background: #d60000;
  border: none;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
}

.login-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
}

.login-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
}

.login-box input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.login-box button {
  width: 100%;
  padding: 10px;
  background: #d60000;
  color: white;
  border: none;
}

.stats {
  background: #111;
  color: white;
  padding: 60px 0;
}

.stats h2 {
  font-size: 40px;
  font-weight: bold;
}

.stats p {
  font-size: 16px;
  opacity: 0.8;
}

.stats-pro {
  background: #fff;
  padding: 70px 0;
}

.stats-pro h2 {
  font-size: 45px;
  font-weight: bold;
  color: #d60000;
}

.stats-pro p {
  font-size: 16px;
  color: #555;
}

.logo {
  height: 40px;
  width: auto;
}

.navbar-brand {
  padding: 5px 15px;
}


/* NAVBAR NOIRE */
.custom-navbar {
  background: #000 !important;
  border: none;
}

/* LIENS BLANCS */
.custom-navbar .navbar-nav > li > a {
  color: #fff !important;
  font-weight: 500;
}

/* LOGO TEXTE (si utilisé) */
.custom-navbar .navbar-brand {
  color: #fff !important;
  font-weight: bold;
}

/* HOVER (effet pro) */
.custom-navbar .navbar-nav > li > a:hover {
  color: #d60000 !important;
}

/* BOUTON DEVIS */
.custom-navbar .btn-danger {
  background: #d60000;
  color: #fff !important;
}

/* BURGER (mobile) */
.navbar-toggle .icon-bar {
  background-color: #fff;
}