:root {
  --headerandfooterBackroundlinear: linear-gradient(180deg, #F9C1A8 0%, #FAF7F6 100%);
  --headerBackroundcolorlogo: #F9C1A8;
  --borderwhitestandard: 2px solid white;
  --whiteStandard: white;
  --linkemailcolor: #0D96FE;


  --font-family-dancing-regular: 'DancingScript';
  --fonts-family-monts500: "Monts500";
  --fonts-family-poppins500: "Poppins500";
  --fonts-family-poppins300: "Poppins300";
  --fonts-family-roboto500: "Roboto500";
}

@font-face {
  font-family: 'Roboto500';
  src: url('/src/fonts/Roboto-Medium.woff2') format('woff2'),
    url('/src/fonts/Roboto-Medium.woff') format('woff'),
    url('/src/fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Poppins300';
  src: url('/src/fonts/Poppins-Light.woff2') format('woff2'),

    url('/src/fonts/Poppins-Light.woff') format('woff'),

    url('/src/fonts/Poppins-Light.ttf') format('truetype');

  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Poppins500';
  src: url('/src/fonts/Poppins-Medium.woff2') format('woff2'),

    url('/src/fonts/Poppins-Medium.woff') format('woff'),

    url('/src/fonts/Poppins-Medium.ttf') format('truetype');

  font-weight: 400;
  font-style: normal;
}



@font-face {
  font-family: 'DancingScript';
  src: url('/src/fonts/DancingScript-Regular.woff2') format('woff2'),

    url('/src/fonts/DancingScript-Regular.woff') format('woff'),

    url('/src/fonts/DancingScript-Regular.ttf') format('truetype');

  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Monts500';
  src: url('/src/fonts/Montserrat-Medium.woff2') format('woff2'),

    url('/src/fonts/Montserrat-Medium.woff') format('woff'),

    url('/src/fonts/Montserrat-Medium.ttf') format('truetype');

  font-weight: 400;
  font-style: normal;
}


* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  height: auto;

}

/* Global BtN  */

/* BTN-CCONTACTEZ NOUS */
.btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 29%;
  margin: 20px 0 20px 0;
  height: auto;

}

@media(max-width:1400px) {
  .btn-container {
    width: 36%;
  }
}



@media(max-width:980px) {
  .btn-container {
    width: 39%;
  }
}

@media(max-width:600px) {
  .btn-container {
    width: 50%;
  }
}


@media(max-width:484px) {
  .btn-container {
    width: 61%;
  }
}

@media(max-width:441px) {
  .btn-container {
    width: 70%;
  }
}

@media(max-width:441px) {
  .btn-container {
    width: 95%;
  }
}


.btn-container a {
  width: 65%;
  border-radius: 10px;
  background: linear-gradient(180deg, #c08081, #97696a);
  border: 2px solid #d8bfaa;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-family: var(--fonts-family-poppins500);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  /* Deaktiviert das Highlight */
  transition: background 0.6s ease-in, border 0.6s ease-in, color 0.6s ease-in, border-radius 0.6s ease-in;

}

.btn-container a:hover {
  background: var(--borderwhitestandard);
  border: 4px solid white;
  border-radius: 25px;
  border-color: #97696A;
  color: #97696a;
  height: 30px;
}


@media(max-width: 1069px) {
  .btn-container a {
    text-align: center;
  }
}

@media(max-width: 800px) {
  .btn-container a {
    margin-bottom: 10px;
    width: 94%;
  }
}

/* Fin BTN-CONTACTEZ NOUS Global */
/* Responsivität */



/* Wrapper */
#accueil-wrapper {
  width: 100%;

  height: 100vh;


}


/* 
@media (max-width: 768px) {
  #accueil-wrapper {
    max-width: 100%;
    padding: 24px;
  }
}  */

/* Wrapper fin */




/* Header */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  background: linear-gradient(180deg, #f9c1a8, #faf7f6);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
}

.logo img {
  width: 65%;
  animation: spin 10s linear infinite; /* Animationseffekt */
}

/* Keyframes für die Drehbewegung */
@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.menu-icon {
  width: 45px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 250px;
}

