@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f3e7e9, #e3eeff);
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  color: #ff6f91;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6f91;
}

.burger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Section Styling */
section {
  padding: 80px 0;
}

h2, h1 {
  font-size: 2.5rem;
  color: #ff6f91;
  margin-bottom: 40px;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

/* Hero Section (index.html) */
.hero {
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  background: url('image/banner.jpeg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(154, 62, 84, 0.5), rgba(81, 49, 124, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero h1 {
    color: #fff;
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Essence Section (index.html) */
.essence {
  background: #fff;
  border-radius: 20px;
  padding: 60px 0;
}

.essence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.essence img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

/* Products Section (index.html) */
.products {
  background: linear-gradient(135deg, #f3e7e9, #e3eeff);
}

.product-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card .price {
  color: #8f5ad9;
  font-weight: bold;
  margin: 10px 0;
}

/* Rituals Section (index.html) */
.rituals {
  background: url('image/applying.jpeg') center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 100px 0;
}

.rituals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.rituals-content {
  position: relative;
  z-index: 2;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.ritual-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.ritual-card:hover {
  transform: scale(1.05);
}
.ritual-card h3{
    color: #fff;
}
/* Ingredients Section (index.html) */
.ingredients {
  background: #fff;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-header {
  background: linear-gradient(45deg, #ff6f91, #8f5ad9);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: none;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Gallery Section (index.html) */
.gallery {
  background: linear-gradient(135deg, #e3eeff, #f3e7e9);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Story Section (index.html) */
.story {
  background: #fff;
  padding: 80px 0;
}

.story-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.story-content img {
  width: 50%;
  border-radius: 10px;
}

/* Tips Section (index.html) */
.tips {
  background: linear-gradient(135deg, #f3e7e9, #e3eeff);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tip-card i {
  font-size: 2rem;
  color: #ff6f91;
  margin-bottom: 15px;
}

.tip-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 1rem;
  color: #666;
}

/* Contact Section (index.html) */
.contact {
  background: #fff;
  padding: 80px 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  background: linear-gradient(45deg, #ff6f91, #8f5ad9);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.contact-form label{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.contact-form label input{
    width: auto;
    margin: 0;
}
.contact-form button:hover {
  transform: scale(1.05);
}

/* Shade Journey Section (discover.html) */
.shade-journey {
  background: #fff;
  border-radius: 20px;
}

.shade-journey-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.shade-journey-content img {
  width: 50%;
  border-radius: 10px;
}
/* Skin Tone Guide Section (discover.html) */
.skin-tone {
  background: url('image/parallax.jpeg') center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 100px 0;
}

.skin-tone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.skin-tone-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.skin-tone-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skin-tone-content li {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
}
.skin-tone-content li:before{
    display: none;
}
/* Shade Finder Section (discover.html) */
.shade-finder {
  background: #fff;
}

.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.finder-grid img {
  width: 100%;
  border-radius: 10px;
}

/* Shade Stories Section (discover.html) */
.shade-stories {
  background: #fff;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.story-card {
  background: linear-gradient(45deg, #ff6f91, #8f5ad9);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: scale(1.05);
}
.story-card h3{
    color: #fff;
}
/* Trends Section (discover.html) */
.trends {
  background: linear-gradient(135deg, #e3eeff, #f3e7e9);
}

.trends-content {
  max-width: 800px;
  margin: 0 auto;
}

.trends-content img {
  width: 100%;
  min-height: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Community Section (discover.html) */
.community {
  background: #fff;
  padding: 80px 0;
}

.community-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.community-grid img {
  width: 50%;
  border-radius: 10px;
}

/* Welcome Catalog Section (catalog.html) */
.welcome-catalog {
  background: #fff;
  border-radius: 20px;
}

.welcome-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.welcome-content img {
  width: 50%;
  border-radius: 10px;
}

/* Featured Products Section (catalog.html) */
.featured-products {
  background: linear-gradient(135deg, #e3eeff, #f3e7e9);
}

.featured-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}
.featured-slider::-webkit-scrollbar{
  width: 0;
}
/* Collections Section (catalog.html) */
.collections {
  background: url('image/banner.jpeg') center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 100px 0;
}

.collections::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.collections-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.collections-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.collections-content li {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
}
.collections-content li:before{
    display: none;
}

/* Limited Edition Section (catalog.html) */
.limited-edition {
  background: linear-gradient(135deg, #f3e7e9, #e3eeff);
}

.limited-grid, .shop-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.limited-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.limited-card:hover {
  transform: translateY(-10px);
}

.limited-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* New Arrivals Section (catalog.html) */
.new-arrivals {
  background: #fff;
}

.arrivals-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.arrivals-content img {
  width: 50%;
  border-radius: 10px;
}

/* Benefits Section (catalog.html) */
.benefits {
  background: linear-gradient(135deg, #e3eeff, #f3e7e9);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: linear-gradient(45deg, #ff6f91, #8f5ad9);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-card i {
  font-size: 2rem;
  margin-bottom: 15px;
}
.benefit-card h3{
    color: #fff;
}
/* Delivery Intro Section (delivery.html) */
.delivery-intro {
  background: #fff;
  border-radius: 20px;
}

.intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro-content img {
  width: 50%;
  border-radius: 10px;
}

/* Shipping Options Section (delivery.html) */
.shipping-options {
  background: linear-gradient(135deg, #e3eeff, #f3e7e9);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.option-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-10px);
}

.option-card i {
  font-size: 2rem;
  color: #ff6f91;
  margin-bottom: 15px;
}

/* Packaging Section (delivery.html) */
.packaging {
  background: #fff;
}

.packaging-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.packaging-content img {
  width: 50%;
  border-radius: 10px;
}

/* FAQ Section (delivery.html) */
.faq {
  background: linear-gradient(135deg, #f3e7e9, #e3eeff);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-header {
  background: linear-gradient(45deg, #ff6f91, #8f5ad9);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  display: none;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
}

.faq-item.active .faq-content {
  display: block;
}

/* Sustainability Section (delivery.html) */
.sustainability {
  background: linear-gradient(135deg, #e3eeff, #f3e7e9);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.sustainability-card {
  background: linear-gradient(45deg, #ff6f91, #8f5ad9);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}
.sustainability-card h3{
    color: #fff;
}
.sustainability-card:hover {
  transform: scale(1.05);
}

.sustainability-card i {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Global Reach Section (delivery.html) */
.global-reach {
  background: #fff;
}

.reach-content {
  max-width: 800px;
  margin: 0 auto;
}

.reach-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Policy and Terms Sections (privacy-policy.html, terms-of-service.html) */
.policy-section, .terms-section {
  background: #fff;
  padding: 40px;
  margin-bottom: 20px;
}

p, ul {
  margin-bottom: 20px;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding-left: 20px;
}

ul li {
  position: relative;
  margin-bottom: 10px;
}

ul li::before {
  content: '•';
  position: absolute;
  left: -20px;
  color: #ff6f91;
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.thanks .container {
  padding: 40px 20px;
}

.thanks h1 {
  font-size: 2.5rem;
  color: #ff6f91;
  margin-bottom: 20px;
}

.thanks p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Buttons */
.cta-btn, .order-btn, .home-btn {
  background: linear-gradient(45deg, #ff6f91, #8f5ad9);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-btn:hover, .order-btn:hover, .home-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.order-btn {
  padding: 10px 20px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-grid a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: #ff6f91;
}
.footer-grid h3, a.footer-logo {
  margin-bottom: 20px;
  color: #fff;
  display: inline-block;
  font-size: 24px;
}
.footer-grid i{
    margin-right: 10px;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-top{
    padding-top: 130px;
}
.reviews{
    background-color: #fff;
}
.reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
    }

    .review-card {
      background: linear-gradient(45deg, #f3e7e9, #e3eeff);
      border-radius: 15px;
      padding: 20px;
      text-align: center;
    }

    .review-rating {
      color: #8f5ad9;
      font-size: 1.2rem;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .review-text {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 15px;
      color: #333;
    }

    .review-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: #ff6f91;
    }
/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    transform: translateX(-100%);
    transition: all 0.3s ease-in;
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .burger {
    display: block;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .essence-grid,
  .story-content,
  .shade-journey-content,
  .finder-grid,
  .community-grid,
  .welcome-content,
  .arrivals-content,
  .intro-content,
  .packaging-content{
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .essence-grid img,
  .story-content img,
  .shade-journey-content img,
  .finder-grid img,
  .community-grid img,
  .welcome-content img,
  .arrivals-content img,
  .intro-content img,
  .packaging-content img{
    width: 100%;
    min-height: 200px;
  }
  .review-card {
        padding: 15px;
      }

      .review-text {
        font-size: 0.9rem;
      }
  .policy-section, .terms-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .thanks h1 {
    font-size: 2rem;
  }

  .thanks p {
    font-size: 1rem;
  }

  .home-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .container{
    padding: 0 10px;
  }
  h2, h1{
    font-size: 2rem;
  }
  .logo{
    font-size: 1.6rem;
  }
}