* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}
.header.scrolled {
   backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* ===== MENU ===== */
.menu {
  list-style: none;
  gap: 25px;
  display: flex;
  align-items: center;
}

.menu li a {
  text-decoration: none;
  color: #fff9f5;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
  font-family: 'Playfair Display', serif;
}

.menu li a:hover {
  color: #f8c471;
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 80px;
    right: -100%;
    background: rgba(0,0,0,0.9);
    width: 260px;
    height: calc(100vh - 80px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 20px;
    transition: 0.4s ease;
  }
  .menu.active {
    right: 0;
  }
}
/* ===== HEX LOGO ===== */
.hex {
  position: relative;
  height: 95px;
  width: 200px;
  background: #fff9f5;
  border: 1px solid #d1c4b0;
  clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hex {
    width: 140px;
    height: 65px;
  }
}


.header .hex img.logo {
  width: 100%;
  object-position: center center;
  height: auto;
  transition: transform 0.3s ease;
}
/* ===== ICONS ===== */
.menu li i {
  font-size: 1.3rem;
  color: white;
  transition: 0.3s;
}
 
.menu li i:hover {
  color: orangered;
  transform: scale(1.2);
}

/* ===== SEARCH FIELD ===== */
.search-container {
  position: relative;
}

.search-icon {
  font-size: 1.3rem;
  color: white;
  cursor: pointer;
}

.search-input {
  position: absolute;
  right: 0;
  width: 300px;
  top: 100%;
  opacity: 0;
  border: none;
  outline: none;
  padding: 6px 35px 6px 15px;
  border-radius: 20px;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
}

.search-input.show {
  width: 180px;
  opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 120px;
  background: url("Assets/images/hero.jpg") no-repeat center center/cover;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Left Section */
.hero-left h1 {
  text-transform: capitalize;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff9f5;
  margin-bottom: 25px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.decor {
  color: #daccc3;
  font-weight: 700;
}

.tagline {
  font-family: 'Poppins', sans-serif;
  color: #d1bfa8;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1.5px solid #d1bfa8;
  border-radius: 50%;
  margin: 0 8px;
  transform: translateY(1px);
}

/* Buttons */
.bt,
.bt1 {
  border-radius: 30px;
  transition: all 0.3s ease;
}

.bt {
  background: transparent;
  color: #73aef2;
  border: 2px solid #73b0f5;
  width: 250px;
  padding: 10px 5px;
  font-size: 1rem;
}

.bt:hover {
  background: #73aef2;
  color: #fff;
  border: none;
  transform: scale(1.025);
}

.bt1 {
  background: #fff;
  color: lightcoral;
  border: 2px solid #daccc3;
  padding: 20px 23px;
  font-size: 1.2rem;
}

.bt1:hover {
  background: transparent;
  color: #daccc3;
  border-color: #daccc3;
  transform: translateY(-2px);
}

.bt3 {
  margin-top: 20px;
  margin-left: 100px;
  background: #fff;
  color: navy;
  border: 2px solid #daccc3;
  padding: 20px 30px;
  width: 300px;
  font-size: 1.3rem;
  border-radius: 30px;
}

.bt3:hover {
  background: transparent;
  color: #daccc3;
  border-color: #daccc3;
  transform: translateY(-2px);
}

.btn-mi {
  margin-top: -20px;
}
.bt {
  width: 250px;
}

@media (max-width: 576px) {
  .bt, .bt1, .bt3 {
    width: 100%;
    margin-left: 0;
  }
}
/* Carousel */
.hero-carousel {
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 00px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease;
}

.hero-carousel:hover {
  transform: scale(1.05);
}

.hero-carousel img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.new-bg {
  background-image: url(Assets/images/bg.jpg);
  background-size: cover;
}

@media (max-width: 992px) {
  .hero-left h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-carousel img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 1.8rem;
  }

  .bt,
  .bt1 {
    font-size: 1rem;
  }

  .hero-carousel img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-left h1 {
    font-size: 1.5rem;
  }

  .hero-carousel img {
    height: 250px;
  }
}


/* se */
.img-logo{
  height: 500px;
}
.ka{
  padding: 100px 0 0 0 ;
}
.atelier-section {
  font-family: "Playfair Display", serif;
  background-image: url("Assets/images/bg.jpg"); /* Replace with your actual background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #2b1d3a;
  text-align: left;
  padding-bottom: 20px;
}

.atelier-section .main-title {
  font-style: italic;
  color: #2b1d3a;
  font-size: 2.8rem;
  font-weight: 600;
}

.atelier-section .subtitle {
  font-size: 1.2rem;
  color: #4c3b60;
  font-style: italic;
  /* margin-bottom: 60px; */
}

.section {
  padding: 30px 0;
}

.atelier-section .text-block {
  color: #2b1d3a;
  font-size: 1.5rem;
  line-height: 1.9;
}

.atelier-section .text-block em {
  color: #4c2d6f;
  font-weight: 600;
}

.atelier-section .image-box img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.atelier-section h3 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #4c2d6f;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .atelier-section {
    text-align: center;
  }

  .atelier-section .image-box {
    margin-top: 25px;
  }

  .atelier-section .main-title {
    font-size: 2.2rem;
  }
}



