/* =========================
   Base Reset & Body
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  user-select: none; /* Make text non-selectable */
}

/* =========================
   Banner / Hero
========================= */
#home {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.photo-wrapper {
  width: 100%;
  height: 100%;
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* =========================
   Content Wrapper
========================= */
.banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* =========================
   Centered Text Block
========================= */

  .center-block {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%; /* Position title and subtitle at the top */
  left: 50%;
  transform: translateX(-50%); 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  }


/* =========================
   Title (Animated Gradient)
========================= */
@keyframes rainbowFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.banner-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.12em;
  white-space: nowrap; /* Prevent line breaks */

  background: linear-gradient(
    90deg,
    #ff004c,
    #ff8c00,
    #ffee00,
    #00ff88,
    #00cfff,
    #7a5cff,
    #ff00c8
  );
  background-size: 300% 300%;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: rainbowFlow 6s linear infinite;

  text-shadow:
    0 0 6px rgba(255,255,255,0.2),
    0 0 12px rgba(0,0,0,0.4);

  will-change: background-position;
  backface-visibility: hidden;
}

/* =========================
   Subtitle
========================= */
.banner-content header p {
  margin-top: 14px;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.15em;
  color: #fff;
}

/* =========================
   Social Section
========================= */
.social-icons {
  margin-top: 28px;
}

.social-icons p {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.25em;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* Remove default underline on links */

  width: 55px;
  height: 55px;
  margin: 0 6px;

  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;

  transition: all 0.25s ease;
}

.social-icons a i {
  font-size: 28px;
  text-shadow: none;
  filter: none;
}

/* Hover Colors */
.social-icons a:hover {
  background: rgba(255,255,255,0.1);
}

.social-icons a:hover .fa-discord { color: #5865F2; }
.social-icons a:hover .fa-facebook { color: #1877F2; }
.social-icons a:hover .fa-whatsapp { color: #25D366; }

.social-icons a:hover .fa-instagram {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   Bottom Logo (Pinned)
========================= */
.logo {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);

  width: 100px;
  height: auto;
}

/* =========================
   Mobile Layout Adjustments (using media query)
========================= */
@media (max-width: 1080px) {

  .center-block {
  top: 47%;
  left: 50%;
  }

  .social-icons a {
    width: 48px;
    height: 48px;
  }

  .social-icons a i {
    font-size: 24px;
  }
    .countdown-timer {
    font-size: 0.9rem;
    padding: 6px 10px;
  }
}

/* =========================
   Countdown Timer
========================= */
.countdown-timer {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  z-index: 10;
}
