/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(184, 91%, 17%);
  --clr-primary-2: hsl(185, 84%, 25%);
  --clr-primary-3: hsl(185, 81%, 29%);
  --clr-primary-4: hsl(184, 77%, 34%);
  /* primary/main color */
  --clr-primary-5: hsl(185, 62%, 45%);
  /* lighter shades of primary color */
  --clr-primary-5: hsl(185, 57%, 50%);
  --clr-primary-7: hsl(184, 65%, 59%);
  --clr-primary-8: hsl(184, 80%, 74%);
  --clr-primary-9: hsl(185, 94%, 87%);
  --clr-primary-10: hsl(186, 100%, 94%);
  --clr-light-white: #FFFFFF4D
;
  --clr-linear-black-silver:linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(1, 1, 19, 1) 43%,
    rgba(104, 111, 112, 0.9486388305322129) 100%;)


  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: "Lato", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/*
=============== 
Global Styles
===============
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  background: black;
  color: white;
  line-height: 1.5;
  font-size: 0.875rem;
  font-weight: 400;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}

img:not(.nav-logo) {
  width: 100%;
  display: block;
}

th{
font-size: 1.1rem;
color: var(--clr-primary-5);
text-decoration: underline;}
h1,
h2,
h3,
h4 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;

  letter-spacing: var(--spacing);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 1.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  font-family: "Lato", sans-serif;
  margin-bottom: 1.25rem;
  color: silver;
  font-size: 1.25rem;

}

@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }

  p{
    font-size: 1.8rem;
  }
}
/*  global classes */

.underline{
color: var(--clr-primary-5);}
.btn {
  text-transform: uppercase;

  color: var(--clr-white);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  /* font-weight: 700; */
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: solid;
}
.btn:hover {
  color: black;
  background: silver;
}

.read-more-btn{
  cursor: pointer;
  border: none;
  position: relative;
  color: var(--clr-primary-5);
  font-weight: 800;
  
}

/*
=============== 
Navbar
===============
*/

.navbar {
  display: flex;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: none;
  box-shadow: var(--dark-shadow);
  z-index: 4;
  opacity: 1;
  justify-content: space-between;
  padding: 0.5rem 0rem;
  background: black;

}
.nav-logo {
  max-width: 7rem;
}

.nav-icons {
  display: none;
}

.telefon {
  position: relative;
  left: -0.4rem;
  top: 0;
  display: inline-block;
  padding: 0.8rem;
  background-color: var(--clr-primary-5); /* Dein HSL-Farbwert */
  
  -webkit-mask-image: url(../images/anruf-icon.png);
  mask-image: url(../images/anruf-icon.png);
  -webkit-mask-size: cover;
  mask-size: cover;
}

.telefon:hover {
transform: scale(1.5);
}

.facebook{
  position: relative;
  left: 1.5rem;
transform: scale(0.4);
}

.nav-center {
  position: relative;
 
  width: 88%;
height: auto;
max-height: 3rem;
max-width: 94vw;
  margin: 0 auto;
}

.samstag-opening-time span{
font-size: 1rem;
}

.nav-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 1rem 1rem;
}


.nav-toggle {
  background: transparent;
  border: transparent;
  font-size: 1.5rem;
  color: var(--clr-primary-5);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.nav-link {
  display: block;
  padding: 1rem 1.35rem;
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color:silver;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px groove silver;
  
}

.nav-link:hover {
  background: var(--clr-primary-1);

}

.nav-links {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: black;


}

.instagram-vector{
  position: relative;
  max-width: 35px;
  max-height: 35px;
  justify-self: start;
  align-self:flex-start;
  height: auto;
  width: 100%;
  border-radius: 3px;
}

.show-links {
  height: auto;
}
.nav-toggle-tele::after {
  top: 0;
left: 0;
  content: "";
  position: absolute;
color: var(--clr-primary-5);
  height: 100%;
  width: 100%;
  z-index: 100;
}

@media screen and (min-width: 1350px) {
  .navbar {
    padding: 1rem 1rem;
  }

  .nav-toggle {
    display: none;
  }
  .nav-toggle-tele {
    display: none;
  }



  .nav-center {
    left: 5rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-links {
    height: auto;
    display: -webkit-box;
    display: flex;
    position: relative;
  }

  .nav-header {
    padding: 0 0;
  }
  .nav-link {
    margin-right: 0.2rem;
    padding: 1rem 4rem;

  }


  .nav-icons {
    display: -webkit-box;
    display: flex;
    align-items: center;
    height: 50%;
  }
  .nav-icon {
    margin: 0 1rem;
    margin-right: 0.7rem;
    font-size: 1.2rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: var(--clr-primary-8);

  }
  .nav-icon:hover {
    color: var(--clr-primary-8);
  }

  .btn.menu {
    text-align: center;
    border: none;
  }
}

/*
=============== 
Sidebar
===============
*/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-grey-10);
  z-index: 4;
  display: grid;
  place-items: center;
  transition: var(--transition);
  /* add later */
  transform: translateX(-100%);
}

