@import "https://fonts.googleapis.com/css?family=Dancing+Script";
@import "https://fonts.googleapis.com/css?family=Baumans";
@import "https://fonts.googleapis.com/css?family=Roboto";

/* =========================================
   EN-TÊTE (Approche Mobile-First)
   ========================================= */
.main-header {
  background: url('./IMG/IMG_5517.png') center/cover;
  border-radius: 0 0 5px 5px;
  padding: 20px 15px;
  margin-bottom: 20px;
  height: 19vh;
}

.header-content {
  display: flex;
  flex-direction: column; /* Sur mobile, le logo et le texte s'empilent verticalement */
  align-items: center;
  text-align: center;
  gap: 15px; /* Espacement automatique entre logo et texte */
}

#logo {
  width: 100px; /* Plus petit sur mobile pour gagner de la place */
  height: auto;
  box-shadow: 3px 6px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.title1 {
  font-family: 'Baumans', cursive;
  font-size: 30px;
  color: white;
  margin: 0;
}

.subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: white;
  margin: 0;
  line-height: 1.2;
}

/* =========================================
   NAVIGATION (Approche Mobile-First)
   ========================================= */
.main-nav {
  width: 100%;
  position: relative; /* Le point d'ancrage indispensable */
}
/* =========================================
   LE MENU BURGER (Mobile)
   ========================================= */

/* 1. On cache la vraie case à cocher car elle est moche */
.burger-checkbox {
  display: none;
}

/* 2. On donne un joli style au bouton "Menu" */
.burger-label {
  display: block;
  background-color: rgba(45, 51, 66, 1);
  color: #B5B5B5;
  padding: 12px 15px;
  font-family: 'Baumans', cursive;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  box-shadow: 1.5px 3px 3px rgba(0, 0, 0, 0.16);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.burger-label:hover {
  background-color: rgba(45, 51, 66, 0.8);
  color: white;
}

/* 3. On cache la liste des liens par défaut sur mobile */
.nav-list {
  display: none; /* Toujours caché par défaut */
  
  /* LA MAGIE DE LA SUPERPOSITION */
  position: absolute; 
  top: 100%; /* S'ouvre exactement en dessous du bouton burger */
  left: 0;
  width: 100%;
  z-index: 999; /* Force le menu à passer devant la vignette */
  
  /* Un peu de style pour qu'il soit bien lisible par-dessus le reste */
  background-color: rgba(30, 35, 45, 0.98); /* Fond presque opaque */
  padding: 10px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.6); /* Belle ombre pour le détacher */
  
  list-style: none;
  margin: 0;
  flex-direction: column;
  gap: 2px;
}


/* 4. LA MAGIE : Si la case est cochée, le frère qui a la classe .nav-list s'affiche */
.burger-checkbox:checked ~ .nav-list {
  display: flex;
}

/* =========================================
   RETOUR À LA NORMALE SUR PC (Tablettes et Ordis)
   ========================================= */
@media (min-width: 768px) {
  
  /* On cache le bouton burger car on a la place d'afficher le menu */
.burger-label {
    display: none; 
  }
  
  .nav-list {
    display: flex; 
    
    /* RETOUR À LA NORMALE POUR PC */
    position: static; /* Annule le 'absolute' */
    background-color: transparent; /* Enlève le fond sombre */
    padding: 0; /* Enlève le padding du mobile */
    box-shadow: none; /* Enlève l'ombre */
  }

}

.nav-link {
  display: block;
  padding: 15px; /* Zone de clic plus large pour les doigts (recommandation Google) */
  background-color: rgba(45, 51, 66, 0.7);
  color: #B5B5B5;
  font-family: 'Baumans', cursive;
  font-size: 19px;
  text-decoration: none;
  box-shadow: 1.5px 3px 3px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease; /* Animation fluide au survol */
}

.nav-link:hover, .nav-link:focus {
  background-color: rgba(45, 51, 66, 0.9);
  color: white;
  padding-left: 20px; /* Petit effet sympa au survol */
}

/* =========================================
   ADAPTATION POUR ÉCRANS LARGES (PC & Tablettes)
   ========================================= */
@media (min-width: 768px) {
  /* On remet le logo à gauche et le texte à droite */
  .header-content {
    flex-direction: row; 
    text-align: left;
    padding-left: 30px;
  }
  
  #logo {
    width: 129px; /* Taille originale sur PC */
  }

  .title1 {
    font-size: 35px;
  }
}

/* =========================================
   MISE EN PAGE GLOBALE (CSS GRID)
   ========================================= */

