.hero {
  height: 100svh;
  background: linear-gradient(135deg, #fefefe, #eee);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  position: sticky;
  top: 0;
  z-index: -1;
}
.hero-content img {
    max-width: 100%; 
    margin: none;
}  
.hero::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  opacity: 0.1;
}

.hero-content{
    padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: #333;
}

.hero-content p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 1);
  padding: 20px;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 5px 5px 15px rgba(80, 80, 80, 0.2);
}

.stars {
  display: flex;
  grid-gap: 0.125rem;
  gap: 0.125rem;
  color: rgb(238, 203, 8);
}

.star {
  height: 1.25rem;
  width: 1.25rem;
}

.infos {
  margin-top: 1rem;
}

.description {
  line-height: 1.625;
  color: rgba(107, 114, 128, 1);
}

.author {
  margin-top: 1.3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(107, 114, 128, 1);
}

section.reviews {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem;
}

section.reviews .card {
  flex-shrink: 0; 
}

.booksy-btn {
  width: fit-content;
  background: #05cfa6;
  display: flex;
  margin: 1rem auto;
  padding: 8px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  box-shadow: 3px 3px rgba(5, 207, 166, 0.5);
  transition: 300ms;
}

.booksy-btn img{
  max-height: 2rem;
}
.booksy-btn:hover{
  box-shadow: none;
  transform: translateY(3px);
}

.booksy-btn:active{
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

#mapIframe{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 600px;
  padding-bottom: 1rem;
  
}

section,iframe{
  margin-top: 0;
}

/* contact */
.contact{
  margin-top: -1px;
  
}
.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.contact input, 
.contact textarea {
  width: 100%;
  max-width: 400px;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact input:focus, 
.contact textarea:focus {
  border-color: #111;
  outline: none;
}

.contact textarea {
  resize: vertical;
  min-height: 120px;
}

.contact button {
  cursor: pointer;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 1rem;
  transition: 0.3s ease;
  margin-top: 0.5rem;
}

.contact button:hover {
  background: #333;
}

.services{
  margin-top: 0;
}

.about{
  position: relative;
  padding-top: 1rem;
}

.about h1{
  margin:0;
  font-family: "Mogra", system-ui;
  text-align: left;
}

.about .row{
  max-width: 800px;
  margin: 0 auto;
  padding: 0.5rem;
  display: flex;
  gap: 1rem;
}

.about .row .img{
  max-width: 50%;
  border: 0.5rem solid #eee;
  box-shadow: 0 0.2rem 0.5rem #0006;
  position: relative;
  display: flex;
  flex: 1;
  overflow: hidden;
}

.salon-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-logo{
  max-width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  filter: drop-shadow(0 0 0.2rem #fff9);
}

.about .text{
  flex: 1;
  background: #fefefe;
  border: 0.5rem solid #f0f0f0;
  padding: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem #0006;
}

.about p{
  font-size: 1.25rem;
}

@media screen and (max-width: 768px){
  .about .row{
    flex-direction: column;
  }

  .about .row .img{
    aspect-ratio: 1/1 !important;
    align-self: center;
  }

  .about p{
    font-size: 0.9rem;
  }
}

h2{
  background: #fefefe;
  border-radius: 50rem;
  box-shadow: 0 0.1rem 0.5rem #0003;
  padding: 0.5rem 1rem;
  width: fit-content;
  margin: 0.5rem auto;
}