.show-sidebar {
  transform: translateX(0);
}

.sidebar-links {
  text-align: center;
}
.sidebar-links a {
  font-size: 2rem;
  text-transform: var(--transition);
  color: var(--clr-grey-5);
  letter-spacing: var(--spacing);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.sidebar-links a:hover {
  color: var(--clr-primary-5);
}

.social-icons {
  display: grid;
  margin-top: 3rem;
  width: 20rem;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.social-icon {
  font-size: 1.5rem;
  color: var(--clr-grey-1) var(--transition);
}

.social-icon:hover {
  color: var(--clr-primary-5);
}

.close-btn {
  position: absaolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  background: transparent;
  border: transparent;
  transition: var(--transition);
  color: #bb2525;
  cursor: pointer;
}
.close-btn:hover {
  color: #e66b6b;
}

/*
=============== 60
Hero
===============
*/


.hero {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: auto;
  height: 40vh;
  position: relative;
  background-color: black;
  background-image: linear-gradient(rgba(45, 52, 54, 0), rgba(0, 0, 0, 0.8));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  margin-top: 5vh;
}
@media screen and (min-width: 420px) {
  .hero {
    height: 45vh;
  }
}
.hero-banner {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 2;
  height: 100%;
  justify-content: space-between;
  text-align: center;
  color: var(var(--clr-white));
}
.banner-text {
  max-width: 15vw;

  margin-left: 83vw;
  margin-right: auto;
  text-align: left;
  z-index: 4;
}

#hero-banner-logo {
  position: absolute;
  width: 85%;
  height: auto;

  z-index: 0;
  bottom: 0;

  overflow: hidden;
}

.hero-titel{
  position: relative;
  font-weight: 700;
  font-size: 2rem;
  

}

.hero-titel-span{
background-color:  var(--clr-primary-1);
}
.hero-banner h1 {
  text-transform: uppercase;
  text-align: center;
  padding-top: 2rem;
  background-color: none;
}

.hero-banner p {
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--clr-white);
  letter-spacing: var(--spacing);
}
.hero-btn {
  position: relative;
  bottom: 1rem;
  margin: 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--clr-linear-black-silver);
  border: none;
  border-bottom:0.5px solid;
}


.hero-btn:hover {
  background: transparent;
  color: black;
  border-color: var(--clr-white);
  background-color: silver;
}
.hero-img {
  z-index: 1;
  bottom: 0;
  position: absolute;
  padding: 0rem 22vw;
}

@media screen and (min-width: 768px) {
  .hero {
    display: flex;
    width: auto;
    height: 110vh;
    position: relative;
    color: white;
    background-color: black;
    background-image: linear-gradient(rgba(45, 52, 54, 0), rgba(0, 0, 0, 0.8));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    justify-content: center;
    align-items: center;
  }

  .hero-titel{
    position: relative;
    font-size: 1.5rem;
  }
  .hero-btn{
position: relative; 
bottom: 6rem;
}
  .hero-banner h1 {
font-size: 4.8rem;
    padding-top: 1rem;

  }
  #hero-banner-logo {
    position: absolute;
    width: auto;
    height: 100%;
    /* object-fit: cover; */
    z-index: 0;
    bottom: 0;
    margin-bottom: -0.8vh;
    overflow: hidden;
    max-width: 100vw;
    max-height: 100vh;
  }

  .hero-img {
    z-index: 1;
    bottom: 0;
    position: absolute;
    padding: 0rem 20vw;
  }
  .hero-btn {
    font-size: 1.6rem;

  }

  .hero-banner {
    padding: 0.5rem;
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 2;
    height: 100%;
    justify-content: space-between;
  }
  .banner-text {
    max-width: 15vw;

    margin-left: 83vw;
    margin-right: auto;
    text-align: left;
    z-index: 4;
  }

  .hero-btn {
    max-width: 30rem;
    align-self: center;
  }
}

