@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins";
}

@font-face {
  font-family: "Poppins";
  src: url("../typography/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Alice";
  src: url("../typography/Alice-Regular.ttf") format("truetype");
  font-weight: 400;
}
.important-text {
  color: #ff5d8f;
}

.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.desktop-hide {
  display: flex;
}
@media screen and (min-width: 700px) {
  .desktop-hide {
    display: none;
  }
}

.mobile-hide {
  display: none;
}
@media screen and (min-width: 700px) {
  .mobile-hide {
    display: flex;
  }
}

hr {
  width: 100%;
  background-color: #ff5d8f;
  height: 2px;
}

body {
  background-color: #fff0f4;
  color: #19181f;
}

.body-content {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
}

a {
  color: #fbf4f6;
}

.btn {
  padding: 0.5rem 1.6rem;
  border-radius: 100px;
  background: #ff5d8f;
  border: 2px solid #ff5d8f;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  min-width: 200px;
  max-width: 600px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff0f4;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(0.95);
}

.ghost-btn {
  padding: 0.5rem 1.6rem;
  border-radius: 100px;
  background: transparent;
  border: 2px solid #fff0f4;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  min-width: 200px;
  max-width: 600px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff0f4;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.ghost-btn:hover {
  background: #fff0f4;
  color: #ff5d8f;
}

section {
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
  margin-bottom: 50px;
}

.section-title {
  font-family: "Alice";
  color: #fbf4f6;
  font-size: 2rem;
  letter-spacing: 2px;
}
@media screen and (min-width: 700px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: #fbf4f6;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.card {
  border-radius: 12px;
  background: #fff0f4;
  overflow: hidden;
  border: solid 1px #ff5d8f;
}
.card .card-content {
  padding: 1rem;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(255, 93, 143, 0.8);
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blur-out {
  filter: blur(10px);
}
.blur-out.animated {
  filter: blur(0px);
}

.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s;
}
.fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.rotate-in {
  transform: translateX(-90%) rotate(-45deg);
}
.rotate-in.animated {
  transform: translateX(0%) rotate(0deg);
}

.rotate-in-right {
  transform: translateX(90%) rotate(45deg);
}
.rotate-in-right.animated {
  transform: translateX(0%) rotate(0deg);
}

.zoom-in {
  transform: scale(0) translateY(100%);
}
.zoom-in.animated {
  transform: scale(1) translateY(0%);
}

.magic-effect {
  position: relative;
}
.magic-effect::after, .magic-effect::before {
  content: "✦";
  font-size: 2rem;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.magic-effect:hover::before, .magic-effect:active::before {
  opacity: 1;
  top: -30px;
  left: -30px;
  bottom: unset;
  right: unset;
  transform: rotate(360deg);
}
.magic-effect:hover::after, .magic-effect:active::after {
  opacity: 1;
  top: unset;
  left: unset;
  bottom: -30px;
  right: -30px;
  transform: rotate(360deg);
}

@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
.show-up-blur {
  animation: showUpBlurAnimation 1s forwards;
}

@keyframes showUpBlurAnimation {
  0% {
    opacity: 0;
    filter: blur(15px);
    transform: translateX(-300dvw);
  }
  80% {
    opacity: 0;
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0dvw);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes fadeInColumn {
  from {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: bold;
  background: #fff0f4;
  border-bottom: 1px solid #ff5d8f;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 700px) {
  .nav {
    justify-content: center;
  }
}

.nav-icon-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-icon-wrapper:hover .nav-title {
  color: #ff5d8f;
}

.nav-icon {
  width: 100%;
  max-width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: auto;
  padding: 0.5rem;
}
@media screen and (min-width: 700px) {
  .nav-icon {
    max-width: 120px;
  }
}

.nav-title {
  color: #19181f;
  font-size: 1.3rem;
}

.nav-links {
  display: none;
}
@media screen and (min-width: 700px) {
  .nav-links {
    display: flex;
    gap: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    align-items: center;
    font-size: 0.9rem;
  }
  .nav-links p {
    color: #ff5d8f;
    position: relative;
  }
  .nav-links p::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ff5d8f;
    transition: width 0.3s ease;
    transform: translateX(-50%);
  }
  .nav-links p:hover::after {
    width: 100%;
  }
}

@media screen and (min-width: 700px) {
  .nav-link {
    padding: 0.5rem 1rem;
    display: flex;
    gap: 10px;
    border-radius: 100vh;
    font-size: 1rem;
  }
}

.side-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  transform: translateX(-200%);
  padding: 1rem;
  background-color: #fbf4f6;
  z-index: -1;
  gap: 50px;
  border-right: solid 1px #fff0f4;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.side-bar-links {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.side-bar-link {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #ff5d8f;
  font-size: 1.5rem;
}

.side-bar-social {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 50px;
}

.toggle-btn {
  background: none;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 30px;
  padding: 5px;
  border-radius: 5px;
}
@media screen and (min-width: 700px) {
  .toggle-btn {
    display: none;
  }
}
.toggle-btn .bar {
  height: 2px;
  width: 100%;
  background-color: #ff5d8f;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.toggle-btn.toggled .bar:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle-btn.toggled .bar:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.toggle-btn.toggled .bar:nth-child(2) {
  opacity: 0;
}

.footer {
  background: #ff5d8f;
  color: #fbf4f6;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
  }
}

.footer-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}
.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fbf4f6;
}
@media screen and (min-width: 700px) {
  .footer-column {
    align-items: center;
  }
}

