/* ============================================================
   NAVIGATION & BARRE PROMO - SEVY CRÉATIONS BOIS
   Dernière modification : 2026-04-29 13:01
   Version: 1.0.2
============================================================ */

:root {
  --bois:         #8B5E3C;
  --bois-sombre:  #5C3D20;
  --bois-clair:   #C4945A;
  --beige:        #F5F0E8;
  --blanc:        #FDFAF6;
  --noir-doux:    #2C2420;
}

/* ============================================================
   BARRE PROMO (STATIQUE en haut, pas fixed)
============================================================ */
.barre-promo {
  position: relative; /* CHANGÉ : plus de fixed */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(135deg, #D4945A 0%, #C17A3A 100%);
  color: #FDFAF6;
  text-align: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.barre-promo:hover {
  background: linear-gradient(135deg, #C17A3A 0%, #A66830 100%);
  color: white;
}

.barre-promo span {
  display: inline-block;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.barre-promo strong {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
}

/* ============================================================
   FOOTER PERSONNALISÉ
============================================================ */
.sevy-footer {
  background: #1E1611;
  color: #E5DDD3;
  padding: 56px 28px 28px;
  width: 100%;
}

.footer-in {
  max-width: 1160px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 13px;
  color: #A89B8E;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: #C9BFB3;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #F5F0E8;
}

.footer-bas {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8B7D6F;
  gap: 24px;
}

.footer-bas nav {
  display: flex;
  gap: 20px;
}

.footer-bas a {
  color: #A89B8E;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bas a:hover {
  color: #C9BFB3;
}

/* ============================================================
   RESPONSIVE TABLETTE
============================================================ */
@media (max-width: 960px) {
  .footer-in {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bas {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bas nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================
   RESPONSIVE MOBILE
============================================================ */
@media (max-width: 560px) {
  .barre-promo {
    font-size: 12px;
    min-height: 40px;
    padding: 0 16px;
  }

  .sevy-footer {
    padding: 40px 20px 20px;
  }
}
