/* Module Aromex - Styles de base */

/* Import des variables globales */
@import url("aromex-variables.css");

body {
  font-family: var(--aromex-font-family-primary);
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

/* Reset et base */
.aromex-module {
  font-family: var(--aromex-font-family-primary);
  box-sizing: border-box;
}

.aromex-module *,
.aromex-module *::before,
.aromex-module *::after {
  box-sizing: inherit;
}

/* Utilitaires communs */
.aromex-hidden {
  display: none !important;
}

.aromex-visible {
  display: block !important;
}

.aromex-text-center {
  text-align: center;
}

.aromex-text-left {
  text-align: left;
}

.aromex-text-right {
  text-align: right;
}

/* Boutons de base */
.aromex-btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.aromex-btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.aromex-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

/* Responsive helpers */
@media (max-width: 768px) {
  .aromex-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .aromex-hide-desktop {
    display: none !important;
  }
}

/* Masquer uniquement les éléments de navigation par défaut */
#header .header-nav,
#header .header-top {
  display: none !important;
}

/* Styles pour le contenu principal */
#wrapper {
  padding-top: 80px;
  display: block !important;
  background: transparent;
}

#content-wrapper,
#main {
  display: block !important;
  background: transparent;
}

.aromex-home {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aromex-home-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.aromex-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
}