.footer-logo {
  align-self: flex-start;
  width: 150px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
}

.copyright {
  font-size: 0.85rem;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
  text-align: left;
}
.footer-links a {
  color: #fbf4f6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  opacity: 0.7;
}
.footer-links a .social-media {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.social-link {
  width: 30px;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}
.social-link:hover {
  transform: scale(1.1);
}

.contact-info {
  font-size: 0.9rem;
  line-height: 1.6;
}
.contact-info a:hover {
  opacity: 0.7;
}

.footer-bottom {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 244, 246, 0.2);
}
.footer-bottom a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.footer-bottom a:hover {
  opacity: 0.7;
}
.footer-bottom .so-logo {
  width: 50px;
  margin-bottom: 15px;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.header {
  background-image: url(../assets/header.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  background-color: #ff5d8f;
  height: 100dvh;
}
@media screen and (min-width: 700px) {
  .header {
    background-position: center;
    background-size: cover;
    height: 85dvh;
  }
}

.header-content {
  height: 95%;
  padding: 2rem;
  color: #fbf4f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
@media screen and (min-width: 700px) {
  .header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: auto;
    max-width: 1200px;
    padding: 2.5rem;
    align-items: flex-start;
  }
}

.header-title {
  font-size: 18dvw;
  line-height: 0.8;
  text-transform: capitalize;
  margin-top: 5rem;
  font-family: "Alice";
}
@media screen and (min-width: 700px) {
  .header-title {
    font-size: 8.5dvw;
    transform: none;
    text-align: left;
  }
}

.header-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  color: #fbf4f6;
  font-weight: bold;
  max-width: 400px;
  /* 	@media screen and (min-width: 700px) {
  	font-size: 1rem;
  } */
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-section .btn {
  background-color: #fff0f4;
  color: #ff5d8f;
}
@media screen and (min-width: 700px) {
  .cta-section {
    position: unset;
    padding: 0;
    flex-direction: row;
    top: unset;
  }
}

.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  margin-block: 1.5rem;
}

.list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun linear infinite;
  animation-duration: 15s;
  animation-delay: calc(15s / var(--quantity) * (var(--position) - 1)) !important;
}
.item h1 {
  font-family: "Alice";
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-wrap: nowrap;
  height: var(--height);
  text-transform: uppercase;
}

.why-us {
  width: 100%;
  padding: 0rem;
  position: relative;
}
.why-us .section-title {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 700px) {
  .why-us .section-title {
    top: 5%;
  }
}
@media screen and (min-width: 700px) {
  .why-us {
    max-width: none;
  }
}

.why-us-container {
  justify-self: center;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
}
.why-us-container:hover .reason:not(:hover) {
  filter: grayscale(1);
}
@media screen and (min-width: 700px) {
  .why-us-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason {
  background: url("../assets/dresses/preview_10.png");
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: hidden;
  color: #fbf4f6;
  width: 100%;
  aspect-ratio: 3/4;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.reason h3 {
  font-family: "Alice";
  font-size: 1.5rem;
  text-transform: capitalize;
  letter-spacing: 2px;
}
.reason p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}
.image-gallery {
  padding: 0 !important;
  max-width: 100% !important;
  width: 100%;
  margin-block: 2rem;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, #19181f, #19181f, transparent 100%);
}

.image-gallery-container {
  display: grid;
  grid-template-rows: repeat(3, minmax(150px, auto));
}
@media (min-width: 700px) {
  .image-gallery-container {
    grid-template-rows: repeat(3, minmax(200px, auto));
  }
}

.image-gallery-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(100px, 200px);
  animation: slide-left 15s linear infinite;
}
@media (min-width: 700px) {
  .image-gallery-row {
    grid-auto-columns: minmax(150px, 250px);
  }
}

