 body { font-family: 'Oswald', sans-serif; background: #f2f2f2; color: #333; }
 
    .banner h1 {
      background: rgba(0,0,0,0.7);
      color: #fff;
      padding: 20px 40px;
      font-size: 2.2rem;
      border-left: 6px solid #E0823A;
    }
.profile-card {
  background: #111;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  padding: 30px;
  margin-top: -60px;
}
   .profile-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #E0823A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.profile-photo:hover {
  transform: scale(1.02);
}

.badge-membership {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 12px;
}
.text-orange {
  color: #E0823A;
}

    .btn-orange {
      background: linear-gradient(45deg, #E0823A, #D46F28);
      color: #fff;
      border-radius: 25px;
      border: none;
    }
    .section-title {
      font-size: 1.5rem;
      color: #E0823A;
      margin-top: 50px;
      margin-bottom: 20px;
      font-weight: bold;
    }
    .card-section {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      margin-bottom: 30px;
    }
.simcoins-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #111; /* Fond noir élégant */
  border: 4px solid #E0823A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #E0823A;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease-in-out;
}

.simcoins-circle:hover {
  transform: scale(1.07);
}

.simcoins-value {
  line-height: 1;
}

.btn-orange {
  background: linear-gradient(45deg, #E0823A, #D46F28);
  color: #fff;
  border-radius: 25px;
  border: none;
}
.btn-orange:hover {
  background: #cf651b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(208, 102, 0, 0.3);
}

    .badge-membership {
      margin-top: 10px;
      padding: 5px 15px;
      font-weight: bold;
    }
    .text-orange { color: #E0823A; }
    .section-empty {
      font-style: italic;
      color: #999;
    }
    .section-empty {
  font-style: italic;
  color: #999;
}
.footer {
  background-color: #000 !important; /* Noir pur */
  font-size: 0.95rem;
}

.footer-icon {
  color: #E0823A;
  font-size: 1.4rem;
  transition: transform 0.3s, color 0.3s;
}

.footer-icon:hover {
  transform: scale(1.2);
  color: #ffffff;
}

.text-orange {
  color: #E0823A !important;
}

.badge {
  font-size: 0.9rem;
  padding: 0.5em 1em;
  border-radius: 12px;
}
/* Animation fade-in */
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.fade-in-delayed {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* Slide-up au chargement */
.slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.loader {
  width: 40px;
  height: 40px;
  border: 5px solid rgba(255,255,255,0.2);
  border-top-color: #E0823A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.text-orange {
  color: #E0823A !important;
}
.nav-link.text-orange:hover {
  color: #cf651b !important;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

/* Hover léger */
.card:hover,
.btn:hover,
.simcoins-circle:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

       .banner {
      
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
background: url('<?= htmlspecialchars($user['banner'] ?? "https://thesimpower.be/assets/images/home.avif") ?>') center/cover no-repeat;



    }

    @media (max-width: 767px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .simcoins-circle {
    margin-bottom: 20px;
  }
}
.reservation-card {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.reservation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.bg-orange-light {
  background: linear-gradient(135deg, #E0823A 0%, #ffbb66 100%);
}
.text-orange {
  color: #E0823A;
}
.fade-in {
  animation: fadeIn 0.7s ease forwards;
  opacity: 0;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
    .footer {
      background-color: #000;
      color: white;
      text-align: center;
      padding: 40px 0;
    }
    .footer a {
      color: #E0823A;
      margin: 0 10px;
      font-size: 1.4rem;
    }
    .footer a:hover {
      color: #fff;
    }

  </style>