html {
    min-height: 100%;
} 

body {
    height: 100%;
    background-size: cover;
    background-color: #46b4b4;
    margin: 0;
    
}

h1 {
    color: #ffffff;
    padding: 1rem;
    margin: auto;
    font-style: italic;
    text-align: center;
    font-family: 'Great Vibes';
}

h2, h5, h4 {
      color: #ffffff;
    padding: 1rem;
    margin: auto;
    text-align: center;
}

h3 {
    text-align: center;
    color: #7a6cfd;
    font-weight: bold;
}
p {
    padding: 0 1rem;
    color: #eee;
    
}

.homeParagraph {
  margin: 0.5rem;
  padding: 1rem;
  text-align: center;

}
header {
    padding: 1rem;
    margin: auto;
    border-bottom: solid #000000;
    background-color: #50cfcf;
}

#openStatus {
    margin-left: 2rem;
    color: white;
}

.opentimeslist li, .additional li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 17px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2); /* optional separator */
}

.day, .hours {
display: flex;
    width: 6rem;
    flex-direction: column;
}

.opentimeslist .day {
  flex: 1;
}

.opentimeslist .hours {
  text-align: right;
}
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    margin: auto;
    padding-top: 1rem;
    height: 100%;
    font-size: 1rem;
    background-color: #50cfcf;
    border-top: solid #000000;
}
.footer-section {
    display: inline;
    float: left;
    margin-bottom: 1rem;
}

.footer-bottom-bar {
      text-align: center;
    width: 100%;
    background-color: #3cb0ad;
    color: white;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 0;
}

.footer-bottom-bar p {
  margin: 0.2rem 0;
}
.footerBase {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}
.footer-credits {
    position: absolute;
}

li {
    text-decoration: none;
    list-style: none;
    margin: 0.5rem;
}


a {
    color: white;
    text-decoration: underline;
}

a :hover {
    text-shadow: #000000;
}

.heroSection {
  margin-bottom: 1rem;
}
/*Nav Menu*/
@font-face {
  font-family: 'Great Vibes';
  src: url('../fonts/Great_Vibes/GreatVibes-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} 
.headerName {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 5rem;
    font-family: 'Great Vibes';
}

.salon-nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    margin: auto;
}

.dropdown {
    position: relative;
      display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropbtn:hover {
    background-color: #968ee6;
    cursor: default;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(255, 255, 255);
    border-radius: 0.5rem;
    z-index: 1;
    box-shadow: 0 0 4px;
    margin: auto;
    width: max-content;
}
.dropdown-content :hover {
    background-color: #968ee6;
    color: white;
    border-radius: 0.5rem;
}
.dropdown-content a {
    color: #000000;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    font-weight: normal;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*Scroll Box*/
.scrollable-box-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, auto);
  gap: 1rem;
  padding: 1rem;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;

    scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE & Edge */
  overflow-y: scroll;          /* Still allow scrolling! */
}
.scrollable-box-grid::-webkit-scrollbar {
  display: none;               /* Chrome, Safari */
}
@media screen and (max-width: 768px) {

}
.scroll-box {
    font-size: 0.8rem;
    background-color: #f0f0f0;
    padding: 1rem;
    height: 200px; /* Set height as needed */
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.booking-link, .Facebook, .Instagram, .Phone, .Home, .Team, .Services, .Contact, .FAQ, .Clients {
    color: #ffffff; 
    font-weight: bold; 
    text-decoration: underline;
}

.note {
    font-size: 0.5rem;
}



/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fef3e2;
  color: #000000;
  padding: 1rem 2rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  z-index: 999;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 70%;
  color: #000000
}

.cookie-banner button {
  background-color: #ff9a76;
  border: none;
  padding: 0.6rem 1.2rem;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  flex: 1 1 20%;
}

.cookie-banner button:hover {
  background-color: #ff764d;
}

.contact-intro {
    margin-bottom: 1.5rem;
}
.contact-grid {
    margin-top: 1.5rem;
    padding-left: 1rem;
}
.contact-info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  gap: 1rem;
}

.opening-times {
  display: flex;
    flex-wrap: wrap;
}

.mapNo67 {
  flex: 1;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px; /* optional */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 300px;
  border: 0;
}

.fin-us {
    padding: 0;
}

    .team-section {
    max-width: fit-content;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: space-between;
    gap: 1rem;
    justify-content: center;
    }

    .team-desc, .name-role h3 {
      color: #535353;
          display: flex;
    flex-wrap: wrap;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 1rem;
    margin-right: 1rem;
    }
    .team-member {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .team-member.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .team-member.left {
      flex-direction: row;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .team-member.right {
      flex-direction: row-reverse;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .team-member img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
    }


    .info h3 {
      margin: 0;
      font-size: 1.5rem;
      color: #535353;
    }

    .info p {
      margin: 0.3rem 0;
      color: #535353;
      margin-top: 0.5rem;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .Questions {
    display: flex;
        flex-wrap: wrap;
    flex-direction: column;
    padding: 0 1rem;
    gap: 1rem;
    color: white;
    }

#svg-fb:hover {
    fill: #1877f2;
}

#svg-fb {
  fill: #000; /* default color */
  transition: fill 0.3s ease;
}

#svg-fb:hover {
  fill: #1877f2; /* Facebook blue */
}

#svg-ig:hover {
  fill: #e1306c; /* Instagram pink */
}

.no67-images-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0.5rem;
    justify-content: space-between;
}

#no67-images {
    height: auto;
    width: 33%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.book {
  display: flex;
flex-wrap: wrap;
    justify-content: center;
    color: white;
    flex-direction: column;
}
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 320px) {
  .contact-box {
    flex-direction: column;
    align-items: center;
  }

  .map-wrapper {
    padding-bottom: 75%; /* taller ratio for small screens */
    margin-top: 1rem;
  }

      .scrollable-box-grid {
    grid-template-columns: repeat(1, 1fr); /* or 2 for 2-column */
    max-height: none; /* optional: let it grow naturally */
  }

    .headerName {
        font-family: Great Vibe;
    }
}
