/**
 * Landing Page (index.php)
 * Styles spécifiques à la page d'accueil principale
 */

.landing-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.landing-main {
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
}

.landing-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Navigation Cards */
.nav-card {
  text-decoration: none;
  color: inherit;
  border-top: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-3px);
}

.nav-card[data-color="primary"] { border-top-color: var(--primary); }
.nav-card[data-color="success"] { border-top-color: var(--success); }
.nav-card[data-color="warning"] { border-top-color: var(--warning); }
.nav-card[data-color="purple"]  { border-top-color: #9B59B6; }
.nav-card[data-color="facebook"] { border-top-color: #1877F2; }

/* Featured cards */
.featured-card {
  overflow: hidden;
}

/* Info Cards */
.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 576px) {
  .landing-logo {
    height: 40px;
  }
  .featured-card .card-body {
    padding: 0.5rem !important;
  }
  .featured-card h6 {
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .landing-logo {
    height: 60px;
  }
}
