/* image de fond ? */
body.site {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* pour une image fixe et permanente */
    background-image: url('/images/public/base/Fond-avec-des-mots.jpg');
/*background-image: url('/images/public/base/2024-05-20_choeur_Bar_Le_Duc_2.jpg');*/
    background-color: rgba(255,255, 255, 0.8); /* Semi-transparent white color */
    background-blend-mode: multiply;
}
/* test template de copilot 27-08-2025* sans le Fond général */

/* Barre du haut (menu principal) */

.header.container-header.full-width {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.navbar, .header {
  background: linear-gradient(to right, #5e35b1, #ab47bc);
  color: #fff;
  padding: 20px 40px;
  display: flex; /* ← nécessaire */
  flex-direction: column; /* ← pour empiler logo + menu */
  align-items: center;     /* ← pour centrer horizontalement */
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Logo avec effet de zoom */
.brand-logo {
  background: #ffff;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  margin: 0 auto;
}
.brand-logo:hover {
  transform: scale(1.15);
  opacity: 0.9;
  border-bottom: none !important;
}

/* Menu principal */
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.navbar li {
  position: relative;
    
}

.navbar li a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Hover underline */
.navbar li a:hover {
 /* border-bottom: 1px solid #fff;*/
  border-bottom: none !important;
}

/* Dropdown menu */
.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: rgba(255, 255, 255, 0.75); /* plus transparent */
  backdrop-filter: blur(8px); /* effet verre dépoli */
  /*border: 1px solid rgba(255, 255, 255, 0.3);*/
  /*border-radius: 8px;*/
  padding: 10px;
  /*box-shadow: 0 8px 16px rgba(0,0,0,0.1);*/
  z-index: 1000;
}

/* Liens dans le dropdown */
.navbar .dropdown-menu a {
  color: #5e35b1;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .dropdown-menu a:hover {
  /*background-color: rgba(92, 53, 180, 0.1);*/
  color: #ec407a;
}

/* Titres */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #5e35b1;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
}

/* Liens épurés (hors boutons) */
a:not(.btn) {
  color: #5e35b1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  /*border-bottom: 1px solid transparent;*/
}

a:not(.btn):hover {
  color: #ec407a;
  /*border-bottom: 1px solid #ec407a;*/
}

/* Boutons */
.btn {
  background-color: transparent;
  color: #5e35b1;
  padding: 8px 16px;
  border: 2px solid #5e35b1;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #5e35b1;
  color: #fff;
  border-color: #5e35b1;
}

/* Pied de page */
footer {
  background: linear-gradient(to right, #5e35b1, #ab47bc) !important;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 1.1rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}
