/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clear {
  clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/
html {
  font-size: 62.5%;
  font-family: "Gideon Roman", cursive;
  background-color: #1a1919;
  color: white;
}
a {
  text-decoration: none;
  color: black;
}
/******************************************
/* LAYOUT
/*******************************************/

/***************** HEADER ******************/
.main-container {
  /* margin: 0 60px; */
}
header {
  height: 75px;
  width: 100%;
  font-size: 1.5rem;
  background-color: #393939;
  position: sticky;
  top: 0;
  z-index: 10000;
}
nav {
  text-align: center;
}
li {
  margin: 25px 25px 0 0;
  display: inline-block;
}
li.menu {
  display: none;
}
li.first {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 3rem;
  width: 25%;
  text-align: start;
}
li.last {
  width: 25%;
  text-align: end;
}

#home ul li a {
  color: white;
}
/***************** HEADER ******************/

/*SIDEBAR***********************************/
.sm-wrapper {
  margin-top: 10px;
}
.sidemenu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000000;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidemenu a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 35px;
  display: block;
  letter-spacing: 5px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.sidemenu .close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 45px;
}
/*SIDEBAR***********************************/

/*SIDEBAR HOVER******************************/
.sm-wrapper a:after {
  z-index: -1;
  position: absolute;
  left: 0%;
  width: 0;
  height: 50px;
  background: #d5adb5;
  content: "";
  transition: width 0.35s ease-in-out;
}
.sm-wrapper a:hover:after {
  width: 10%;
}
.sm-wrapper a:hover {
  padding-left: 64px;
  transition: 0.35s ease-in-out;
}
/*SIDEBAR HOVER******************************/

/*SIDEBAR CONTENT****************************/
#pg-content {
  transition: margin-left 0.5s;
  padding: 16px;
}
/*SIDEBAR CONTENT****************************/

/****************** MAIN *******************/
.main-container {
  height: 90vh;
  /* width: 100%; */
  display: flex;
  justify-content: center;
  /* align-items: center; */
  position: relative;
}

.slider-container {
  width: 100%;
  height: 70%;
  /* position: relative; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  position: absolute;
  bottom: 20px;
  left: 60px;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
}

.buttonSlider {
  position: absolute;
  top: 50%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 20px;
  cursor: pointer;
  font-size: 2em;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.buttonSlider:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.main-about-container {
  height: auto;
  /* width: 100%; */
  padding-bottom: 50px;
  background-image: url("Assets/contact-us.jpg");
  background-size: cover;
  background-position: top;
  position: relative; /* Ensure positioning context for ::before and children */
}

.main-menu-container {
  height: auto;
  /* width: 100%; */
  padding-bottom: 50px;
  background-image: url("Assets/about.jpg");
  background-size: cover;
  background-position: top;
  position: relative; /* Ensure positioning context for ::before and children */
}

.main-first-container {
  height: auto;
  /* width: 100%; */
  padding-bottom: 50px;
  background-image: url("Assets/trimm.jpg");
  background-size: cover;
  background-position: top;
  position: relative; /* Ensure positioning context for ::before and children */
}

.main-second-container {
  height: auto;
  /* width: 100%; */
  padding-bottom: 50px;
  background-image: url("Assets/trimmm.jpg");
  background-size: cover;
  background-position: center;
  position: relative; /* Ensure positioning context for ::before and children */
}

.main-contact-container {
  height: auto;
  /* width: 100%; */
  padding-bottom: 50px;
  background-image: url("Assets/poster.png");
  background-size: cover;
  background-position: center;
  position: relative; /* Ensure positioning context for ::before and children */
}

main.main-container::before {
  content: "";
  /* width: 100%; */
  height: 100%;
  left: 0;
  top: 0;
  position: absolute; /* Positions the overlay within the main element */
  background: rgba(0, 0, 0, 0.5); /* The overlay color */
  z-index: 1; /* Overlay should be below content */
}

main.main-container > * {
  position: relative; /* Ensure content is above the overlay */
  z-index: 2 !important; /* Higher than ::before */
}