.logo-container img{
  width:100%;
  max-width: 800px;
}


.logoprinc {
  width: 55%;
}

@media( max-width:700px){
  .logoprinc{
    width: 80%;
  }
}


@media( max-width:400px){
  .logoprinc{
    width: 100%;
  }
}

.hero-text {
  width: 100%;
  max-width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.subtitle {
  width: 70%;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 300;
  font-family: var(--fonts-family-poppins300);
  color: #000;
  margin: 20px 0 0 0;
}



.description {
  font-weight: 500;
  font-family: var(--fonts-family-poppins500);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: #221a19;
  margin: 0;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 10px;
  }

}


/* Info text quele page */
.info-container {
  margin-right: 23px;
  width:30%;
  max-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Falls es Text + Bild gibt */
  position: relative;
}

@media(max-width:600px){
  .info-container {
    width:70%;}
}

@media(max-width:440px){
  .info-container {
    width:100%;}
}



@media(max-width:769px){
  .info-container {
    margin-right: 0px;}
}


.info-text{
  display: flex;
  color:var(--whiteStandard);
font-family:var(--fonts-family-poppins500);
font-size: 1.4rem;
}

.heart-image {
  width: 30px;
  height: 30px;
  opacity: 0;
  transition: opacity 1s ease;
  display: none;
}


 .hide {
  opacity: 0;
  pointer-events: none;
}

/* FinInfo text quele page */

