/* ==== COLORS ==== */
:root {
  --black: #0a0a0a;
  --deep-black: #000000;
  --hotpink: #ff4fd8;
  --neon-cyan: #00eaff;
  --header-strip: #c88bff; /* matches screenshot */
}

/* ==== RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
    /* background: var(--deep-black); */
     background: url('../images/o11z_9te6_210409.jpg') no-repeat center center fixed;
  background-size: cover;
  /* color: white;
  overflow-x: hidden; */
  color: white;
  overflow-x: hidden;
}

/* ==== TOP STRIP ==== */
.top-strip {
  /* background: var(--header-strip); */
  background: linear-gradient(to left, #01a29d, #939192);
  text-shadow: 7px 7px 11px rgba(194, 27, 27, 0.5);
  padding: 10px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  height: 40px;
  font-size: 1.2rem;
}

/* === NAVBAR === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  background: #111;
  border-bottom: 2px solid #02c4bd;
  height: 70px;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

header img {
  height: 60px;
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  color: #D4A153;
}
.menu-toggle {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 4px;
  background: #fff;
  border-radius: 3px;
}
.contract-container{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  margin-top:40px;
}

.contract-address{
  display:flex;
  align-items:center;
  gap:10px;
  background:#16393d;
  padding:12px 18px;
  border-radius:10px;
  font-weight:bold;
  letter-spacing:1px;
}

#shortAddress{
  color:white;
}

.copy-btn{
  border:none;
  background:#4fb6a8;
  color:white;
  padding:6px 10px;
  border-radius:6px;
  cursor:pointer;
  font-size:16px;
}

.copy-btn:hover{
  background:#2aa7c8;
}
/* MOBILE SIDE NAV */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 250px;
  height: 100vh;
  background: #111;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-left: 30px;
  transition: left 0.4s ease;
  z-index: 1000;
}

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.mobile-nav.open {
  left: 0;
}

/* SCREEN DARKEN OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  pointer-events: none; /* <-- ADD THIS */
  transition: 0.4s;
  z-index: 999;
}

.overlay.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto; /* <-- ENABLE CLICK */
}
/* ANIMATE TOGGLE INTO X */
.menu-toggle span {
  transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ==== HERO SECTION ==== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  padding: 150px;
  /* background: var(--deep-black); */
}