.section {
  padding: 2rem 0;
  background: rgb(0, 0, 0);
  overflow: hidden;
}

.section.maps {
  height: 55vh;
  

}

.maps-container {
  position: relative;
}

.maps-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 2;
}

.maps-container:hover::after {
  display: none;
}

.section-titel {
  text-align: center;
  margin-bottom: 4rem;
}
.section-titel.about {
  z-index: 1;
  padding-top: 3.5rem;
  margin-bottom: 1.5rem;
}

.titel-explore{
  margin: 0 auto;
  margin-bottom: 1rem;
  max-width: 70vw;
}


.section-titel h2 {
  text-transform: uppercase;
}

.section-titel span {
  text-shadow: 2px 2px 4px rgba(177, 180, 180, 1);
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
  color: white;
}

@media screen and (min-width: 992px) {

  .hero{
    margin-top: 5rem;
height: 110vh;

  }
  .section-center {
    width: 95vw;
  }
  .hero-img {
    z-index: 1;
    bottom: 0;
    position: absolute;
    padding: 0rem 30vw;
  }
}
/*
=============== 
About
===============
*/
/* section add to globals */

/* title add to globals */

/* section center add to globals */

#about {
  padding-bottom: 0rem;
  padding-top: 0;

}

.about-info p{
text-align: center;
  hyphens: auto; 
  max-width: 87vw;
  margin: 0 auto;
}


.about-img {
  flex: 0 0 70%;
  overflow: hidden; /* Ensure images don't overflow the container */
  cursor: pointer; /* Show cursor as pointer on hover */
  cursor: pointer; /* Show cursor as pointer on hover */
  position: relative; /* Positioning context for absolute positioning */
  transition: transform 3s ease;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 3s ease;
}

.about-img:hover {
  transform: scale(1.5); /* Optional: Scale up on hover */

  z-index: 1; /* Ensure it appears above neighbor images */
}
.about-info {
  background-color:var(--clr-black);
  -webkit-box-flex: 0;
  flex: 0 0 calc(50% - 2rem);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.card-info h3 {
  color: black;
background: silver;
  padding: 1.5rem 1.5rem;
  line-height: 2.1rem;
margin: 1.5rem 0;
text-align: center;

}

.rentAChair.card-info h3{
margin-top: 0rem;
}



.card-info p {
  color: silver;
  padding: 1.5rem 1.5rem;
  font-size: 1.35rem;
  margin: 2rem 0rem;
  margin-top: 0rem;
  text-align: left;
}

.card-info button{
background-color: transparent;
  border: none;
  color: silver;
  font-family: var(--ff-primary);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.section.explore {
  padding-top: 3rem;
  padding-bottom: 1rem;
  width: 90vw;
  background: black;
  margin: 0 auto;
}



.tour-title {
  width: 80%;
  box-shadow: var(--light-shadow);
  position: absolute;
  left: 50%; /* Set left position to 50% */
  transform: translateX(-50%); /* Translate back by 50% of its own width */
  bottom: 10px;
  margin: 0;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  color: #333;
  font-size: 16px;
  transition: var(--transition);

  text-align: center; /* Center text horizontally */
}

.tour-title:hover{
  transition:var(--transition) ;
  width: 82%;
  box-shadow: var(--dark-shadow);
}

/*
=============== 
Services
===============
*/
/* Art's Degrees references */

.services {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(1, 1, 19, 1) 43%,
    rgba(104, 111, 112, 0.9486388305322129) 100%
  );

  padding-bottom: 2.5rem;
    margin: 0 auto;

}

.service {
  text-align: center;
  margin-bottom: 3rem;

}

.service-icon {
  display: inline-block;
  width: 80px;
  height: 100px;
  background-image: url(../images/Blond-Expert-cert.png);
  background-size: cover;
  margin-right: 0.5rem;
  padding-right: 4rem;
}

.master-colors-icon {
  display: inline-block;
  width: 80px;
  height: 100px;
  background-size: cover;
  margin-right: 0.5rem;
  padding-right: 4rem;
  background-image: url(../images/Master-of-colors-cert.png);
}
.meisterbrief-icon {
  display: inline-block;
  width: 80px;
  height: 100px;
  background-size: cover;
  margin-right: 0.5rem;
  padding-right: 4rem;
  background-image: url(../images/Meisterbrief.png);
}

.service-text {
  color: white;
  text-align: left;
  max-width: auto;
font-size: 1.4rem;
  
  padding: 0.45rem 0.9rem;
  padding-bottom: 1rem;
     box-shadow: var(--light-shadow);
     border-radius: 10px;
     background-color:#333;
     margin: 0 auto;
     margin-top: 1rem;
      

}
.service-titel {
  text-align: left;
  margin-top: 1rem;
width: auto; 
 line-height: 1.7rem;
  font-size: 1.3rem;
font-weight: 800;
  padding: 0.45rem 0.9rem;
  padding-bottom: 1rem;
     box-shadow: var(--light-shadow);
     border-radius: 10px;
     background-color:#333;
}

.services-center{
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 576px) {


  .services-center {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .about-img {
    flex: 0 0 30%;
  }
  .about-info {
  font-size: 1.9rem;

  }

  .service-titel {
    font-size: 1.3rem;
  
  }
.hero{
  height: 70vh;
}

.hero-titel{
  font-size: 3rem;
}

  .service {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 1rem);
    margin-bottom: 1 rem;
  }
}
@media screen and (min-width: 992px) {
  .service {
    -webkit-box-flex: 0;
    flex: 0 0 calc(33.333% - 1rem);
  }
  .hero{
    height: 90vh;
  }
}
@media screen and (min-width: 1170px) {
  .service {
    display: -webkit-box;
    display: flex;
    text-align: left;
  }
  .service-icon {
    align-self: start;
  }
  .service-info {
    padding-left: 1rem;
  }
  .service-titel {
    margin-bottom: 0.5rem;
  }
}
/*
=============== 
Preise & Treatments
===============
*/

#featured {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(1, 1, 19, 1) 43%,
    rgba(104, 111, 112, 0.9486388305322129) 100%
  );
}
.tour-card {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: none;
  box-shadow: var(--light-shadow);
  margin-bottom: 2rem;
  position: relative;
  padding-left: auto;
  padding-right: auto;
  transition: height 0.3s ease;
  overflow: hidden;

 
}




