/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #bf9563;
}

html {
  scroll-behavior: smooth;
}

/* FONTS */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "SF Pro";
  src: url("../assets/fonts/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
}

/* GLOBAL */
body {
  font-family: "SF Pro", sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
  /* padding-top: 98px; */
}

h1,
h2,
h3,
.logo {
  font-family: "Playfair Display", serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.header.sticky {
  position: fixed;
  background: rgba(30, 20, 13, 0.95);
  backdrop-filter: blur(8px);
  color: #ffff;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.header.sticky .logo {
  color: #e5e5e5;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  color: #ffff;
  text-decoration: none;
}

/* GOLD BUTTON */
.btn-gold {
  background: linear-gradient(91.55deg, #bf9563 2.71%, #755234 99.1%);
  height: 48px;
  border-radius: 60px;
  padding: 0 30px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "SF Pro", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

/* Smooth Shine Effect */
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.7s;
}

/* HOVER EFFECT */
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(191, 149, 99, 0.45);
}

.btn-gold:hover::before {
  left: 130%;
}

/* ACTIVE (press effect) */
.btn-gold:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(191, 149, 99, 0.35);
}

/* HERO */
.hero {
  position: relative;
  height: 890px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #ffffff;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-left h1 {
  font-weight: 600;
  font-size: 68px;
  line-height: 84px;
  max-width: 550px;
}

.gold {
  color: #e6c28b;
}

.hero-right {
  max-width: 345px;
  background: rgba(0, 0, 0, 0.45);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-right p {
  margin-bottom: 25px;
  font-size: 18px;
  font-style: normal;
  color: #ffffff;
  line-height: 26px;
  font-weight: 400;
}

/* FEATURES SECTION */
.features {
  background: linear-gradient(
    211.54deg,
    #b38c63 9.79%,
    #221b15 77.74%,
    #1c1713 100%
  );
  padding: 120px 0;
  color: white;
}

.features h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 80px;
}