.hero-text h2 {
  font-size: 70px;
  font-weight: 750;
  /* -webkit-text-stroke: 1px ; */
  filter: drop-shadow(1px 1px 3px #D4A153);

}

.buy-btn {
  margin-top: 25px;
  background-color: #02c4bd;
  border: none;
  color: white;
  padding: 14px 30px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.buy-btn a {
  text-decoration: none;
}
.buy-btn:hover {
  scale: 1.03;
}

.hero-img img {
  width: 500px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 15px #02c4bd);
}

/* ABOUT */
.about_container{
  background: var(--deep-black);
}
.about {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  padding: 150px;
  gap: 50px;
}

.about-text h2 {
  font-size: 50px;
  font-weight: 700;
  margin-top: -90px;
  margin-bottom: 20px;
  -webkit-text-stroke: 2px #D4A153;
}
.about-text p {
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.8;
  font-weight: 700;
}
.about-img img {
  width: 600px;
  border-radius: 20px;
}
.aboutss_container{
  background: var(--deep-black);
  margin-top: 100px;
  height: 100vh;
}
.aboutss {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  padding: 150px;
  gap: 50px;
  padding-bottom: 35px;
}

.aboutss-text h2 {
  font-size: 50px;
  font-weight: 700;
  margin-top: -40px;
  margin-bottom: 20px;
}
.aboutss-text p {
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.8;
  opacity: 60%;
}
.aboutss-img img {
  width: 500px;
  border-radius: 20px;
}
.about-imgss img {
  width: 500px;
  border-radius: 20px;
}
.abouts {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  padding: 150px;
  gap: 50px;
}

.abouts-text h2 {
  font-size: 50px;
  font-weight: 700;
  margin-top: -90px;
  margin-bottom: 20px;
  -webkit-text-stroke: 2px #D4A153;
}
.abouts-text p {
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.8;
  font-weight: 700;
}
.abouts-imgs img {
  width: 500px;
  border-radius: 20px;
}
.tg-btn {
  margin-top: 25px;
  background-color: #02c4bd;
  border: none;
  padding: 14px 30px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.tg-btn a {
  text-decoration: none;
}

.tg-btn:hover {
  scale: 1.03;
}

/* DESCRIPTION */
.description {
  height: 80vh;
  gap: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.description-text {
  text-align: center;
  max-width: 700px;
  width: 100%;
}
.description-text h2 {
  font-size: 50px;
  margin-bottom: 20px;
  -webkit-text-stroke: 2px #D4A153;
}
.description-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 700;
}
.description-btn {
  margin-top: 25px;
  background-color: #02c4bd;
  border: none;
  padding: 14px 30px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.description-btn:hover {
  scale: 1.03;
}
/* CONTRACT */
.contract {
  height: 80vh;
  background: #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  gap: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contract-text {
  text-align: center;
  max-width: 700px;
  width: 100%;
  background: #000000;
  padding: 50px;
}
.contract-text h2 {
  font-size: 50px;
  margin-bottom: 20px;
}
.contract-text p {
  opacity: 60%;
  margin-bottom: 20px;
  line-height: 1.8;
}
.contract-image {
  display: none;
}
.contract-btn {
  margin-top: 25px;
  background-color: #02c4bd;
  border: none;
  padding: 14px 30px;
  width: 300px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.contract-btn:hover {
  scale: 1.03;
}
/* SWIPER SECTION */
.swiper-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  color: white;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 200%; /* because 2 slides */
  transition: transform 0.6s ease;
}

.slide {
  width: 50%;
  padding: 50px;
  text-align: center;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.slide.active h2 {
  font-size: 50px;
  margin-bottom: 20px;
  -webkit-text-stroke: 2px #D4A153 ;
}
.slide.active p {
  font-size: 20px;
  font-weight: 400;
}
.slide.active {
  opacity: 1;
}

/* LEFT / RIGHT ARROWS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  padding: 10px 18px;
  font-size: 30px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: #02c4bd;
}

.slider-btn.left {
  left: 20px;
}

.slider-btn.right {
  right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .slide {
    width: 100%;
  }
  .slider {
    width: 200%;
    margin-top: -80px;
  }
  .slider-btn.left,
  .slider-btn.right {
    margin-top: -50px;
  }
  .slider-btn {
    font-size: 20px;
  }
  .slide.active h2 {
    font-size: 30px;
  }
}

/* BRANCHES */

.branches {
  width: 100%;
  background: #000;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.branches-text {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.branches-text h1 {
  font-size: 4rem;
  margin-bottom: 50px;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(156, 155, 155), cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  grid-column: span 3;
  margin-bottom: 40px;
  text-align: left;
}
.branches-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.branches-section:hover {
  transform: translateY(-8px);
  border-color: rgb(128, 127, 127);
  box-shadow: 0 0 20px rgba(5, 158, 189, 0.4);
}

.branches-section img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px cyan);
}

.branches-section h1 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.branches-section p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}
/* ROADMAP */
.roadmap_container{
  background: #111;
}
.roadmap {
  width: 80%;
  margin: auto;
  padding: 80px 0;
  color: white;
  font-family: Arial;
}

.roadmap h1 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 50px;
}

.roadmap-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.roadmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.roadmap-header p {
  font-size: 22px;
  font-weight: bold;
  flex: 1;
  margin-left: 15px;
}

.check {
  font-size: 22px;
  padding: 4px 8px;
  border: 2px solid white;
  border-radius: 5px;
}

.arrow {
  font-size: 20px;
  transition: 0.3s;
  opacity: 60%;
}

.roadmap-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 50px;
  opacity: 0;
}

