/* ===================== STYLES GLOBAUX SHOPINTECH ===================== */

/* ===================== HEADER PROFESSIONNEL ===================== */
:root {
  --header-bg: #295C9C;
  --header-text: #ffffff;
  --accent-orange: #FFA500;
  --hover-orange: #e69500;
  --header-link-hover: #FFA500;
  --primary-blue: #007BFF;
  --text-size: 16px;
}

header.site-header {
  background-color: var(--header-bg);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--header-text);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-family: "Segoe UI", sans-serif;
  font-size: var(--text-size);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header.site-header .logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  letter-spacing: 1px;
}

header.site-header nav a {
  margin-left: 24px;
  color: var(--header-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header.site-header nav a:hover {
  color: var(--header-link-hover);
}

.btn-cta {
  background-color: var(--accent-orange);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
  font-size: 14px;
}

.btn-cta:hover {
  background-color: var(--hover-orange);
}

@media (max-width: 768px) {
  header.site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  header.site-header nav {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  header.site-header nav a {
    margin-left: 0;
  }

  .btn-cta {
    margin-top: 10px;
  }
}


/* ===================== FOOTER PROFESSIONNEL ===================== */
footer.site-footer {
  background-color: #295C9C;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h5,
.footer-col h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #FFA500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
  color: #FFA500;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .container-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}

/* ✅ Fix espace entre lien et dropdown */
.account-dropdown .dropdown-menu {
  margin-top: 0px !important;
  top: 100% !important;
}

/* ✅ Affiche au survol */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/* ✅ Supprime la petite flèche */
.navbar .dropdown-toggle::after {
  display: none;
}

/* Ouvre le menu au survol */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  top: 100%;
}

/* Supprime la flèche Bootstrap */
.navbar .dropdown-toggle::after {
  display: none;
}

/* Réduction de la hauteur des images du carrousel */
#carouselPub .carousel-item img {
    height: 400px;             /* Tu peux ajuster la valeur : 300px, 250px, etc. */
    object-fit: cover;         /* Recadre l’image sans la déformer */
    border-radius: 8px;
}

/* Carrousel centré et limité en largeur */
#carouselPub {
    max-width: 1600px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile (optionnel) */
@media (max-width: 768px) {
    #carouselPub .carousel-item img {
        height: 200px;
    }
}