/* GLOBAL */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

.btn.secondary {
  background-color: #6F86A7;
  color: #fff;
  transition: 0.2s ease;
}

/* Hover effect (optional) */
.btn.secondary:hover {
  background-color: #44334A;
}

/* Press (click) effect */
.btn.secondary:active {
  background-color: #44334A;
  transform: scale(0.97); /* small press animation */
}

.btn.primary {
  background-color: #6F86A7;
  color: #fff;
  transition: 0.2s ease;
}

/* Hover effect (optional) */
.btn.primary:hover {
  background-color: #44334A;
}

/* Press (click) effect */
.btn.primary:active {
  background-color: #44334A;
  transform: scale(0.97); /* small press animation */
}




body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #44334A;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

/* Background Layer */
/*body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.10)),
    url('bg1.webp');
    
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  z-index: -1;
}*/


html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background:
    linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.10)),
    url('bg1.webp');

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  z-index: -1;
}

/* Mobile View */
@media (max-width: 768px) {
  body::before {
    background-size: cover;
    background-position: left top;
  }
}



img,
video {
  display: block;
  max-width: 100%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #44334A 40%,
    rgba(68, 51, 74, 0.8) 50%,
    rgba(68, 51, 74, 0.2) 100%
  );
  z-index: 2;
}

/* CONTAINER */
.hero-container {
  width: min(1000px, calc(100% - 80px));
  margin-left: 80px;
 
  margin-right: auto;
  position: relative;
  z-index: 3;
}

/* CONTENT */
.hero-content {
  max-width: 500px;
  color: #fff;
  text-align: left;
}

/* TEXT */
.label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: clamp(3rem, 5vw, 56px);
  line-height: 1.1;
  font-weight: 530;
  margin: 0 0 45px;
}

.subtext {
  color: #D6C9DB;
  margin: 0 0 38px;
  max-width: 42ch;
  line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.btn.primary {
  background: #50698D;border: 1px solid #ccc;
  color: #fff;
}

.btn.secondary {
  border: 1px solid #ccc;
  color: #fff;
}

/* BUSINESS PROOF */
.business-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.avatars {
  display: flex;
  padding-left: 8px;
}

.avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #44334A;
}

.avatars img:first-child {
  margin-left: 0;
}

/* HERO WAVE */
.hero-wave {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 160px;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
	
}

/* SERVICES */
.services-section {
  padding: 40px 20px 40px;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 4vw, 48px);
  font-style: italic;
  color: #44334A;
}

.services-subtext {
  margin: 10px auto 40px;
  max-width: 600px;
  line-height: 1.7;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-box {
  min-height: 140px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.purple {
  background: #44334A;
}

.blue {
  background: #50698D;
}

.lavender {
  background: #6E5A73;
}

.lightblue {
  background: #7D9FC0;
}

.service-box::before,
.service-box::after {
  content: "✿";
  position: absolute;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.service-box::before {
  top: 10px;
  left: 12px;
}

.service-box::after {
  bottom: 10px;
  right: 12px;
  opacity: 0.3;
}

.glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: 0.3s;
}

.service-box:hover .glow {
  opacity: 1;
}

.service-box:hover {
  transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container {
    width: min(100% - 48px, 1200px);
    margin-left: 48px;
  }

  .hero-video {
    width: 70%;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 0 0 110px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    opacity: 0.5;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(68, 51, 74, 0.35) 0%,
      rgba(68, 51, 74, 0.78) 220px,
      rgba(68, 51, 74, 0.96) 100%
    );
  }

  .hero-container {
    width: min(100% - 32px, 680px);
    margin: 190px auto 0;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-buttons,
  .business-proof {
    justify-content: flex-start;
  }

  .hero-wave {
    height: 105px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 0 0 90px;
  }

  .hero-video {
    height: 270px;
    object-position: center top;
    opacity: 0.48;
  }

  .hero-container {
    width: calc(100% - 28px);
    margin: 160px auto 0;
  }

  .label {
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
  }

  .subtext {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 13px;
  }

  .business-proof {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  .services-section {
    padding: 64px 16px 30px;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .services-subtext {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .service-box {
    min-height: 124px;
    font-size: 18px;
    border-radius: 18px;
    padding: 16px;
  }
}








.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADINGS */
/*h1, h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #4a3b52;
}*/

h1 {
  margin-top: 40px;
  font-size: 2.8rem;
}

.subtitle {
  text-align: center;
  color: #7d6f86;
  margin-bottom: 25px;
}

/* FILTER BUTTONS */
.filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filters button {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.filters button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn1 { background: #4a3b52; }
.btn2 { background: #5e6f8f; }
.btn3 { background: #6e5a76; }
.btn4 { background: #7f96b4; }

/* SEARCH */
.search {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.search input {
  width: 320px;
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.85rem;
  color: #666;
}

.card button {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #5e6f8f;
  background: white;
  cursor: pointer;
}

/* SHOP SECTION */
.section-title {
  margin-top: 60px;
  font-size: 2.2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* PRODUCT CARD */
.product {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.product-content {
  padding: 15px;
}

.price {
  font-weight: bold;
  margin-top: 8px;
}

.product button {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  background: #5e6f8f;
  color: white;
  cursor: pointer;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #4a3b52;
  color: white;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width:600px){
  h1 { font-size: 2rem; }
}




.cta-section {
  position: relative;
  background: #4b3a52; /* purple */
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

/* CONTENT */
.cta-content {
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.cta-label {
  letter-spacing: 3px;
  font-size: 12px;
  color: #9ec3ff;
  display: block;
  margin-bottom: 20px;
}
 
/*.cta-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}*/

.cta-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-section h2 em {
  font-style: italic;
  opacity: 0.8;
}

.cta-section p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #4b3a52;
}

/* WAVES */
.cta-wave {
  position: absolute;
  width: 100%;
  left: 0;
}

.cta-wave svg {
  width: 100%;
  height: 100px;
  display: block;
}

.cta-wave.top {
  top: 0;
}

.cta-wave.top path {
  fill: #F5F3EF; /* matches section above */
}

.cta-wave.bottom {
  bottom: 0;
}

.cta-wave.bottom path {
  fill: #F5F3EF; /* matches section below */
}





.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  border-radius: 50%;
}

.cta-section::before {
  top: 40px;
  left: 60px;
}

.cta-section::after {
  bottom: 40px;
  right: 60px;
}