h1 {
  font-size: 7rem;
  color: #fff;
  margin: 0 0 20px 5%;
  padding-top: 150px;
  width: 40%;
}
main p {
  margin: 0 0 50px 5%;
  font-size: 1.5rem;
  color: #fff;
}
main a {
  border: 1px solid black;
  padding: 10px 20px;
  background: black;
  color: white;
  margin: 0 0 40px 5%;
  font-size: 1.5rem;
}
main section {
  height: 275px;
  width: 250px;
  margin: 100px 0 0 5%;
  font-size: 1.5rem;
  border: 1px solid black;
  color: white;
  background: black;
}
main section h4 {
  height: 50px;
  border-left: 5px solid white;
  padding: 20px 0 0 15px;
  margin-top: 25px;
}
main section h3 {
  margin: 30px 0 50px 15px;
  font-size: 2rem;
  font-weight: 600;
  width: 80%;
}
main section a {
  margin: 100px 0 0 15px;
  background: white;
  color: black;
  font-size: 1rem;
}
/****************** MAIN *******************/

/***************** SECTION *****************/
section.quality {
  height: 400px;
  width: 100%;
  padding-top: 100px;
  margin: auto;
  text-align: center;
}
section.one,
section.two,
section.three {
  width: 33.3333%;
  float: left;
}
section.quality h3 {
  font-size: 3rem;
  font-weight: 600;
  margin: 25px 0 25px 0;
}
section.quality p {
  width: 75%;
  font-size: 1.5rem;
  text-align: center;
  margin: auto;
}
/***************** SECTION *****************/

/***************** SECTION *****************/
section.video {
  height: 500px;
  background: #f3f4f6;
}
section.left {
  height: 450px;
  width: 60%;
  float: left;
}
section.right {
  height: 450px;
  width: 40%;
  float: left;
  position: relative;
}
section.video h2 {
  padding: 10% 0 50px 0;
  width: 90%;
  font-size: 5rem;
  margin: auto;
}
section.video p {
  padding-bottom: 50px;
  font-size: 2rem;
  width: 90%;
  margin: auto;
}
section.left a {
  padding: 10px 20px;
  background: black;
  color: white;
  margin-left: 5%;
}
section.video video {
  margin-top: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: 90%;
}
/***************** SECTION *****************/

