/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: linear-gradient(135deg, #2e3a34, #cfa287); */
    /* background: linear-gradient(to top left,#462022,#000000); */
    background-color: #d8b99c;

  color: #fff;
  padding: 20px 40px;
  transition: background 0.4s ease, transform 0.4s ease;
  border-bottom: 2px solid rgba(255, 218, 185, 0.2);
  flex-wrap: wrap;
}

.header-top:hover {
  background: linear-gradient(135deg, #38463f, #d7a98f);
  transform: scale(1.02);
}

.header-top h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

.header-top img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 25px;
  /* border: 2px solid #fce5d0; */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.header-top img:hover {
  transform: rotate(8deg) scale(1.05);
  border-color: #ffd7b0;
}

/* RESPONSIVE HEADER */
@media (max-width: 992px) {
  .header-top {
    padding: 15px 25px;
  }
  .header-top h2 {
    font-size: 28px;
  }
  .header-top img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .header-top {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 25px 30px;
  }
  .header-top h2 {
    font-size: 22px;
  }
  .header-top img {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .header-top {
    gap: 8px;
    padding: 15px;
  }
  .header-top h2 {
    font-size: 20px;
  }
  .header-top img {
    width: 45px;
    height: 45px;
  }
}

/* HERO */
.hero {
  background: url("./img/6.jpg") no-repeat center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero h3 {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url("./img/13.png");
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: move-bg 20s linear infinite;
  text-align: center;
  z-index: 2;
  transition: transform 0.8s ease, letter-spacing 0.8s ease;
}

.hero:hover h3 {
  transform: scale(1.05);
  letter-spacing: 3px;
}

@keyframes move-bg {
  100% {
    background-position: 2000px 0;
  }
}

/* MAIN */
.container {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #fce5d0, #e8c5aa, #cfa287); */
    /* background: linear-gradient(to bottom,#6b1f20,#120a0a); */
    background-color: #c2a78c;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
  position: relative;
  overflow: hidden;
}

.container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./img/Screenshot\ 2025-10-07\ 101344.png") center/250px no-repeat;
  opacity: 0.08;
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 1;
}

.accordion-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: url("./img/Screenshot\ 2025-10-07\ 101344.png") center/contain no-repeat;
  transform: translate(-50%, -50%) rotate(-15deg);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  animation: containerGlow 15s linear infinite;
  z-index: 0;
}

@keyframes containerGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.container > * {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-size: 2.3rem;
  letter-spacing: 1px;
  position: relative;
}

.container h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffb199, #ff0844);
  /* background: linear-gradient(to bottom,#6b1f20,#120a0a); */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ACCORDION */
.accordion-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}

.accordion-header::after {
  content: "+";
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  content: "-";
  transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
  color: #ff0844;
  background: #fff5f7;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 9999px;
  opacity: 1;
  padding: 15px 20px 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #444;
  transition: background 0.3s ease;
}

.price-item:hover {
  background: #fafafa;
}

.price-item:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 350px;
  }
  .hero h3 {
    font-size: 36px;
    padding: 0 10px;
  }
  .price-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* FOOTER */
.footer {
  /* background: linear-gradient(135deg, #2e3a34, #cfa287); */
  /* background: linear-gradient(to top left,#462022,#000000); */
  background-color: #d8b99c;
  color: #fff;
  text-align: center;
  padding: 50px 20px 30px;
  border-top: 2px solid rgba(255, 218, 185, 0.2);
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

.footer-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffd7b0;
  transform: scale(1.2);
}

.footer .copyright {
  font-size: 14px;
  opacity: 0.8;
  color: #fff;
}

/* Responsive Footer */
@media (max-width: 480px) {
  .footer-content h3 {
    font-size: 22px;
  }
  .social-icons a {
    font-size: 20px;
  }
}
