body {
  margin: 0;
    font-family: 'Poppins';
    
}


.navbar {
  background-color: #fff;  /* Dark brown */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

  .logo img {
      height: 50px;  
      width: auto;
    }

.logo span {
  font-style: italic;
  font-size: 16px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  color: black;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: black;
  padding: 8px 15px;
  display: block;
  font-size: 18px;
}

.nav-links a:hover {
  color: #f8c5d9
}



    /* Overlay background */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Popup box */
    .popup {
      display: flex;
      background: #fff;
      width: 700px;
      max-width: 90%;
      border-radius: 10px;
      overflow: hidden;
    }

    /* Left image section */
    .popup-left {
      flex: 1;
      background: url("https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/6c24b870-a444-4923-851b-a6703fa40c62.png") no-repeat center/cover;
      min-height: 400px;
      position: relative;
      color: white;
    }

    .popup-left .price {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(0,0,0,0.6);
      padding: 10px 20px;
      border-radius: 5px;
    }

    /* Right form section */
    .popup-right {
      flex: 1;
      background: #f8c5d9;
      padding: 20px;
      position: relative;
    }

    .popup-right h2 {
      margin-top: 0;
      color: black;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
      color: #6a2b1d;
    }

    .popup-right form {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .popup-right input, .popup-right select {
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .popup-right button {
      padding: 12px;
      background: #4b250a;
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .popup-right button:hover {
      background: #6a3a1d;
    }
       /* Slider Container */
    .slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    /* Each Slide */
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    /* Active slide */
    .slide.active {
      opacity: 1;
    }

    /* Overlay text */
    .slide-content {
      position: absolute;
      bottom: 20%;
      left: 10%;
      color: #fff;
      /* background: rgba(0,0,0,0.4); */
      padding: 20px 30px;
      border-radius: 8px;
    }

    .slide-content h1 {
      font-size: 50px;
      margin: 0;
      line-height: 1.2;
      color: black;
    }

    .slide-content span {
      font-size: 24px;
      color: #ffd700;
      font-style: italic;
    }

    /* Navigation arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 40px;
      color: black;
      cursor: pointer;
      user-select: none;
      padding: 10px;
      /* background: rgba(0,0,0,0.3); */
      border-radius: 50%;
    }

    .arrow.left {
      left: 20px;
    }
    .arrow.right {
      right: 20px;
    }

        .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      padding: 60px 10%;
      background: #fff;
    }

    /* Left Content */
    .about-text {
      flex: 1;
    }

    .about-text h2 {
      font-size: 36px;
      color: #6a1e1e;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      margin-bottom: 15px;
    }

    .about-text a {
      color: #0073e6;
      text-decoration: none;
    }
    .about-text a:hover {
      text-decoration: underline;
    }

    /* Right Image */
    .about-img {
      flex: 1;
    }

    .about-img img {
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
      object-fit: cover;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
      .about-img img {
        margin-top: 20px;
      }
    }

        .contact-section {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      background-image: url(interior-latino-hair-salon.jpg);
      object-fit: none;
    }

    .contact-form {
      background: #d7bfa5;
      padding: 30px 40px;
      border-radius: 10px;
      width: 450px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .contact-form h2 {
      font-size: 32px;
      color: #6a1e1e;
      margin-bottom: 20px;
      text-align: center;
    }

    .form-row {
      display: flex;
      gap: 15px;
    }

    .form-group {
      flex: 1;
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
      color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 5px;
      font-size: 15px;
    }

    .form-group textarea {
      resize: none;
      height: 100px;
    }

    .contact-form button {
      width: 100%;
      padding: 12px;
      background: black;
      color: #fff;
      font-size: 18px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background: #7c2d18;
    }

    .slider-min {
        margin-top: 50px;
        margin-left: 500px;
        margin-bottom: 50px;
      width: 300px;
      height: 500px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      justify-content: space-evenly;
      align-items: center;

    }
    
    h1{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .slides-min2 {
      display: flex;
      width: 300%;
      animation: slide 9s infinite;
         display: flex;
      justify-content: space-evenly;
      align-items: center;
    }

    .slides-min2 img {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      object-fit: contain;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
    }

    @keyframes slide {
      0%   { transform: translateX(0%); }
      33%  { transform: translateX(0%); }
      44%  { transform: translateX(-100%); }
      77%  { transform: translateX(-100%); }
      88%  { transform: translateX(-200%); }
      100% { transform: translateX(-200%); }
    }