/* footer */

    footer {
      background-color: #dfe6f0; /* light grey-blue like image */
      padding: 30px 0;
      font-family: 'Arial', sans-serif;
      font-size: 14px;
      color: #000;
    }
    .footer-left {
      font-size: 13px;
    }
    .footer-right p {
      margin: 0;
      line-height: 1.8;
    }
    .footer-right a {
      color: #000;
      text-decoration: none;
    }
    .footer-right a:hover {
      text-decoration: underline;
    }

/* kl */
  /* .concept-section {
  
  } */

  .concept-section h2 {
    color: #2d2d2d;
    font-style: italic;
  }

  .concept-section .text-brown {
    color: #8a4f34; /* same as image brown italic text */
  }

  .concept-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  @media (max-width: 768px) {
    .concept-section h2 {
      font-size: 1.4rem;
    }
    .concept-section p {
      font-size: 14px;
    }
  }

  /* happy client */
  .concept-section {
    padding: 50px 0 0 30px ;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.25);
    color: hotpink;
    font-family: 'Georgia', serif;
  }

  .concept-section h2 {
    color: #2d2d2d;
    font-style: italic;
  }

  .concept-section .text-brown {
    color: #8a4f34;
  }

  .counter {
    color: #2d2d2d;
    transition: all 0.3s ease-in-out;
  }

  @media (max-width: 768px) {
    .concept-section h2 {
      font-size: 1.4rem;
    }
    .concept-section p {
      font-size: 14px;
    }
  }


   .testimonial-section {
    /* background: url("0cdb32ae-d518-447a-a3f5-5263b3546114.png") center/cover fixed no-repeat; */
    position: relative;
    overflow: hidden;
  }

  .testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(255, 255, 255, 0.5); */
    backdrop-filter: blur(6px);
  }

  .testimonial-section .container {
    position: relative;
    z-index: 1;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #8a4f34;
  }

  .text-brown {
    color: #8a4f34;
  }

  /* Animation on scroll */
  .testimonial-card {
    opacity: 0;
    transform: translateY(40px);
  }

  .testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
  }


  /* contacte  */
/* Contact Section Layout */
.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-container {
  display: flex;
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

/* Left Form Box */
.contact-form-box {
  flex: 1;
  padding: 40px 50px;
  color: #222;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
}

.contact-form-box h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-form-box p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #333;
}

/* Send Button */
.send-btn {
  background: #333;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #000;
}

/* Right Image Box */
.contact-image-box {
  flex: 1;
  overflow: hidden;
}

.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form-box, .contact-image-box {
    width: 100%;
  }
  .contact-image-box img {
    height: 300px;
  }
}   
@media (max-width: 576px) {
  .contact-form-box {
    padding: 25px 20px;
  }
}


@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 80px;
    right: -100%;
    background: rgba(0,0,0,0.9);
    width: 260px;
    height: calc(100vh - 80px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 20px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .menu li {
    margin-bottom: 20px;
  }

  .menu.active {
    right: 0;
  }

  .search-input {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .bt, .bt1, .bt3 {
    width: 100%;
    margin-left: 0;
  }

  .hero-left h1 {
    font-size: 1.5rem;
  }
}








