/* =======================
   Global Layout
======================= */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, #0f2d3f, #141034, #260946);
  color: #fff;
  overflow-x: hidden;
}

/* =======================
   Banner (Fixed Correctly)
======================= */
.banner {
  width: 100%;
  max-width: 1100px;
  margin: 120px auto 40px auto; /* perfect gap for FIXED navbar */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =======================
   Content Container
======================= */
.container {
  max-width: 1000px;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-family: 'Koulen', cursive;
  font-size: 3rem;
  background: #00ff3c;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fdfeff;
}

.highlight {
  color: #00ff3c;
  font-weight: bold;
}

/* =======================
   AR Section
======================= */
.ar-section {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 50px;
}

.ar-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00ff3c;
}

.ar-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  background: rgba(255,255,255,0.1);
  padding: 15px 25px;
  border-radius: 15px;
  flex: 1 1 200px;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
}

.feature:hover {
  transform: scale(1.05);
  background: rgba(255,0,255,0.3);
}

/* =======================
   AR Button
======================= */
.ar-button {
  display: inline-block;
  padding: 15px 35px;
  font-family: 'Koulen', cursive;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c2222;
  background: #00ff3c;
  border-radius: 15px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ar-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* =======================
   Footer
======================= */

/* Footer */
footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 18px;
  background-color: rgba(255,0,255,0.3);
  color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}


/* =======================
   Mobile Responsive
======================= */
@media (max-width: 768px) {
  /* Banner */
 .banner {
    margin: 90px auto 30px auto; /* top auto bottom auto, left & right auto */
    width: 80%; /* or whatever width you want */
}


  /* Content Container */
  .container {
    padding: 1px
  }

  h1 {
    font-size: 1.5rem; /* smaller heading */
    margin-bottom: 15px;
    align-items: center;
  }

  p {
    font-size: 1rem;          /* text size */
    line-height: 1.6;         /* more readable spacing */
    margin: 0 15px 20px 15px; /* top 0, left/right 15px, bottom 20px */
    text-align: justify;      /* align text both sides */
    letter-spacing: 0.5px;    /* subtle spacing between letters */
}


  /* AR Section */
  .ar-section {
    padding: 20px;
    margin-bottom: 30px;
  }

  .ar-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  

  /* AR Button */
  .ar-button {
    font-size: 1.2rem;
    padding: 12px 25px;
  }

  /* Footer */
  footer {
    padding: 20px 10px;
    font-size: 16px;
  }
}


