/* style.css */

/* SALE BANNER */
.sale-banner {
  width: 100%;
  background: linear-gradient(90deg, #4ade80 0%, #15c0ff 50%, #4ade80 100%);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  animation: flash 1.5s ease-in-out infinite;
}
@keyframes flash {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
/* Highlight coupon code */
.sale-banner .coupon {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.2rem 0.6rem;
  background: #fff;
  color: #15c0ff;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 4px;
  text-transform: uppercase;
}

/* RESET / BASICS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #0e0e0e;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: #fff;
}

/* WRAPPER */
.page-wrapper {
  margin-top: 4rem; /* leave space for banner */
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

/* HEADER */
header {
  text-align: center;
  margin-bottom: 2.5rem;
}
header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #4ade80;
}

/* TRAILER & TIMELAPSE FRAME */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border: 2px solid #4b4b4b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FEATURE CARDS */
.feature-section {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.feature-card {
  position: relative;
  background: rgba(34,34,34,.72);
  border: 1px solid #4b4b4b;
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: fadeInUp .6s both;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,.45);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg,#4ade80 0%,#15c0ff 50%,#4ade80 100%);
  background-size:200% 100%;
  animation:gradient-slide 2s linear infinite;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
}

/* IMAGES */
.feature-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 1.5rem;
}

/* TEXT & ICONS */
.icon {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-text h2 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.feature-text p {
  font-size: .95rem;
  color: #ccc;
}

/* PROS LIST */
.pros {
  margin: .6rem 0 0 1rem;
  list-style: "✔ ";
  color: #a8ffc3;
  font-size: .9rem;
}
.pros li {
  margin:.2rem 0;
}

/* TESTIMONIALS */
.testimonial-section {
  text-align: center;
  margin: 3rem 0 2rem;
}
.testimonial-section h2 {
  color: #4ade80;
  margin-bottom: 1rem;
}
.testimonial-section blockquote {
  font-style: italic;
  color: #ddd;
  margin: .8rem auto;
  max-width: 720px;
}
.testimonial-section span {
  font-style: normal;
  color: #aaa;
}

/* TIMELAPSE SECTION */
.timelapse-section {
  text-align: center;
  margin: 3rem 0 2.5rem;
}
.timelapse-section h2 {
  color: #4ade80;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes gradient-slide {
  0%  { background-position:0 0; }
  100%{ background-position:200% 0; }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .page-wrapper {
    margin-top: 6rem;
    padding:1.5rem;
    width:95%;
  }
  .feature-card {
    padding:1rem;
  }
  .feature-card img {
    height:200px;
  }
}

/* EXTRA BITS */
h2 {
  font-size:27px;
  display:inline-block;
  margin-top:9px;
  position:relative;
  z-index:9;
  text-decoration:underline;
}
.container {
  width:850px;
  max-width:100%;
  margin:0 auto;
  padding:0 20px;
}
.single-box {
  background:#000;
  margin-bottom:4px;
  text-align:center;
  overflow:hidden;
  padding:12px 30px;
  border-radius:15px;
}