.roadmap-content.show {
  max-height: 300px;
  opacity: 1;
}
.roadmap-content p {
  opacity: 60%;
  margin: 10px;
  line-height: 1.8;
}
/* CONTACT */
.contact-section {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}
.contact-us {
  background: #053b38;
  padding: 20px;
  margin-top: 100px;
}
.contact-section h2 {
  font-size: 40px;
  text-align: left;
  margin-bottom: 20px;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #555;
  background: #111;
  color: #fff;
}

#contactForm textarea {
  height: 120px;
  resize: none;
}

#contactForm button {
  background: #4b4b4b;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#statusMsg {
  margin-top: 10px;
  color: #0f0;
  font-size: 14px;
}
.footer {
  width: 100%;
  background: #000; /* dynamic black */
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid #333; /* subtle top border */
  margin-top: 60px;
}

.footer p {
  color: white;
  opacity: 40%;
  font-size: 14px;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .buy-btn {
  padding: 10px 25px;
  }
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    height: auto;
  }
  .hero-img img {
    width: 300px;
    margin-top: -60px;
  }
  .hero-text {
    margin-top: 50px;
    text-align: left;
    margin-left: -100px;
  }
  .hero-text h2 {
    font-size: 60px;
    font-weight: 600;
  }
  .top-strip {
    font-size: 1rem;
    height: 50px;
    text-align: center;
  }
  .about {
    flex-direction: column;
    text-align: center;
    height: auto;
    margin-top: -100px;
    margin-bottom: -100px;
  }
  .about-text h2 {
    font-size: 30px;
    margin-top: 40px;
    -webkit-text-stroke: 1px #D4A153 ;
  }
  .about-text {
    text-align: left;
    width: 300px;
  }
  .about-imgss img {
    width: 320px;
  }
  .aboutss_container{
    height: auto;
  }
  .aboutss {
    flex-direction: column;
    text-align: center;
    height: auto;
    margin-top: -150px;
    margin-bottom: -100px;
    
  }
  .aboutss-text h2 {
    font-size: 30px;
    margin-top: 40px;
  }
  .aboutss-text {
    text-align: left;
    width: 300px;
    margin-top: -20px;
  }
  .aboutss-img img {
    margin-top: -80px;
    width: 320px;
  }
  .abouts {
    flex-direction: column;
    text-align: center;
    height: auto;
    margin-top: -100px;
    margin-bottom: -100px;
  }
  .abouts-text h2 {
    font-size: 30px;
    margin-top: 40px;
    -webkit-text-stroke: 1px #D4A153 ;
  }
  .abouts-text {
    text-align: left;
    width: 300px;
  }
  .abouts-imgs img {
    width: 320px;
  }
  .swiper-section {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  color: white;
  overflow: hidden;
}

.slide.active h2 {
  font-size: 30px;
  -webkit-text-stroke: 1px #D4A153 ;
}
.slide.active p {
  font-size: 15px;
  font-weight: 400;
}
  .contract {
    flex-direction: column;
    text-align: center;
    height: auto;
    background: none;
    margin-top: 20px;
  }
  .contract-text h2 {
    font-size: 30px;
  }
  .contract-btn {
    width: 250px;
  }
  .contract-image {
    display: block;
    margin: 0 auto; /* centers horizontally */
    max-width: 100%;
    height: auto;
  }
  .description {
  height: 90vh;
}
  .description-text {
    max-width: 300px;
    margin-top: 150px;
  }
  .description-text h2 {
    font-size: 30px;
    -webkit-text-stroke: 1px #D4A153;
  }
  .branches-container{
    margin-top: -55px;
  }
  .branches-text h1 {
    font-size: 30px;
  }

  .branches-section {
    margin: 25px 0;
    padding: 25px;
  }

  .branches-section img {
    width: 90px;
    height: 90px;
  }

  .branches-text {
    grid-template-columns: 1fr; /* stack */
  }

  .branches-text h1 {
    grid-column: span 1;
  }
  .roadmap h1 {
    font-size: 30px;
  }
  .roadmap {
    margin-top: -120px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  header img {
    height: 65px;
    margin-left: -40px;
  }
  .menu-toggle {
    display: flex;
    margin-right: -20px;
  }
}