/* Burger Menü */
.menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 4px;
  background: linear-gradient(to bottom, #c08081 50%, #97696a 50%);
  border-radius: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover-Effekte */
.burger-menu:hover span {
  background: linear-gradient(to bottom, #97696a 50%, #c08081 50%);
}

.burger-menu span:nth-child(1):hover {
  transform: translateY(10px);
}

.burger-menu span:nth-child(3):hover {
  transform: translateY(-10px);
}

/* Menü-Styling mit Hover-Effekten */
.menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100px;
  right: 20px;
  background: linear-gradient(to bottom, #c08081, #97696a);
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 10px;
  gap: 10px;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.menu a {
  text-decoration: none;
  color:var(--whiteStandard);
  font-size: 1.2rem;
  padding: 10px;
  border: 1px solid transparent;
 font-family:var(--fonts-family-monts500) ;
  border-radius: 5px;
  text-align: center;
  transition:
    color 0.3s ease,
    font-size 1s ease,
    padding 1s ease,
    border-color 1s ease;
  /* Sanfter Übergang für Schrift, Padding und Border */
}

.menu a:hover {
  font-size: 26px;
  /* Schriftgröße vergrößert */
  padding: 20px 30px;
  /* Padding vergrößert */
  border-color: #fff;
  /* Weiße Border wird sichtbar */
  color:var(--whiteStandard);
  /* Schriftfarbe ändert sich */
  background:linear-gradient(to bottom, #c08081, #97696a);
  /* Hintergrundfarbe bleibt */
}

/* Hidden Menü */
.hidden {
  display: none;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .menu {
    top: 70px;
    right: 10px;
  }
}

@media (max-width: 510px) {
  .menu {
    position: absolute;
    top: 200px;
    /* Direkt unter dem Burger-Button */
    right: 50%;
    transform: translateX(50%);
    /* Zentriert das Menü */
    width: 100%;
    /* Volle Breite */
    max-width: 220px;
  }
}

@media (max-width: 500px) {
  .burger-menu {
    width: 30px;
    height: 25px;
  }

  .menu {
    width: 180px;
  }

  .menu a {
    font-size: 1rem;
  }
}

/* Fin Header */


/* Footer */

.footer {
  background: linear-gradient(180deg, #f9c1a8, #faf7f6);
  color: #000;
  padding: 20px;
  text-align: left;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Inhalte horizontal zentrieren */
  align-items: flex-start; /* Inhalte vertikal ausrichten */
  gap: 20px; /* Abstand zwischen den Elementen */
  max-width: 1300px; /* Maximale Breite */
  margin: 0 auto; /* Mittig auf der Seite ausrichten */
  padding: 20px; /* Innenabstand hinzufügen */
}

.contact-info, .horaire, .legal-social {
  flex: 1 1 calc(33.33% - 20px); /* Drei Spalten */
  min-width: 250px; /* Mindestbreite */
  text-align: center; /* Text zentrieren */
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column; /* Wechsel zu Spaltenansicht */
      align-items: center; /* Inhalte zentrieren */
  }

  .contact-info, .horaire, .legal-social {
      flex: 1 1 100%; /* Volle Breite */
      text-align: center; /* Inhalte mittig ausrichten */
  }
}

/* Contact Information */
.contact-info .footer-title {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.5rem); /* Dynamische Größe */
  margin-bottom: 10px;
  font-family: var(--fonts-family-roboto500);
}

.contact-info p {
  margin: 5px 0;
  font-size: clamp(0.9rem, 1.5vw, 1rem); /* Dynamische Größe */
  line-height: 1.5;
  font-family: var(--fonts-family-roboto500);
}

.email-link {
  color: #0d96fe;
  text-decoration: none;

}

.email-link:hover {
  text-decoration: underline;
}

/* Opening Hours */
.horaire {
  margin: 0 auto;
  width: 100%; /* Passt sich an die Breite des Containers an */
  max-width: 364px; /* Begrenzung der maximalen Breite */
  display: flex;
  flex-direction: column; /* Stellt sicher, dass Inhalte vertikal gestapelt werden */
  align-items: center; /* Zentriert Inhalte horizontal */
  text-align: center;
}

.horaire p, .horaire span {
  font-size: clamp(0.9rem, 1.5vw, 1rem); /* Dynamische Schriftgröße */
  line-height: 1.5;
  font-family: var(--fonts-family-monts500);
  font-weight: 400;
  word-break: break-word; /* Verhindert Überlaufen */
  margin-bottom: 5px;
}
.horaire .day-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* Links ausgerichtet */
/*   margin-bottom: 10px; */
}

.horaire .day-block .day-label {
 
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin-right: 5px; 
/*   text-align: left; */ /* Links ausgerichtet */
}

.horaire .day-block .time-ranges .time-range {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
 /*  margin-bottom: 3px; */
  text-align: left; /* Links ausgerichtet */
}



.status {
  margin-top: 15px; /* Abstand zwischen der horaire und dem Status */
  width: 100%; /* Breite passend zur horaire */
  max-width: 390px; /* Gleiche Breite wie horaire */
  text-align: center; /* Text zentriert */
  font-size: 1rem; /* Lesbare Schriftgröße */
  font-family: var(--fonts-family-monts500); /* Einheitliche Schriftart */
  color: red; /* Textfarbe */
  font-weight: 500; /* Schriftstärke */
  line-height: 1.5; /* Angenehmer Zeilenabstand */
}


/* Legal and Social Media */
.legal-links {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.legal-links li {
  margin-bottom: 5px;
}

.legal-links a {
  text-decoration: none;
  color: inherit;
  font-family: var(--fonts-family-roboto500);
  
}

.legal-links a:hover {
  text-decoration: underline;
}

/* Social Media */
.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-media .follow-us {
  margin-top: 30px;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem); /* Dynamische Größe */
  margin-bottom: 10px;
  font-family: var(--fonts-family-roboto500);
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon:hover {
  transform: scale(1.2); /* Vergrößert das Icon leicht */
  filter: brightness(1.2); /* Hellt das Icon leicht auf */
  background-color: #0d96fe;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem); /* Dynamische Größe */
  color:black;
  font-family: var(--fonts-family-roboto500);
}

.footer-bottom a {
  color: #0d96fe;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 30px;
  }

  .contact-info, .horaire, .legal-social {
      flex: 1 1 100%;
      text-align: center;
  }

  .social-icons {
      justify-content: center;
  }
}

/* Button Scroll */
#scrollToTop {
  position: fixed;
  bottom: 20px;
  left: 20px;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#scrollToTop:hover {
  background-color: #E89B8B; /* Etwas kräftiger beim Hover */
  transform: scale(1.1); /* Leichtes Vergrößern beim Hover */
}

#scrollToTop img {
  width: 30px;
  height: 30px;
}

#scrollToTop img:hover {
  width: 30px;
  height: 30px;
}


