/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #111;
  min-height: 100vh;

  /* Premium textured background */
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4), transparent 40%),
    url("../IMG/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: #111;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  height: 90px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* ================= HAMBURGER ================= */
.menu-btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid #111;
  border-radius: 18px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-btn span {
  width: 20px;
  height: 1.5px;
  background: #111;
  transition: 0.3s ease;
}

.menu-btn:hover {
  border-color: #c9a55c;
}

/* ================= MENU OVERLAY ================= */
.menu {
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4), transparent 40%),
    url("../IMG/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.menu.active {
  display: flex;
}

/* ================= MENU PANEL ================= */
.menu-content {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 50px 40px;
  border-radius: 28px;
  width: min(400px, 90%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  animation: fadeScale 0.4s ease forwards;
}

.menu-content a {
  padding: 14px 20px;
  border: 1.5px solid #111;
  border-radius: 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease;
}

.menu-content a:hover {
  background: #111;
  color: #fff;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 1.5px solid #111;
  border-radius: 14px;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.close-menu:hover {
  background: #111;
  color: #fff;
}

/* ================= PAGE TITLE ================= */
.price-wrapper {
  padding: 120px 0;
}

.price-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: 4px;
}

/* ================= PRICE SECTIONS ================= */
.price-section {
  margin-bottom: 80px;
}

.price-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid #c9a55c;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 17px;
}

.price-row span:last-child {
  font-weight: 500;
}

/* ================= INFO BOX ================= */

.price-info-box {
  border: 1.5px solid #111;
  border-radius: 32px;
  padding: 50px;
  margin-bottom: 100px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
}

.price-info-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.price-info-box h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.price-info-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.price-info-box li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.price-info-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a55c;
}

.important-note {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #c9a55c;
  border-radius: 20px;
  background: rgba(201,165,92,0.08);
  font-size: 15px;
}

.price-subtitle {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.7;
}

.price-note {
  margin-top: 15px;
  font-size: 14px;
  color: #c9a55c;
}


/* ================= CTA SECTION ================= */

.price-cta {
  padding: 120px 0;
  text-align: center;
}

.cta-image img {
  max-width: 600px;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  margin-bottom: 50px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 50px;
  border-radius: 40px;
  border: 1.5px solid #c9a55c;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.4s ease;
}

.cta-btn:hover {
  background: #c9a55c;
  color: #fff;
}

/* ================= ANIMATION ================= */
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  .price-title {
    font-size: 38px;
    margin-bottom: 70px;
  }

  .price-row {
    flex-direction: column;
    gap: 6px;
  }
    .price-cta {
    padding: 80px 20px;
  }

  .cta-image img {
    max-width: 90%;
  }

}