/***************** SECTION *****************/
.stylers {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stylers h4 {
  color: white;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 2rem;
  justify-content: center;
  /* max-width: 1200px; */
  width: 100%;
}

.individuals {
  display: flex;
  flex-direction: column;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.individuals:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.individuals img {
  width: 100%;
  height: 350px; /* Slightly increased height */
  object-fit: cover;
}

.title {
  padding: 2rem;
  background-color: #1a1a1a;
  text-align: center;
  color: #ffffff;
}

.title h3 {
  font-size: 2.5rem; /* Increased from 1.3rem */
  margin: 0 0 0.7rem 0;
  font-weight: 600;
}

.title span {
  display: block;
  color: #cccccc;
  font-size: 2rem; /* Increased from 1.1rem */
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.title .description {
  font-size: 1.5rem; /* Increased from 0.9rem */
  color: #a0a0a0;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.title .book-now {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 12px 24px; /* Slightly larger button */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem; /* Increased from 1rem */
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.title .book-now:hover {
  background-color: #45a049;
}

/* CONTACT US PAGE */

.container {
  font-size: 2rem;
}

.contact-flex {
  display: flex;
  justify-content: center;
  align-items: first baseline;
  gap: 100px;
  padding-top: 30px;
}

.testimonial-profile-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.testimonial-profile-container img {
  height: 50px;
  border-radius: 50%;
}

/***************** FOOTER ******************/

/* .footer-content {
  display: flex;
  justify-content: center;
  align-items: first baseline;
  gap: 60px;
} */

#stylists h4 {
  text-align: center;
  font-size: 2.8rem; /* Increased from 2.5rem */
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/***************** SECTION *****************/

/***************** SECTION *****************/
section.offer {
  height: auto;
  width: 100%;
  margin-top: 5vw;
  margin-bottom: 40px;
  float: left;
  background-image: url("Assets/pink.png");
  background-size: 92%;
  background-repeat: no-repeat;
  background-position: center;
}
section.offer h4 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 50px 6%;
  padding-top: 10vw;
}
section.offer h3 {
  font-size: 4rem;
  font-weight: 600;
  margin: 0 0 50px 6%;
  width: 48%;
}
section.offer a {
  padding: 10px 30px;
  color: white;
  background: black;
}
section.offer span {
  font-size: 1.5rem;
  display: inline-block;
  margin: 0 0 10vw 6%;
}
/***************** SECTION *****************/

/***************** SECTION *****************/

/* Lookbook section styles */
.lookbook {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.lookbook h2 {
  color: white;
  font-size: 3rem;
  padding: 20px 0px;
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .individuals {
    height: 400px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid img {
    height: 150px;
  }
}

@media screen and (max-width: 480px) {
  .lookbook h2 {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid img {
    height: 200px;
  }
}

/***************** SECTION *****************/

.testimonials {
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials-title {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.testimonials-subtitle {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
  font-size: 2rem;
}

.client-name {
  font-weight: bold;
  color: #333;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .individuals {
    height: 600px;
  }
}

/***************** FOOTER ******************/

.footer {
  padding: 4rem;
  color: white;
  background-color: #393939;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.footer-section p {
  margin: 0.5rem 0;
  font-size: 1.4rem;
  width: 70%;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
/***************** FOOTER ******************/

/******************************************
/* ADDITIONAL STYLES
/*******************************************/

/*****************DESKTOP*******************/
@media screen and (max-width: 1491px) {
  section.grid {
    width: 100%;
  }
}
@media screen and (max-width: 1401px) {
  li.first,
  li.last {
    width: 15%;
  }
}
@media screen and (max-width: 1282px) {
  section.video h2 {
    margin-top: 15px;
  }
}
/*****************DESKTOP*******************/

/******************TABLET*******************/
@media screen and (max-width: 1005px) {
  li.first,
  li.last {
    width: fit-content;
  }
}
@media screen and (max-width: 975px) {
  section.video {
    height: 1000px;
  }
  section.left,
  section.right {
    width: 100%;
  }
  section.video video {
    margin-left: 5%;
  }
}
@media screen and (max-width: 961px) {
  li.main,
  li.last {
    display: none;
  }
  li.first {
    width: 90%;
  }
  li.menu {
    display: contents;
    font-size: 24px;
  }
}
@media screen and (max-width: 926px) {
  div.title {
    height: 45px;
  }
  div.title h3 {
    font-size: 130%;
  }
}
@media screen and (max-width: 847px) {
  section.quality {
    padding-top: 50px;
  }
}
@media screen and (max-width: 746px) {
  section.offer {
    background-image: none;
    background-color: #d5adb5;
  }
  section.offer h3 {
    width: 92%;
    font-size: 3rem;
  }
}
@media screen and (max-width: 673px) {
  div.title h3 {
    font-size: 100%;
  }
  li.first {
    width: 75%;
  }
}
/******************TABLET*******************/

/******************MOBILE*******************/
@media screen and (max-width: 628px) {
  main {
    background-position: left;
  }
  main section {
    display: none;
  }
  h1 {
    width: 60%;
    margin-left: 4%;
    margin-bottom: 25px;
    padding-top: 75px;
    font-size: 6rem;
  }
  main p {
    width: 65%;
    margin-left: 4%;
    margin-bottom: 30px;
  }
  main a {
    display: block;
    margin-bottom: 175px;
    margin-left: 4%;
    width: 165px;
  }
  section.left {
    text-align: center;
  }
  section.video {
    height: 900px;
  }
  section.offer {
    text-align: center;
  }
  section.offer h4,
  section.offer span {
    margin-left: 0;
  }
  section.offer h3 {
    margin-left: 4%;
  }
  section.grid img.two {
    width: 95%;
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  section.one,
  section.two,
  section.three {
    width: 100%;
  }
  section.quality {
    height: 850px;
  }
  section.quality p {
    margin-bottom: 25px;
  }
  section.individuals {
    width: 100%;
  }
  div.title {
    margin-bottom: 25px;
  }
  div.title h3 {
    font-size: 130%;
  }
}
@media screen and (max-width: 412px) {
  section.grid img.three {
    width: 95%;
    height: auto;
  }
  h1 {
    padding-top: 75px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 340px) {
  section.quality {
    height: 950px;
  }
}
/******************MOBILE*******************/
