@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  min-height: 100%;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Single Day-Regular";
  src: local("Single Day-Regular");
}
@font-face {
    font-family: "Vividly-Regular";
    src: url("./Vividly-Regular.otf") format("woff2"),
         url("./Vividly-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: "Vividly-Regular";
  src: local("Vividly-Regular");
}

/* ===== MAIN SCREEN ===== */
.screen {
  background-color: #fff5fa;
  overflow-x: hidden;
  width: 100%;
  min-width: 390px;
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: "Single Day";
  font-size: 28px;
  color: #5b1133;
}

.back-btn {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
  border: 1.5px solid #ffd5ea;
  padding: 10px 20px;
  border-radius: 50px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #ffe3f1;
}

/* ===== DECORATIVE ELLIPSES ===== */
.ellipse-main {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background-color: #ffffff;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}

.ellipse-2 {
  position: absolute;
  top: 400px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: #ffffff;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 0;
}

.ellipse-3 {
  position: absolute;
  top: 1000px;
  right: -100px;
  width: 350px;
  height: 350px;
  background-color: #ffffff;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.ellipse-4 {
  position: absolute;
  top: 1800px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background-color: #ffffff;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px 80px;
}

.hero-badge {
  display: inline-block;
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
  background: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  border: 1.5px solid #ffd5ea;
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 48px;
  color: #5b1133;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 16px;
  color: #5b1133;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 40px;
}

.hero-image-container {
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50px;
  border: 2px solid #ffd5ea;
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.section-number {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 40px;
  color: #5b1133;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 32px;
  color: #5b1133;
  margin-bottom: 30px;
}

/* ===== STORY SECTION ===== */
.story-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-text p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 16px;
  color: #5b1133;
  line-height: 1.8;
  margin-bottom: 15px;
}

.story-text strong {
  font-weight: bold;
}

.story-image {
  width: 100%;
  height: 200px;
  border-radius: 30px;
  border: 2px solid #ffd5ea;
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.philosophy-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 30px;
  border: 1.5px solid #ffd5ea;
  text-align: center;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 213, 234, 0.3);
}

.philosophy-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.philosophy-card h3 {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 20px;
  color: #5b1133;
  margin-bottom: 10px;
}

.philosophy-card p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
  line-height: 1.6;
}

/* ===== WHY SECTION ===== */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border: 1.5px solid #ffd5ea;
}

.why-number {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 24px;
  color: #5b1133;
  min-width: 40px;
}

.why-text h3 {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 18px;
  color: #5b1133;
  margin-bottom: 5px;
}

.why-text p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
  line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 30px;
  border: 1.5px solid #ffd5ea;
  text-align: center;
}

.product-img {
  width: 100%;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 18px;
  color: #5b1133;
  margin-bottom: 8px;
}

.product-card p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 30px;
  border: 1.5px solid #ffd5ea;
  text-align: center;
}

.stars {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffc0e0;
}

.testimonial-card p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 15px;
  color: #5b1133;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-card .author {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}

.cta-title {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 32px;
  color: #5b1133;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-btn {
  display: inline-block;
  font-family: "Vividly-Regular", Helvetica;
  font-size: 16px;
  color: #5b1133;
  background: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  border: 1.5px solid #ffd5ea;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffe3f1;
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.footer p {
  font-family: "Vividly-Regular", Helvetica;
  font-size: 14px;
  color: #5b1133;
  line-height: 1.8;
}

/* ===== SCROLL ANIMATIONS ===== */

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* When element becomes visible */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Different delays */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Different directions */
.animate-on-scroll.slide-left {
  transform: translateX(-40px);
}
.animate-on-scroll.slide-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  transform: translateX(40px);
}
.animate-on-scroll.slide-right.visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-up {
  transform: scale(0.9);
}
.animate-on-scroll.scale-up.visible {
  transform: scale(1);
}

/* ===== LOAD ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Load animation classes */
.load-fade-down {
  animation: fadeInDown 0.8s ease forwards;
}

.load-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.load-fade-scale {
  animation: fadeInScale 0.8s ease forwards;
}

.load-float {
  animation: float 3s ease-in-out infinite;
}

/* Staggered load delays */
.load-delay-1 { animation-delay: 0.1s; opacity: 0; }
.load-delay-2 { animation-delay: 0.2s; opacity: 0; }
.load-delay-3 { animation-delay: 0.3s; opacity: 0; }
.load-delay-4 { animation-delay: 0.4s; opacity: 0; }
.load-delay-5 { animation-delay: 0.5s; opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .header {
    padding: 20px;
  }
  
  .logo {
    font-size: 22px;
  }
  
  .back-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 26px;
  }
}

/* ===== SCROLL ANIMATIONS - KEEPS ALL ROTATIONS & DESIGNS ===== */

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* When element becomes visible - !important keeps rotations safe */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Different delays */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }