body {
  margin: 0;
  padding: 0;
  font-family: "poppins";
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display";
}

/* HEADER SECTION START'S */

.navbar {
  background-color: #001542;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
}

.navbar .logo {
  color: #fff;
  font-size: 22px;
  font-family: "playfair Display";
  font-weight: 600;
}

.navbar .logo span {
  color: #ffb30d;
}

.navbar ul {
  display: flex;
  gap: 20px;
}

.navbar li {
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.navbar li a:hover {
  border-bottom: 2px solid #ffb30d;
}

.navbar .CTA a {
  background-color: #fff;
  color: #333;
  padding: 5px 20px;
  border-radius: 4px;
}

.navbar .CTA a:hover {
  background-color: transparent;
  border: 2px solid #ccc;
  color: #fff;
  border-radius: 36px;
  transition: 0.3s;
}

/* HEADER SECTION END'S */

/* HEADER RESPONSIVE START'S */

@media (min-width: 1200px) {
  nav .toggle {
    display: none;
  }

  .icons {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
    height: 100vh;
    display: block;
    justify-content: space-between;
  }

  .navbar li a {
    font-size: 16px;
    font-weight: 400;
  }

  .navbar li a:hover {
    border-bottom: none;
  }

  .navbar ul {
    display: block;
    padding: 0px;
  }

  nav .toggle {
    position: absolute;
    right: 0;
    margin-right: 20px;
    color: #fff;
    font-size: 24px;
  }

  .navbar .CTA {
    margin-top: 20px;
  }

  nav .icons {
    margin-top: 20px;
    gap: 50px;
  }

  nav .icons i {
    font-size: 18px;
  }
}

/* HEADER RESPONSIVE END'S */

/* HERO SECTION START'S */
.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("assets/images/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section * {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-section h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "playfair Display";
  margin-bottom: -20px;
}

.hero-section h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "playfair Display";
}

.hero-section h1 span {
  color: #ffb30d;
}

.hero-section p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-section .buttons a {
  text-decoration: none;
  background: #001542; /* Default background color */
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #001542 50%, #ffb30d 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: background-position 0.4s ease-in-out;
}

.hero-section .buttons a:hover {
  background-position: right bottom;
  color: #333;
  transition: background-position 0.4s ease-in-out;
}

.hero-section .buttons a i {
  margin-left: 10px;
}

.hero-section .buttons a:hover i {
  color: #333;
}

/* HERO SECTION END'S */

/* HERO SECTION RESPONSIVE STARTS'S */

@media (max-width: 768px) {
  .hero-section {
    padding: 20px;
  }
  .hero-section h1 {
    font-size: 30px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .hero-section a {
    font-size: 14px;
  }
}

/* HERO SECTION RESPONSIVE END'S */

/* SOME AMAZING WORKS SECTION START'S */
.work-section {
  height: 75vh;
}

.work-section h3 {
  font-size: 32px;
  text-align: center;
  margin-top: 100px;
}

.work-section p {
  font-size: 14px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

.work-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px;
}

.work-item {
  position: relative;
  width: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.work-item img,
.work-item video {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease-in-out;
}

/* Slight Zoom Effect on Hover */
.work-item:hover img,
.work-item:hover video {
  transform: scale(1.1);
}

/* Overlay Effect - Bottom to Top */
.work-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: height 0.4s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.work-item:hover::after {
  height: 100%;
}

/* Text Content on Hover */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}

.work-item:hover .overlay {
  opacity: 1;
}

/* Center Align Icons */
.work-item i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  font-size: 28px;
  margin: 0 auto; /* Ensures perfect centering */
}

/* SOME AMAZING WORKS SECTION END'S */

/* SOME AMAZING WORKS SECTION RESPONSIVE START'S */

@media (max-width: 768px) {
  .work-section h3 {
    font-size: 20px;
  }

  .work-section p {
    font-size: 14px;
  }
}

/* SOME AMAZING WORKS SECTION RESPONSIVE END'S */

/* ABOUT SALON SECTION START'S */

.about-container {
  background-color: #f8f8f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px;
}

.about-images {
  display: flex;
  width: 50%;
  gap: 20px;
}

.about-images img {
  width: 250px;
  border-radius: 8px;
}

.about-content {
  width: 50%;
}

.about-content h3 {
  font-size: 28px;
  color: #000;
}

.about-content p {
  font-size: 16px;
}
/* ABOUT SALON SECTION END'S */

/* ABOUT SALON SECTION RESPONSIVE START'S */