.tour-img-container {
  position: relative;
  cursor: pointer;
  min-width: 22rem;

}

.extension-video{
  width: 100%;
}

.tour-img.stylings {
  position: relative;
  width: 140%;
  left: -17%;
}
.tour-img {
  height: 15rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.tour-img:hover{
  transform: scale(105%);
  transition: transform 0.9s ease-in-out;

}
.extension-video{
  object-fit: cover;  /* oder 'contain', falls gewünscht */
  object-position: center 20%; /* oder z. B. '50% 20%' */
  width: 100%;
  height: 15rem;}


.tour-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--clr-primary-8);
  margin-bottom: 0;
  color: var(--clr-primary-1);
  text-transform: capitalize;
  padding: 0.25 0.5;
}

.tour-info {
  position: absolute;
  padding-top: 1.25rem;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tour-info.active {
  position: relative;
  max-height: 1000px; /* Adjust this value to fit your content */
}
.tour-info.active h3{
  max-width: 90vw;
margin: auto;
margin-bottom: 1rem;
background-color: silver;
color: black;
text-align: center;
padding: 1.5rem 0rem;
}

.tour-info table {
  margin: 0 auto;
}


.tour-info .btn {
  margin: 1.5rem auto;
}
.btn.space {
  margin-top: 8.5rem;
  margin-bottom: 0;
}

.tour-info h4 {
  text-decoration: underline;
  text-align: center;

}

.tour-footer {
  text-align: center;
}
.tour-footer span {
  text-decoration: underline;
}

.tour-footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.tour-footer p span {
  border: solid;

  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6),
    0px 0px 10px rgba(255, 255, 255, 0.2), 0px 0px 5px rgba(255, 255, 255, 0.2),
    0px 0px 10px rgba(73, 255, 24, 0.2), 0px 0px 10px rgba(73, 255, 24, 0.2),
    0px 0px 10px rgba(73, 255, 24, 0.2), 0px 0px 10px rgba(73, 255, 24, 0.2),
    0px 0px 10px rgba(73, 255, 24, 0.2);
}

.tour-footer p {
  line-height: 0;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--clr-primary-5);
}

.tour-btn {
  text-align: center;
}

.price-sub-titel{
position: relative;
top: -1rem;
font-size: 0.7rem;
  color: var(--clr-primary-5);
}
.feedback{
  top: 0;
}

