/* Custom Properties */
:root {
  --primary-color: #FF6600;
  --primary-hover-color: #E65A00;
  --text-dark: #1f2937; /* gray-800 */
  --border-radius-elegant: 0.75rem; /* 12px - for cards, popups */
  --border-radius-btn: 0.5rem; /* 8px - for buttons */
}

/* Global Styles & Fonts */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Button Styles - High End */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: var(--border-radius-btn);
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .btn-primary, .btn-outline {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
  }
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover-color);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
  transform: translateY(-1px);
}

/* Card & Popup Styles */
.card-elegant, .popup-elegant {
  border-radius: var(--border-radius-elegant);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.card-elegant:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Animation Smoothness */
* {
  transition-timing-function: ease-in-out;
}

/* Logo desktop - Grand logo avec header très compact */
@media (min-width: 768px) {
  .logo img {
    height: 7rem !important; /* 112px - Logo bien visible mais plus compact */
  }
  
  /* Suppression quasi-totale des paddings verticaux */
  header .container > div > div {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Réduction de l'espace entre les deux lignes du header */
  header .hidden.md\\:flex.flex-col {
    gap: 0 !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  
  /* Compacter toutes les lignes du header */
  header .flex.justify-between.items-center,
  header .flex.justify-end.items-center {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    min-height: auto !important;
  }
  
  /* Réduire l'espacement des boutons */
  header .space-x-3 {
    gap: 0.5rem !important;
  }
}
