/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


body {
  font-family:Arial, Helvetica, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.7;
}

html body {
  max-width: 100vw;
  overflow-x: hidden;
}

img {

  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

p, li {
  color: #333;
  margin-bottom: 1rem;
}

ul.features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image:  linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('bg.jpg');
  background-size: cover;    /* or use 'contain' if you don't want it cropped */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


.hero h1 {
  font-weight: 900;
  font-size: 4rem;
  margin-bottom: 0.9rem;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero p {
  color: #b3b3b3a8;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  
}


.hero a{
    margin-top: 10rem;
    box-shadow: 0 2px 20px  rgb(152, 152, 152, 0.9);
}


/* Detail Section Layout */
.detail-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 3rem;
  
  

}

.detail-content.reverse {
  flex-direction: rtl;
  width: 100%;
  margin: 2rem 0rem;
   opacity: 1;
  transform: translateY(0);
}

.detail-content.reverse .detail-text {
  direction: ltr;
}

.detail-image,
.detail-text {
  flex: 1;
}
.detail-text {
    margin: auto;
    padding: 0 30px;
}

.detail-image img {
  box-shadow: 0 4px 16px  rgb(152, 152, 152, 0.32);
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.detail-content.reverse .detail-image img {
  transform: translateX(40px);
}

.detail-text {
  opacity: 0;
  transform: translateX(40px);
}

.detail-content.reverse .detail-text {
  transform: translateX(-40px);

}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

 

/* FAQ */
.faq details {
  margin-bottom: 1rem;
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.faq summary {
  font-weight: 600;
  font-size: 1rem;
}

/* Footer */
.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
  font-size: 16px;
  color: #666;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 15px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #000000;
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {

     .hero {
    height: auto;
    padding: 4rem 1rem;
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
.hero a {
    margin-top: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .p{
    text-align: center;
  }
 
    .detail-content,
  .detail-content.reverse {
    width: 100%;
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .detail-text{
    margin: auto;
    padding: 0 30px;
  }

   .mobile-break::after {
    content: "\A";
    white-space: pre;
  }
   .detail-content {
    margin: 2rem 1rem;
  }

  .detail-content,
  .specs-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .preorder-highlight{
    margin: 5rem 0 1rem;
  }
}








.video-container {
  margin-left: calc(-50vw + 50%);
   margin-right: calc(-50vw + 50%);
  padding: 60px 0;
  text-align: center;
}

.promo-video {
  width: 100%;
  padding: 0;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.specs-clean {
  background: #fff;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.specs-container {
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.specs-image img {
  max-width: 545px;
  width: 100%;
  height: auto;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.specs-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

.specs-text li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
  color: #222;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
 
}

.specs-text li:nth-child(1) { animation-delay: 0.2s; }
.specs-text li:nth-child(2) { animation-delay: 0.4s; }
.specs-text li:nth-child(3) { animation-delay: 0.6s; }
.specs-text li:nth-child(4) { animation-delay: 0.8s; }
.specs-text li:nth-child(5) { animation-delay: 1s; }


.specs-text li span {
  border-left: 4px solid #444;
  padding-left: 1rem;
  display: inline-block;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-image img,
.specs-image img {
  opacity: 0;
  transform: translateX(-40px); /* or -20px for specs-image */
  transition: opacity 1s ease, transform 1s ease;
}



.footer-tagline {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #999;
}

.preorder-highlight {
  background: #000;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.preorder-highlight p {
  color: #ccc;
  margin: 1rem 0 2rem;
}

.preorder-highlight a{
  box-shadow: 0 2px 20px  rgb(152, 152, 152, 0.9);
}



.preorder-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  text-align: center;
  animation: fadeSlideUp 0.5s ease forwards;
}

.popup-content h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #111;
}

.popup-content p {
  margin-bottom: 1.5rem;
  color: #555;
}

.popup-content form input {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.popup-content form button {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-content form button:hover {
  background: #444;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

