/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* ✅ Smooth scrolling */
}

body {
  font-family: 'Space Mono', monospace;
  background: 
    
    url('./eye1.png'),     /* 👈 left monk */
    url('./eye.jpg'),           /* 👁 eye of providence */
    url('./eye4.png');  /* 👉 right temple */

  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, left 5% center, center top, right 5% center;
  background-size: cover, 300px auto, 350px auto, 300px auto;
  background-attachment: fixed, fixed, fixed, fixed;
  background-color: #000;

  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

/* 👻 Make monks/temples ghostly */
body::before,
body::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Add a dark overlay for atmosphere */
/* Add a grey overlay */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(128,128,128,0.4); /* grey tint */
  mix-blend-mode: multiply;          /* blends with images */
  pointer-events: none;
  z-index: 0;
}

/* Make sure your content sits above overlays */
body > * {
  position: relative;
  z-index: 1;
}
/* Subtle smoky fade for depth */
body::after {
  background: radial-gradient(circle, rgba(0,0,0,0.3), transparent 70%);
  mix-blend-mode: overlay;
}

/* ✅ Floating Social Bar (left side with bounce) */
.social-bar {
  position: fixed;
  top: 20%;             /* push down (not too high) */
  left: 20px;           /* stick to the left */
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.social-bar a img {
  width: 28px;   /* smaller size */
  height: 28px;
  filter: brightness(0) invert(1);
  animation: bounce 2s infinite;
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* Hover effect */
.social-bar a:hover img {
  transform: scale(1.3);
  filter: brightness(0) saturate(100%) invert(28%) sepia(96%) saturate(747%) hue-rotate(332deg) brightness(101%) contrast(97%);
}

/* ✅ Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}



/* ✅ Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 40px;
  border-radius: 50%;
}

.nav-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
  color: #fff;
}

/* ✅ Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

/* ✅ Hero Section */
.hero {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem; /* ⬅ reduced bottom padding */
}

.token-logo {
  width: 120px;
  margin-bottom: 1rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;

  /* ✅ Soft fade edges */
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;

  /* ✅ Breathing glow animation */
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.6), 0 0 40px rgba(255, 77, 109, 0.4);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5), 0 0 30px rgba(255, 77, 109, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.8), 0 0 60px rgba(255, 77, 109, 0.6);
    transform: scale(1.05); /* slight "breathing" */
  }
  100% {
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5), 0 0 30px rgba(255, 77, 109, 0.3);
    transform: scale(1);
  }
}

/* ✅ Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 20px;       /* sits at bottom of hero */
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 500;
}

.scroll-down span {
  font-size: 2rem;
  color: #fff;
  animation: arrowBounce 1.8s infinite;
  text-shadow: 0 0 10px rgba(255, 77, 109, 0.8);
}

/* Bouncing arrow animation */
@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}



h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  color: #fff;
}

h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* ✅ Hero slogan */
.slogan {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  margin: 2rem 0; /* adds breathing space above & below */
  color: #fff;
  opacity: 0.9;
}


.ticker {
  font-size: 1.2rem;
  margin-bottom: 0rem;
  padding: 0.4rem 1.2rem;
  border-radius: 25px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
}

/* ✅ About Section */
.about {
  padding: 1.5rem 1.5rem; /* ⬅ was 3rem top */
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* ✅ Countdown */
.countdown {
  text-align: center;
  padding: 1rem 1.5rem;
}

#timer {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* ✅ Gallery Section */
.gallery {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.gallery h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff4747;
}

.gallery-grid img {
  width: 100%;
  max-width: 220px;   /* limit image width */
  height: 180px;      /* smaller height */
  object-fit: cover;
  border-radius: 10px;
  margin: auto;       /* center images */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid {
  display: flex;          /* change from grid to flex */
  flex-wrap: wrap;        /* allow wrapping */
  justify-content: center;
  gap: 1rem;
}


.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 77, 109, 0.7);
}


/* ✅ Community Section */

.community {
   padding-top: 0.5rem;   /* tighter */
  padding-bottom: 2rem;
  text-align: center;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: center;
  color: ##fff;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.socials a:hover {
  transform: scale(1.1);
  color: #fff;
}

.socials img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.socials a[href*="telegram"] img {
  filter: none;
}

/* ✅ Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: ##fff;
  background: #111;
  margin-top: 2rem;
}

body {
  color: #fff; /* 🎨 Gold text */
}

h1, h2, h3, .nav-title, .slogan, .ticker {
  color: #fff; /* Brighter gold for accents */
}

.nav-links a:hover,
.socials a:hover {
  color: #fff; /* lighter hover gold */
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
   body {
    background-attachment: scroll;  /* ⬅ fixes Safari white gap */
    background-size: cover;         /* makes sure it fills */
    background-position: center top;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    background: #111;
    position: fixed; /* 🚀 stays on screen */
    top: 60px; /* 🚀 starts just below navbar (adjust if your navbar height changes) */
    right: 0;
    height: calc(100vh - 60px); /* 🚀 full height minus navbar */
    width: 50%; /* 🚀 half the screen width */
    padding: 2rem 1rem;
    text-align: center;

    /* Start hidden (slide out to the right) */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 200;
  }

  .nav-links.active {
    transform: translateX(0); /* 🚀 slide in */
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: block;
    z-index: 300; /* ensure above nav-links */
    position: relative;
  }

  /* ✅ Smooth fade + slide animation for links (mobile only) */
  .nav-links a {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 1rem 0;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
}