@media (max-width: 768px) {
  .about-container {
    display: block;
    margin-top: 550px;
    padding: 50px;
  }

  .about-images {
    width: 100%;
  }

  .about-content {
    width: 100%;
  }

  .about-images img {
    width: 175px;
  }

  .about-content h3 {
    margin-top: 50px;
    font-size: 20px;
  }

  .about-content p {
    font-size: 14px;
  }
}

/* ABOUT SALON SECTION RESPONSIVE'S */

/* SERVICES SHOW SECTION START'S */

.services-section .column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px;
}

.services-section .column h3 {
  color: #000;
  font-size: 28px;
  text-align: center;
}

.services-section .column a {
  text-decoration: none;
  background: #001542; /* Default background color */
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #001542 50%, #ffb30d 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: background-position 0.4s ease-in-out;
}

.services-section .column a:hover {
  background-position: right bottom;
  color: #333;
  transition: background-position 0.4s ease-in-out;
}

.service-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-right: 100px;
  padding-left: 100px;
  margin-top: -10px;
}

.services-section .box {
  text-align: center;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
}

.services-section .box img {
  width: 300px;
  border-radius: 4px;
}

.services-section .box h4 {
  color: #000;
  font-size: 20px;
}

.services-section .box p {
  font-size: 14px;
}

.services-section .box .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.services-section .box .icons i {
  font-size: 18px;
  color: #ffb30d;
  margin-right: 10px;
}

.services-section .box a {
  text-decoration: none;
  background: #001542; /* Default background color */
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #001542 50%, #ffb30d 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: background-position 0.4s ease-in-out;
  max-width: 100%;
}

.services-section .box a:hover {
  background-position: right bottom;
  color: #333;
  transition: background-position 0.4s ease-in-out;
}
/* SERVICES SHOW SECTION END'S */

/* SERVICES SHOW SECTION RESPONSIVE START'S */

@media (max-width: 768px) {
  .services-section .column {
    padding: 50px;
  }
  .services-section .column h3 {
    font-size: 18px;
  }

  .services-section .column a {
    font-size: 12px;
    padding: 5px 10px;
  }

  .service-container {
    padding-left: 50px;
    padding-right: 50px;
    display: block;
  }

  .services-section .box {
    margin-bottom: 20px;
  }
}

/* SERVICES SHOW SECTION RESPONSIVE END'S */

/* FEATURES SECTION SECTION START'S */

.features-section h3 {
  color: #fff;
  font-size: 28px;
  text-align: center;
}

.features-section p {
  color: #fff;
  text-align: center;
  font-size: 16px;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.features-section {
  position: relative;
  background-image: url("assets/images/Professional-Makeup.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 75vh;
  margin-top: 50px;
  padding: 100px;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.features-section * {
  position: relative;
  z-index: 2;
  color: white;
}

.features-section .box {
  margin-top: 50px;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 4px;
}

.features-section .box i {
  color: #fff;
  font-size: 36px;
}

.features-section .box h4 {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.features-section .box p {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* FEATURES SECTION SECTION END'S */

/* FEATURES SECTION SECTION RESPONSIVE START'S */

@media (max-width: 768px) {
  .features-section {
    padding: 50px;
    height: auto;
  }
  .features-section p {
    font-size: 14px;
  }

  .features-container {
    display: block;
  }
}

/* FEATURES SECTION SECTION RESPONSIVE END'S */

/* FOOTER SECTION START'S */

.footer-container {
  display: flex;
  /* justify-content: center;
    align-items: center; */
}

.footer-section {
  height: 50vh;
  background-color: #001542;
  color: #fff;
  margin-top: 30px;
  padding-top: 50px;
  padding-left: 100px;
  padding-right: 100px;
}

.footer-section .box {
  width: 25%;
}

.footer-section a {
  text-decoration: none;
  color: #fff;
}

.footer-section li {
  list-style: none;
}

.footer-section h4 {
  font-size: 18px;
}

.footer-section p {
  font-size: 14px;
}

.footer-section .box input {
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  font-family: poppins;
  margin-bottom: 10px;
}

.footer-section .box form button {
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 5px 10px;
  font-family: poppins;

  border: 1px solid #ccc;
}

/* .footer-section  */

.footer-bottom {
  margin-top: 30px;
}
.footer-social {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.footer-social a {
  background-color: #fff;
  color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FOOTER SECTION END'S */

@media (max-width: 480px) {
  .footer-section {
    padding: 20px;
    height: auto;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
  }

  .footer-section .box {
    width: 100%;
  }

  .footer-section .box ul {
    padding: 0;
  }

  .footer-section .box h4 {
    margin: 0;
  }

  .footer-section .box form input {
    width: 90%;
  }
}