/* Par défaut (Mobile) : 1 seule colonne */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 fraction de l'espace disponible = 100% */
  gap: 20px; /* Espace entre le menu et le contenu */
  padding: 0 10px;
}

/* Zone de contenu principale */
.page-content {
  background-color: rgba(45, 51, 66, 0.85); 
  border-radius: 5px;
  padding: 30px;
  height: 74vh;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  color: #ffffff; /* Le texte principal devient blanc pour être lisible */
  border:none;
  z-index: 1;
}

/* =========================================
   ADAPTATION POUR PC & TABLETTES
   ========================================= */
@media (min-width: 768px) {
  .layout-grid {
    /* Magie du Grid : 2 colonnes ! 
       250px pour le menu à gauche, et 1fr (le reste de l'espace) à droite */
    grid-template-columns: 250px 1fr; 
    align-items: start; /* Empêche le menu de s'étirer jusqu'en bas si le texte à droite est très long */
  }
}
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: #cccccc; 
    border-radius: 5px;
}
body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: gray;
}
html {
  background-color: rgba(45, 51, 66, 0.7);
  overflow-y: auto;
	overflow-x: hidden;
	font-size:16px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	font-family:sans-serif;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%
}
body {
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:14px;
	line-height:1.42857143;
	margin:0;
	background: url("./IMG/TGFM2.jpg") no-repeat center fixed ;
	background-size: cover;
	font-family: Roboto;
  font-size: 16px;
  color: #212121;
  	overflow-y: auto;
	overflow-x: hidden;
}

*{-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}
.list-name2{
  background-color: rgba(45, 51, 66, 1);
  position: fixed;
  height: 40px;
  width: 100%;
  box-shadow: 2px 6px 5px rgba(0,0,0,0.8);
   -webkit-box-shadow: 2px 6px 5px rgba(0,0,0,0.8);
   -moz-box-shadow: 2px 6px 5px  rgba(0,0,0,0.8);
  z-index: 1000;
  left: 0;
  top: 0;
}
 .title {
  height: auto;
  bottom: 10px;
  left: 10px;
  background: rgba(207, 85, 85, 0);
  color:#fff;
  font-size: 20px;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
  position: absolute;
}
.centred-form {
  width: 250px;
  margin: 0 auto;
  padding-top: 50px;
}
.field {
  position: relative;
  min-height: 62px;
  padding: 16px 0 8px;
  margin-top: 10px;
}
.field-label {
  top: 0;
  margin: -45px 0;
  display: block;
  color: #AAA;
  line-height: 62px;
  height: 24px;
  font-size: 16px;
  font-weight: 400;
  transition: font-size .15s, line-height .15s;
}
.field-input{
  position: relative;
  display: block;
  width: 100%;
  padding: 8px 0;
  line-height: 16px;
  font-size: 16px;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  outline: none;
  height: 32px;
  color: #7BBAA4;
}
.field-label::after,
.field::before {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 6px;
  left: 0;
  background-color: #DDD;
}
 .field-label::after {
  bottom: 6px;
  background-color: #2191ea;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.field-input:invalid:focus ~ .field-label,
.field-input:valid ~ .field-label {
  font-size: 12px;
  line-height: 14px;
}
.field-input:focus ~ .field-label {
  color: #2191ea;
}
.field-input:focus ~ .field-label::after{
  transform: scaleX(1);
}
:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
img {
	border:0;
	vertical-align:middle
}
footer {
	background-color: #0a0a0a;
	padding: 50px 0;
	color: #444;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	width: 100%;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
	display:block;
}
menu{
	background-color:transparent;
	display:block;
}
a {
	background-color:transparent;
	color:#337ab7;
	text-decoration:none
}
a:active,a:hover {
	outline:0
}
a:focus,a:hover {
	color:#23527c;
	text-decoration:underline
}
a:focus {
	outline:thin dotted;
	outline:5px auto -webkit-focus-ring-color;
	outline-offset:-2px
}
.txt{
	position: relative;
	float: right;
	width: 100%; 
	border-radius: 5px;
	overflow-y: auto;
	overflow-x: hidden;
	
}
.txt00{
	position: relative;
	background: url(./IMG/IMG_5517.png);
	background-size: cover;
	overflow-y: auto;
	overflow-x: hidden;
	margin-top:5px; 
	padding-bottom:15px; 
	padding-top:5px; 
	width: auto; 
	height: auto; 
	border-radius: 0 0 5px 5px;
}
.title1{
	font-family: 'Baumans';
	font-size: 35px;
	margin-left: 22vh;
}
.frame {
	
}
#logo{
	background: url("./IMG/logo1.png");
	box-shadow: 3px 6px 6px rgba(0, 0, 0, 0.16), 3px 6px 6px rgba(0, 0, 0, 0.23);
	position: absolute;
    left: 12vh;
    width: 122px;
    height: 131px;
}
p{
  color: white;
  text-align: center;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 0px;
  font-family: Dancing Script;
  font-size: 20px;
}
txt::-webkit-scrollbar {
    width: 8px;
}
txt::-webkit-scrollbar-track {
    background: #cccccc; 
    border-radius: 5px;
}
txt::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: gray;
}
.list-group {
	padding-left:0;
	margin-top:7px;
}
.list-group-item{
	position:relative;
	display:block;
	padding:10px 15px;
	margin-bottom:-1px;
	background-color: rgba(45, 51, 66, 0.7);
	box-shadow: 1.5px 3px 3px rgba(0, 0, 0, 0.16), 1.5px 3px 3px rgba(0, 0, 0, 0.23);
}
.list-group-item:first-child {
	border-top-left-radius:4px;
	border-top-right-radius:4px
}
.list-group-item:last-child {
	margin-bottom:0;
	border-bottom-right-radius:4px;
	border-bottom-left-radius:4px
}
a.list-group-item {
	font-family: 'Baumans';
	font-size: 19px;
	color:#B5B5B5;
}
a.list-group-item:focus,a.list-group-item:active{
	color:#B5B5B5;
	text-decoration:none;
	background-color:rgba(45, 51, 66, 1);
	transition-delay: 0s, 0s, 0.25s, 0.25s, 0s;
  transition-duration: 0.25s, 0.25s, 0.5s, 0.5s, 0s;
  box-shadow: 3px 6px 6px rgba(0, 0, 0, 0.16), 3px 6px 6px rgba(0, 0, 0, 0.23);
  z-index: 2;
}
a.list-group-item:hover{
	color:#B5B5B5;
	text-decoration:none;
	background-color:rgba(45, 51, 66, 0.9);
}
.list-group-item.selected {
	z-index:2;
	background-color:rgba(45, 51, 66, 1);
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.list-group-item.active:hover{
	z-index:2;
	color:#fff;
	background-color:rgba(45, 51, 66, 0.9);
}
.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small {
	color:inherit
}
.list-group-item-heading {
	margin-top:0;
	margin-bottom:5px
}
.list-group-item-text {
	margin-bottom:0;
	line-height:1.3
}
/* =========================================
   PAGE ACCUEIL (Contenu spécifique)
   ========================================= */

/* Mobile-First : L'image et le texte s'empilent */
.accueil-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background-color: rgba(30, 35, 45, 0.6); /* Petit encart légèrement plus foncé */
  padding: 20px;
  border-radius: 5px;
}

