/* Styles spécifiques pour la page d'accueil */
/* Background landing page avec image
.home-background {
    background-image: url('../images/backgrounds/image-003.jpg');
    
}*/
.home-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* ou selon la hauteur souhaitée */
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none; /* pour éviter que la vidéo bloque les clics */
}

.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: var(--primary-color);
}

.home-title {
  padding: 20px;

}

.home-title h1 {
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 10px;
  letter-spacing: 2px;

}

.location {
  font-size: 1rem;
  letter-spacing: 1px;
}


/* Styles spécifiques pour la page La Cuvée */
body.la-cuvee {
  /*background-image: url('../images/backgrounds/image-006.jpg');*/
  background: white;
  overflow: auto;
}

/* PAGE LA CUVEE */
.la-cuvee_body {
  margin: 0;
  color: #000000;
}

/* Ajout d'un margin-top au main pour compenser la hauteur du header */
.la-cuvee_page-container {
  margin-top: 120px;
}

/* STRUCTURE PRINCIPALE : Texte gauche, images scrollables, texte droit */
.la-cuvee_product-container {
  display: block;
  align-items: flex-start;
  padding: 0px 40%;
}

/* Colonnes latérales collées grâce à sticky */
.la-cuvee_product-left,
.la-cuvee_product-right {
  position: fixed;
  top: 55%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1.6;
  justify-content: center;
  height: auto;
  z-index: 10;
  padding: 20px;
  max-width: 30%;
}

.la-cuvee_product-left {
  left: 3%;
  text-align: left;
}
.la-cuvee_product-left h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.la-cuvee_product-left h2{
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Topol';
  margin-bottom: 3px;

}
.la-cuvee_product-left p{
  font-size: 0.8rem;
  line-height: 1.6;
  text-transform: uppercase;
  font-family: 'Topol';
}
.la-cuvee_textp2{
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 30px; /* ou ce que tu veux */
}
.la-cuvee_downloadp2{
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 30px; /* ou ce que tu veux */
  justify-content: start;
  align-items: flex-end;
}
.download-btn{
  color: grey;
  font-size: 0.6rem;
  padding-bottom: 2px;
  padding-left: 5px;
}
.la-cuvee_dropdown-container {
  position: relative;
  max-width: 100%;
  margin: 20px 0;
}

.la-cuvee_dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Topol';
  color: #000;
}

.la-cuvee_dropdown-line {
  border-bottom: 1px solid black;
  margin: 8px 0;
}

.la-cuvee_dropdown-content {
  display: flex;
  flex-direction: column; /* pour empiler les éléments verticalement */
  justify-content: space-between; 
  overflow: hidden;
  position: absolute;
  max-height: 0;
  opacity: 0;
  width: 100%;
  transform: translateY(0px);
  transition: transform 0.4s ease-in, opacity 0.4s ease, max-height 0.8s ease;
  pointer-events: none;
}
.la-cuvee_dropdown-content.active {
  opacity: 1;
  pointer-events: auto;

}

.la-cuvee_arrow {
  display: inline-block;
  transition: transform 0.6s ease-out;
}
.la-cuvee_arrow.rotated {
  transform: rotate(180deg);
}


.la-cuvee_product-right {
  right: 9%;
}