.feature {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.feature p {
  color: #ddd;
}

.mockup img {
  width: 280px;
}

/* PRODUCT STRIP */
.product-strip {
  background: #1e140d;
  padding: 120px 0;
  color: white;
  text-align: center;
}

.product-strip h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.mockup-row img {
  width: 672px;
  height: auto;
  margin-top: 40px;
}

/* FINAL CTA */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: #ffffff;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

/* FOOTER */
.footer {
  background: #1e140d;
  color: white;
  padding: 80px 0;
}
.footer h4 {
  font-size: 28px;
  margin-bottom: 20px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
}

.footer a {
  color: #e5e5e5;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}
/*  */
.early-form {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.early-form input {
  padding: 14px 20px;
  width: 280px;
  border-radius: 40px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.early-form button {
  margin-left: 10px;
  border: none;
  cursor: pointer;
}

.early-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.feature {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.box-built {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}
.box-built h2 {
  font-family: SF Pro;
  font-weight: 590;
  font-size: 48px;
  margin-bottom: 0;

  color: #c1aa8b;
}
.box-built p {
  font-family: SF Pro;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 40px;
}
/* ===============================
   VERTICAL SLIDER
================================= */

.slider {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  height: 600px;
}

.slides {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s ease;
  /* transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); */
}

.slide {
  min-height: 600px; /* same as slider */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-inner {
  background: linear-gradient(
    100.48deg,
    #cbab7c 0%,
    #bd9d74 42.97%,
    #794c2f 100%
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  color: white;
  width: 100%;
  max-width: 1100px;
  padding: 60px;
}

.slide-inner .mockup {
  width: 450px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #bf9563;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-inner .mockup img {
  width: 260px;
  height: auto;
  position: absolute;
  bottom: 0;
}
.slide-inner .text h3 {
  font-family: SF Pro;
  font-weight: 590;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 20px;
  color: #ffffff;
}
.slide-inner .text p {
  font-family: SF Pro;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
}
/* NAV BUTTONS */

.slide-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #bf9563, #755234);
  border: none;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  z-index: 10;
}

/* .slide-btn:hover {
  transform: translateX(-50%) scale(1.1);
} */

.prev {
  top: 10px;
  transform: translateX(-50%);
}

.next {
  bottom: 10px;
  transform: translateX(-50%);
}

/* social */
.social-icons {
  display: flex;
  gap: 20px;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.links a:hover {
  color: #d7aa7b;
  text-decoration: none;
  display: block;
}
.social-icons a {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid #e5e5e5;
  /* background: linear-gradient(90deg, #bf9563, #755234); */
  color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60%;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
  margin-top: 30px;
}

.social-icons a:hover {
  transform: translateY(-1px);
  color: #1c1713;
  background: #d7aa7b;
}
/*  */

#fireCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
canvas {
  display: block;
}

/* Mockup image effects */
.mockup-row img {
  display: block;
  max-width: 100%;
  transition:
    transform 250ms ease,
    filter 300ms ease;
  transform-origin: center center;
  will-change: transform, filter;
}

/* Gentle floating motion when visible */
.mockup-row img.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-0.3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Small shake for hover/interaction */
.mockup-row img.shake {
  animation: shake 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1;
}

@keyframes shake {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(-6px) rotate(-1.5deg);
  }
  20% {
    transform: translateX(6px) rotate(1.5deg);
  }
  30% {
    transform: translateX(-4px) rotate(-1deg);
  }
  40% {
    transform: translateX(4px) rotate(0.8deg);
  }
  50% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  60% {
    transform: translateX(2px) rotate(0.4deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

/* Subtle glow/pulse to emphasize mockup when visible */
.mockup-row img.glow {
  animation: pulseGlow 3.6s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
  }
}

/* Hover-specific quick shake + lift */
.mockup-row:hover img {
  transform: translateY(-6px);
}

/*  */

/* =====================
   FAQ / Pages overrides
   Match index color scheme
   ===================== */
.hero.faq-hero {
  height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    211.54deg,
    #b38c63 9.79%,
    #221b15 77.74%,
    #1c1713 100%
  );
  position: relative;
}
/* .hero.faq-hero .hero-left h1 {
  font-size: 48px;
  line-height: 56px;
  color: #ffffff;
  margin-bottom: 10px;
} */
.hero.faq-hero p {
  color: #d7c9ad;
  margin-top: 8px;
}
.faqbck {
  background: #e6c28b2d;
  padding: 80px 0;
}
.faq-container {
  margin: 0 auto;
  padding: 36px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.06);
}
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid #f0e9e0;
}
.faq-question {
  font-weight: 700;
  cursor: pointer;
  color: #1e140d;
}
.faq-question:hover {
  color: #755234;
}
.faq-answer {
  margin-top: 12px;
  display: none;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question {
  color: #755234;
}

/* =====================
   Privacy Policy / Pages
   ===================== */
.policy-container {
  /* max-width: 920px; */
  margin: 0 auto;
  padding: 36px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.06);
}

.policy-section {
  margin-bottom: 36px;
  line-height: 1.8;
  color: #333;
}

.policy-section h2 {
  font-size: 32px;
  font-weight: 700;
  /* color: #1e140d; */
  margin-bottom: 12px;
}

.policy-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e140d;
  margin-top: 28px;
  margin-bottom: 16px;
}

.policy-section h4 {
  font-size: 16px;
  font-weight: 700;
  /* color: #bf9563; */
  margin-top: 16px;
  margin-bottom: 10px;
}

.policy-section p {
  margin-bottom: 12px;
  color: #444;
}

.policy-section ul {
  margin-left: 24px;
  margin-bottom: 12px;
}

.policy-section li {
  margin-bottom: 8px;
  color: #444;
}

.policy-section strong {
  color: #1e140d;
}
.terms-hero h1 {
  max-width: 750px;
}
/* Back to top button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(90deg, #bf9563, #755234);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms;
  z-index: 2000;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.back-to-top i {
  font-size: 18px;
}

/* Waitlist Success Modal */
.waitlist-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(17, 17, 17, 0.767);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  z-index: 3000;
}

.waitlist-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.waitlist-modal {
  min-width: 280px;
  max-width: 520px;
  width: 100%;
  border-radius: 16px;
  padding: 26px 24px;
  text-align: center;
  color: #ffffff;
  background: var(--primary-color);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(16px);
  opacity: 0;
}

.waitlist-modal-overlay.is-visible .waitlist-modal {
  animation: waitlistFadeIn 320ms ease forwards;
}

@keyframes waitlistFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