.accueil-img {
  width: 100%;
  max-width: 250px; /* Limite la taille sur mobile */
  height: auto;
  border-radius: 3px;
  box-shadow: 2px 4px 6px rgba(0,0,0,0.4);
}

.hero-title {
  font-family: 'Baumans', cursive;
  font-size: 24px;
  margin-top: 0;
}

.hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Le bouton "Visiter la boutique" */
.btn-boutique {
  display: inline-block;
  background-color: rgba(45, 51, 66, 1);
  color: #B5B5B5;
  padding: 10px 20px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  border: 1px solid #555;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-boutique:hover {
  background-color: #B5B5B5;
  color: #111;
}
.hero-vinyl {
    background-size: cover;
    background-position: center;
    height: 72vh; /* xx% de la hauteur de l'écran */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #B5B5B5;
}
.hero-content {
    background: rgba(0, 0, 0, 0.5); /* Masque sombre pour la lisibilité */
    padding: 20px;
	font-family: 'Baumans';
    height: 50vh; /* 80% de la hauteur de l'écran */
}
#myVideo {
  position: relative;
  width: inherit;
  height: 35%;
}
/* Adaptation pour Ordinateur : L'image à gauche, le texte à droite */
@media (min-width: 768px) {
  .accueil-hero {
    flex-direction: row; /* Alignement horizontal */
    text-align: left;
    padding: 40px;
  }
  
  .accueil-image-container {
    flex: 0 0 30%; /* L'image prend 30% de la largeur */
  }
  
  .accueil-texte {
	background: rgba(0, 0, 0, 0.5); /* Masque sombre pour la lisibilité */
    padding: 20px;
	font-family: 'Baumans';
    height: 40vh; /* 80% de la hauteur de l'écran */
  }
  
  .hero-title {
    font-size: 30px;
  }
}