.la-cuvee_product-price {
  font-size: 20px;
  margin: 20px 0;
}
.la-cuvee_text-dropdown{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.la-cuvee_btn {
  display: flex;
  background: black;
  color: white;
  padding: 25px 60px;
  text-align: center;
  text-transform: uppercase;
  border: 1px, solid, #000;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Topol';
  font-size: 0.9rem;
  transition: color 1s ease, background-color 0.5s ease;

}
.la-cuvee_btn:hover {
  background-color: white;
  border: 1px, solid, #000;
  color: #000;
  transition: color 1s ease, background-color 0.5s ease;
}


/* GALERIE D’IMAGES AU CENTRE, SCROLLABLE DANS LE FLUX GLOBAL */
.la-cuvee_vertical-gallery {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.la-cuvee_vertical-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



/*LA MAISON*/
.maison-histoire img{
  max-width: 100%;
}

.maison-histoire{
  display: grid;
  justify-items: stretch;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  font-family: 'Topol';
  padding-top: 40px;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 100px;
  gap: 5%;
  row-gap: 2%;

}
.maison-histoire .text p{
  font-size: 0.8rem;
  text-align: justify;
  text-transform: uppercase;

}
.maison-histoire .text {
  align-self: center;
}

.maison-histoire .noms h3{
  text-transform: uppercase;
  font-family: 'Topol';
  font-size: 1rem;
}
.maison-histoire .maison-subtitle{
  font-size: 0.8rem;
  font-family: 'Topol';
  text-align: justify;
  text-transform: uppercase;
  grid-column: 1 / -1;        /* s'étend sur toutes les colonnes */
  justify-self: center; 
}
.maison-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.maison-gallery-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.maison-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  object-fit: cover;
}

.maison-caption {
  margin-top: 10px;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: 1rem;
  text-align: start;
  color: #333;
  display: none;
}


/* Styles spécifiques pour la page Le Potager */
.potager-background {
  background-image: url('../images/backgrounds/image-030.jpg');
}

/* Styles spécifiques pour la page Inspirations */
.inspirations-background {
  background-image: url('../images/backgrounds/image-031.jpg');
}

/* Styles spécifiques pour la page Musique */
.musique-background {
  background-image: url('../images/backgrounds/image-034.jpg');
}

/* Styles spécifiques pour la page Contact */
.contact-background {
  background-image: url('../images/backgrounds/image-036.jpg');
}

/* Styles communs pour les arrière-plans */
.page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

/* Styles pour les images de vin */
.wine-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styles pour les images de la maison */
.maison-image {
  margin-bottom: 2rem;
}

.maison-image img {
  height: auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styles pour la galerie d'inspirations */
.inspiration-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.inspi-gallery-item {
  position: relative;
  border-radius: 4px;
}

.inspi-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* STYLE PAGE MUSIQUE */
.music_body{
background-color: var(--accent-orange);
font-family: 'Topol';
text-align: center;
color: white;
overflow-y: auto;
}
.music-body-logo{
width: 15%;
}
.music_body .text{
text-transform: uppercase;
text-align: justify;
width: 60%;
justify-content: baseline;
padding-top: 2%;
}
.music_body .today{
text-transform: uppercase;
padding-top: 3%;
}

.music_body .playlist-description{
display: flex;
flex-direction: column;
align-items: center;
}
.music-content{
display: flex;
flex-direction: column;
align-items: center;
}
/* Styles pour la playlist YouTube */
.music-widget-container {
  display: flex;
  flex-direction: row;
  width: 50%;
  height: 500px;
  overflow: hidden;
  margin-top: 20px;
  gap: 10px;
}

.music-widget-player {
  flex: 3;
  background-color: #000;
  border-radius: 6px;
  display: none;
}

.music-widget-playlist {
  flex: 1;
  overflow-y: auto;
  background-color: #0f0f0f;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* Internet Explorer 10+ */
}

.music-widget-playlist::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, Edge */
}

.music-widget-title {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 16px;
  padding-bottom: 5px;
  font-size: 100%;
  font-family: 'Topol';
  color: #ffffff;
  text-decoration: none;
  background-color: #212121;
  border-bottom: 1px #000;

}
.music-control{
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 10px;
  font-size: 100%;
  font-family: 'Topol';
  color: #ffffff;
  text-decoration: none;
  background-color: #212121;
  border-bottom: 1px #000;
  display: flex;
  justify-content: center;

}


.music-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
}

/* ▶️ État par défaut (lecture) */


.music-play-btn.play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid black;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateX(15%);
}

/* ⏸️ État pause */
.music-play-btn.pause::before,
.music-play-btn.pause::after {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: black;
  position: absolute;
  top: 10px;
}

.music-play-btn.pause::before {
  left: 33%;
}

.music-play-btn.pause::after {
  left: 55%;
}



.music-video-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;

}

.music-video-item:hover {
  background-color: #808080;
}

.music-video-thumb {
  width: 90px;
  height: 50px;
  margin-right: 12px;
  border-radius: 4px;
  object-fit: cover;
}

.music-video-title {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

/* Styles pour le formulaire de contact */
.contact_container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.contact_centered-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: center;
}

.contact_names {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Topol';
  font-size: 1.2rem;
}

.contact_title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.contact_adresse {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Topol';
}

.contact_email a {
  color: var(--accent-orange);
  text-decoration: underline;
  font-weight: 600;
  font-family: 'Topol'
}

.contact_phones {
  font-weight: 500;
  font-size: 14px;
  margin-top: 0px;
  font-family: 'Topol'
}
.contact_raisin{
  width: 10%;
}
.contact_links{
  font-weight: 500;
  font-size: 14px;
  margin-top: 0px;
  font-family: 'Topol';
  display: flex;
  flex-direction: column;
  transition: color 0.5s ease;
  padding-top: 10px;
}
.contact_links :hover{
  color: var(--accent-orange);
  transition: color 0.5s ease;
}
.contact_footer {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
  text-transform: uppercase;
  color: #696969;
  font-family: 'Topol'
}