@media screen and (min-width: 768px) {
  .tour-info {
    padding-top: 1.25rem;
    text-align: left;
  }
  .featured-center {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .tour-card {
    -webkit-box-flex: 0;
    flex: 0 0 calc (50% - 2rem);
  }
}
@media screen and (min-width: 1170px) {
  .tour-card {
    -webkit-box-flex: 0;
    flex: 0 0 calc(33.333% - 2rem);
  }
}

table {
  border-spacing: 1rem; /* Adjust the value to set the desired spacing */
}

/* section reviews */

.reviews {
  width: 100vw;
  padding: 0;
  height: auto;
  margin-top: 2.25rem;
}

/*
=============== 
Contact
===============
*/

.contact {
  background: rgb(0, 0, 0);
  padding-top: 0;
}

.contact-title {
  color: var(--clr-white);
}

.contact-title p {
  color: var(--clr-primary-8);
}

.contact-form {
  display: -webkit-box;
  display: flex;
  max-width: 28rem;
}

.form-control {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  color: var(--clr-grey-5);
}

.form-control,
.btn-submit {
  padding: 1rem 0, 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  letter-spacing: var(--spacing);
  background: silver;
  text-transform: capitalize;
  border: transparent;
}

.form-control::-webkit-input-placeholder {
  color: inherit;
}

.form-control::-moz-placeholder {
  color: inherit;
}

.form-control:-ms-input-placeholder {
  color: inherit;
}

.form-control::-ms-input-placeholder {
  color: inherit;
}

.form-control::placeholder {
  color: inherit;
}

.btn-submit {
  font: var(--ff-primary);
  padding: 0rem 1rem;
  margin-left: 0.5rem;
  background: silver;
  color: var(--clr-primary-1);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--clr-primary-1);
  color: var(--clr-grey-5);
}

@media screen and (min-width: 992px) {
  .contact-center {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .contact-form {
    align-self: flex-start;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    max-width: 100%;
    padding-left: 2rem;
  }
}

/*
=============== 
Footer
===============
*/
.footer {
  text-align: left;
}
.footer {
  background: black;
  text-align: center; /* Aligning all text in the center */
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  display: flex; /* Using flexbox for alignment */
  flex-direction: column; /* Align items vertically */
  align-items: center; /* Align items horizontally */
  padding-bottom: 2rem;
}

.footer-links {
  grid-area: c;
  margin-bottom: 2rem;
}

.footer-adress {
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  grid-area: a;
}

.footer-icon {
  grid-area: b;
}
.footer-link {
  grid-area: d;
  margin-bottom: 2rem;
}
#adress {
  grid-area: a;
  color: var(--clr-white);

  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
}
#email {
  text-transform: lowercase;
}

.footer-links {
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--clr-primary-5);
}

.footer-icon {
  font-size: 2rem;
  color: var(--clr-white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.footer-icon:hover {
  color: var(--clr-primary-5);
}

.copyright {
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  color: var(--clr-white);
  font-size: 0.7rem;

  text-align: center;
}
.section.footer.about {
  background-color: #deadae;
  color: white;
}

.index-about-site {
  height: 1000px;
  width: auto;
}

@media screen and (min-width: 700px) {
  .footer {
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "a b c d";
    text-align: left;
  }
  .footer-adress {
    text-align: left;
  }
  #adress {
    text-align: left;
  }
  .footer-links {
    grid-area: c;
    margin-bottom: 0rem;
  }
}

.about-titel {
  margin-top: 1rem;
}

.footer-end {
  background: black;
  text-align: center;
}


/* OPENING TIMES  */

.about.times{
  margin-bottom: 1rem;
}

.section.opening-times {
  font-size: 1.3rem;
margin: 4rem auto;
  padding: 0;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; 
  width: 100vw;
  

}

.openingtimes-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 10px;
  padding: 10px;
width: 1260px;  

}

.opening-time {
  width: 100%;
  height: 5rem;
  background-color: #333;
  padding: 2px;
  padding-top: 0.5rem;
  border-radius: 3px;
  text-align: center;
}
.opening-time.open:hover{
  background-color: var(--clr-primary-3);
}

.opening-time a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.gallery{
  margin-top: 2rem;
}

@media screen and (max-width: 600px) {
  .container {
      grid-template-columns: repeat(2, 1fr);
  }

}

.carousel {
  display: flex;
  transition: transform 3s ease;
  justify-content: center;
}



/*
=============== 
/* MUCHO LUDIN LAB SINGLE-PAGE FRISEURSTUHLMIETE - BLOG CLASS */ 