.image-gallery-item {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  opacity: 0;
  animation: fadeInColumn 15s ease-out infinite;
}
.image-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.image-gallery-item:hover img {
  transform: scale(1.3);
}
.image-gallery-item:nth-child(even) {
  margin-top: -75%;
}
.image-gallery-item:nth-child(1) {
  animation-delay: 0s;
}
.image-gallery-item:nth-child(2) {
  animation-delay: 0.1s;
}
.image-gallery-item:nth-child(3) {
  animation-delay: 0.2s;
}
.image-gallery-item:nth-child(4) {
  animation-delay: 0.3s;
}
.image-gallery-item:nth-child(5) {
  animation-delay: 0.4s;
}
.image-gallery-item:nth-child(6) {
  animation-delay: 0.5s;
}
.image-gallery-item:nth-child(7) {
  animation-delay: 0.6s;
}
.image-gallery-item:nth-child(8) {
  animation-delay: 0.7s;
}
.image-gallery-item:nth-child(9) {
  animation-delay: 0.8s;
}
.image-gallery-item:nth-child(10) {
  animation-delay: 0.9s;
}

.featutes {
  padding: 2rem;
}
.featutes .section-title,
.featutes .section-subtitle {
  color: #ff5d8f;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-icon {
  width: 40px;
  margin-bottom: 0.75rem;
}

.feature-title {
  font-family: "Alice";
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #ff5d8f;
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.95rem;
  color: #ff5d8f;
  line-height: 1.5;
}

@media screen and (min-width: 700px) {
  .featutes {
    padding: 2rem;
  }
  .features-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .features-column {
    max-width: 450px;
  }
  .feature-title {
    font-size: 1.3rem;
  }
  .feature-text {
    font-size: 1rem;
  }
}
.shop-preview .section-title,
.shop-preview .section-subtitle {
  color: #ff5d8f;
}

.shop-preview-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 700px) {
  .shop-preview-container {
    flex-direction: row;
  }
}

.preview-card-img {
  width: 100%;
}

.product-card-container {
  display: flex;
  width: 100%;
}
.product-card-container .product-card {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #fff0f4;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
  border: solid 2px #ff5d8f;
  position: relative;
  z-index: 0;
}
.product-card-container .product-card::before {
  content: url("../assets/wave.svg");
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  z-index: 1;
  transition: all 0.2s ease-out;
  transform: scale(1.5) translateX(-5%);
}
.product-card-container .product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background-color: #ff5d8f;
  z-index: 1;
  transition: all 0.2s ease-out;
}
.product-card-container .product-card:hover {
  transform: scale(1.02);
}
.product-card-container .product-card:hover .preview-card-img {
  transform: scale(1.1);
}
.product-card-container .product-card:hover::before, .product-card-container .product-card:hover::after {
  transform: translateY(15%);
}
.product-card-container .product-card:hover::before {
  transform: scale(2) translateX(-15%);
}
.product-card-container .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1rem;
  text-align: left;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .product-card-container .product-card-container {
    gap: 15px;
  }
  .product-card-container .product-card {
    max-width: 250px;
  }
}

.shop-preview .btn {
  margin-top: 1.5rem;
}
@media screen and (min-width: 700px) {
  .shop-preview .btn {
    max-width: 300px;
  }
}

.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(255, 240, 244, 0.3), rgba(255, 240, 244, 0.9));
  box-shadow: 0 -15px 50px rgba(255, 240, 244, 0.4);
  width: 100%;
  height: 30%;
  z-index: 0;
}

.about-us {
  max-width: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}

.about-us-container {
  justify-items: center;
  gap: 0;
}

.about-us-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.about-us-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background-color: #ff5d8f;
  color: #fbf4f6;
}
.about-us-text .section-subtitle {
  margin-top: unset;
  margin-bottom: unset;
}
.about-us-text p {
  text-align: justify;
}
.about-us-text .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.about-us-text .social img {
  width: 100%;
  max-width: 30px;
}
.about-us-text .social p {
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .about-us-text {
    text-align: justify;
  }
  .about-us-text .section-title {
    font-size: 2.5rem;
  }
  .about-us-text p {
    text-align: left;
  }
  .about-us-text .social {
    justify-content: left;
  }
}

.about-links {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-self: center;
}
@media screen and (min-width: 700px) {
  .about-links {
    gap: 30px;
    align-self: flex-start;
  }
}

/*# sourceMappingURL=style.css.map */
