* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: #333;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  position: relative;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #fff0f3, #ffe6ea, #fff0f3, #ffe6ea);
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-image {
  width: 100%;
  max-width: 600px;
  margin: 30px 0;
  border-radius: 20px;
  background: #ffffff;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89b6f;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.6s;
}
.hero h1 {
  font-size: 3rem;
  color: #b89b6f;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
}
.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
  opacity: 0;
  animation: fadeUp 1s forwards 0.9s;
}
.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #b89b6f;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: fadeUp 1s forwards 1.2s;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(184, 155, 111, 0.3);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #b89b6f;
  border-radius: 2px;
}

.candles {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}
.candles h2 {
  font-size: 2.5rem;
  color: #b89b6f;
  margin-bottom: 40px;
}
.candle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.candle-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}
.candle-card img {
  border-radius: 15px;
  margin-bottom: 15px;
}
.candle-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #b89b6f;
}
.candle-card p {
  font-size: 1rem;
  color: #666;
}
.candle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(184, 155, 111, 0.3);
}
.candle-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(184, 155, 111, 0.4);
  pointer-events: none;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 20px;
  background: #ffffff;
}
.about img {
  width: 400px;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s forwards;
}
.about-text {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s forwards;
}
.about-text h2 {
  font-size: 2rem;
  color: #b89b6f;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonials {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}
.testimonials h2 {
  font-size: 2.5rem;
  color: #b89b6f;
  margin-bottom: 50px;
}
.testimonial-card {
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
}

.newsletter {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
}
.newsletter input[type="email"] {
  padding: 15px 20px;
  border-radius: 50px;
  border: 1px solid #b89b6f;
  margin-right: 10px;
  width: 250px;
  max-width: 80%;
  outline: none;
}
.newsletter button {
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  background: #b89b6f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.5s, box-shadow 0.5s;
}
.newsletter button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(184, 155, 111, 0.4);
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  color: #b89b6f;
  font-weight: 500;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  width: 60px;
  height: 3px;
  background: #b89b6f;
  margin: 30px auto;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    padding: 60px 20px;
  }
  .about img,
  .about-text {
    transform: translateX(0);
    opacity: 1;
    animation: none;
  }
  .about img {
    width: 80%;
    max-width: 400px;
    margin-bottom: 20px;
  }
  .candle-grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
  .hero-image {
    height: 300px;
  }
  .candle-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonials h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .hero-image {
    height: 220px;
  }
  .candle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .newsletter input[type="email"] {
    width: 80%;
    margin-bottom: 10px;
  }
  .newsletter button {
    width: 80%;
    padding: 12px 0;
  }

  .candle-card:hover,
  .btn:hover {
    transform: none;
    box-shadow: none;
  }
  .fade-up {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero {
    animation: gradientMove 40s ease infinite;
  }
}