.card {
  height: 45rem;
  width: 100%;
  position: relative;
  perspective: 1500px;
  margin-bottom: 4rem;

}

.card-side {
  
  backface-visibility: hidden;
  transition: all 2s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  -webkit-transform: translate3d(0, 0, 0);
  visibility: visible;


}


.card-front {
  background: none;

}

.card.rentAChair{
  object-fit: cover;
 box-shadow: var(--dark-shadow);
}




.card-back {
  background: black;
  transform: rotateY(180deg);
  display: grid;
  place-items: center;


}

.card:hover .card-front {
  transform: rotateY(-180deg);
}
.card:hover .card-back {
  transform: rotateY(0);

}

.card-back p{
  hyphens: auto; 
	text-align: justify;
  margin-bottom:0;
font-size: auto;
  color: silver;
  text-align: center;
  padding: 0.5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
/* rest of the styles */

.card-info {
  padding: 1rem 0.5rem;
  text-align: center;
  display: flex;
flex-direction: column;
justify-content: space-between;
height: 55%;

}





.card-front img {
  height: 15rem;
  object-fit: cover;

}






.card-footer {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: left;
  column-gap: 0.5rem;
  transform: translateX(3.8rem);
}



.card-footer img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  /* border-radius: 50%; */
}

.card-footer p {
  margin-bottom: 0;
  text-transform: uppercase;
  color: silver;
  font-size: 0.85rem;
}

.second-footer-card {
transform: translateY(-40%);
margin-left: 25%;
}

.blog-center {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
 grid-template-rows: auto;
  gap: 5rem;
}

.btn.back{
  background: black;
  color: white;
  
}

.btn.back:hover{
  background: white;
  color: black;
  
}

.lab p{
  max-width: 80vw;
  margin: 0 auto;
  font-size: 0.9rem;
  font-family: var(--ff-primary);
  margin-bottom: 3rem;
  margin-top: 1rem;
  text-transform: uppercase;

}

.about.lab h3{
  background: silver;
  color: black;
  margin: 4rem auto;
  margin-bottom: 0.25rem;
  margin-top: 2rem;
  line-height: 2rem;
padding: 0.5rem 2rem;
  width: 90%;
  text-align: center;
}

.about.lab h3 span{
font-size: 1rem;
text-align: center;

}
.rentAChair button{
padding: 0.25rem;
margin-bottom: 1.5rem;
  width: 100%;
  color: silver;

}



/*  KONTAKTFORMULAR FRISUERSTUHLMIETE PAGE */

.contact {
  background:black;
  height: auto;
}

.contact-title {
  color:silver;
}

.contact-title p {
  color:silver;
  margin-bottom: 1rem;
}

.contact-form {
  width: 400px;
}
#radioButtonsDiv {
  display: flex;
  width: 100%;
}
.radio-buttons-container {
  display: flex;
}

input {
  margin-left: 10px; /* Adjust as needed */
  margin-right: 5px;
}
.radio-option {
  margin-right: 30px; /* Adjust as needed */
}

.form-control {
  width: 70vw;
  margin: 0.5rem 0.5rem;
  cursor: pointer;
  color: white;
}
.contact-form {
  width: 100%;
  justify-self: center;
  display: flex;
  flex-direction: column;

 

}

.form-control {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  align-self: center;
}

.form-control:focus {
  outline: none;
  border-color: #5b9;
}

.btn-submit {
  width: 70vw;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #5b9;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #478;
  color: white;
}

.form-control,
.btn-submit {
  width: 80vw;
  padding: 0.375rem 0, 75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  letter-spacing: var(--spacing);
  background: transparent;
  text-transform: capitalize;
  border-color: silver;
}

.form-control::-webkit-input-placeholder {
  color: inherit;
}

.form-control::-moz-placeholder {
  color: inherit;
}

.form-control:-ms-input-placeholder {
  color: inherit;
}

.form-control::-ms-input-placeholder {
  color: inherit;
}

.form-control::placeholder {
  color: inherit;
}

.btn-submit {
  font: var(--ff-primary);
  margin-left: 0.5rem;
  background: transparent;
  color: var(--clr-grey-);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.btn-submit:hover {
  background: silver;
}

@media screen and (min-width: 700px) {
.card-side h3 {
  font-size: 1.3rem;
}

.lab p{
  font-size: 1.3rem;
}

.about.lab h3, .about.lab p{
  width: 60%;
}
}