/* GLOBAL STYLES */
body {
  font-family: "Neucha", cursive;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  color: #f2f2f2;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #14141a;
  box-sizing: border-box;
}

/* CANVAS ANIMATION */
canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* NAVBAR */
#mainNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#mainNavbar.hidden {
  transform: translateY(-100%);
}

#mainNavbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-item a {
  font-size: 20px;
}

/* HERO SECTION */
.hero {
  position: relative;
  margin-top: 60px;
  padding: 60px 20px;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 50vh;
}

/* BUTTONS */
.submit-btn {
  text-decoration: none;
  background-color: #538ea8;
  color: #fff;
  padding: 10px 30px;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 20px;
}

/* ABOUT SECTION */
.about-item {
  background-image: url('images/nft-background2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.about-item h4 {
  color: #538ea8;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}

.about-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* CG SECTION */
.cg-app h2 {
  margin-top: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px;
}

.cg-app h5 {
  color: #538ea8;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}

/* ROADMAP */
.roadmap-section {
  background-color: #14141a;
  color: #fff;
  position: relative;
}

.timeline-item {
  background-color: #202027;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.timeline-item h4 {
  color: #538ea8;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.timeline-item p {
  font-size: 1rem;
  line-height: 1.8;
}

/* WHITELIST */
.whitelist h4 {
  color: #538ea8;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}

.whitelist-field {
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
}

.whitelist-img {
  height: 350px;
}

.whitelist-section {
  background: linear-gradient(135deg, #a34b72, #0e232b, #4c8faa);
  padding: 20px;
  margin-top: 30px;
  text-align: center;
}

.whitelist-item {
  background-color: #202027;
  border-radius: 15px;
  margin-bottom: 30px;
  padding: 15px;
}

.whitelist-item h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: #538ea8;
  font-weight: bold;
}

/* SOCIAL MEDIA SECTION */
.social-media-section {
  height: 180px;
  background-image: url(/images/whitelist-bg.jpg);
  background-position: center;
  color: #fff;
  background-size: cover;
}

.slogan {
  font-size: 22px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
  color: #009708;
}

/* COUNTDOWN BOX */
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

#countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  background-color: #2c6075;
  padding: 10px 20px;
  border-radius: 10px;
  min-width: 90px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.countdown-item span {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  color: #fff;
}

.countdown-item small {
  font-size: 0.9rem;
  color: #ddd;
}

span.spn-bck {
  background-color: #2c6075;
}

/* SPECIAL BACKGROUNDS */
.cg-bg {
  background-image: url('/images/nft-background2.jpg');
  background-position: center;
  background-size: cover;
  padding: 30px;
  background-attachment: fixed;
}

.whitepaper-bg {
  background: repeating-linear-gradient(45deg, black, transparent 100px);
  background-position: center;
  padding: 30px;
  color: #fff;
}

/* CHECKMARK STYLES */
.status {
  display: flex;
  align-items: center;
}

.checkmark {
  color: green;
  font-size: 24px;
  margin-right: 8px;
}

/* AOS animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    height: auto;
    padding: 100px 10px;
  }

  .whitelist-field {
    grid-template-columns: 1fr;
  }

  .whitelist-img {
    height: 250px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 8px 20px;
  }

  /* Countdown adjustments on small screens */
  #countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;  /* važno: ne dozvoli novi red */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
}

.countdown-item {
  background-color: #2c6075;
  padding: 10px 15px;
  border-radius: 10px;
  min-width: 60px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  flex-shrink: 0; /* ne smanjuj ispod min-width */
}

.countdown-item span {
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  color: #fff;
}
}


