/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BACKGROUND */
body {
  font-family: "Montserrat Alternates", sans-serif;
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("media/background.jpg") center center / cover no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, 0.75);
  z-index: -1;
}

/* TOP TRANSPARENT BAR */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: rgba(20, 25, 35, 0.25);
  backdrop-filter: blur(6px);
  padding: 0 40px;
  z-index: 999;
}

.nav-right {
  display: flex;
  gap: 20px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(83, 179, 255, 0.15);
  border: 1px solid rgba(83, 179, 255, 0.4);
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(83, 179, 255, 0.3);
  box-shadow: 0 0 12px rgba(83, 179, 255, 0.6);
  transform: translateY(-2px);
}

/* ICON STYLING FOR FONT AWESOME ICONS */
.nav-btn i {
  font-size: 18px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(83, 179, 255, 0.3));
  color: white;
}

.nav-btn:hover i {
  color: #53b3ff;
  filter: drop-shadow(0 0 8px rgba(83, 179, 255, 0.8));
  transform: scale(1.15);
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 80px;
}

.hero h1 {
  font-size: 10rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #b8dcff 40%, #53b3ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.8s ease-out forwards;
}

/* HERO FADE UP */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SCROLL ARROW */
.scroll-down {
  margin-top: 80px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

.arrow-icon {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 6px rgba(83, 179, 255, 0.4));
  transition: all 0.3s ease;
}

.scroll-down:hover .arrow-icon {
  transform: translateY(5px);
  filter: drop-shadow(0 0 10px rgba(83, 179, 255, 0.8));
}

/* ABOUT SECTION */
.about {
  max-width: 1500px;
  text-align: center;
  margin: 80px auto 60px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #d9d9d9;
  background: rgba(25, 25, 35, 0.65);
  border-radius: 12px;
  padding: 40px 60px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  border-left: 5px solid #0077ff;
  backdrop-filter: blur(6px);
}

/* DIVIDERS */
.section-divider,
.divider-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 60px 0 40px;
}

/* PROJECTS */
.projects-section {
  width: 100%;
  text-align: center;
}

.projects-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #d9ebff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* BOX GRID */
.boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
}

/* BOX BASE STYLE */
.box {
  position: relative;
  background: linear-gradient(145deg, #2c2f36, #1a1c21);
  border-radius: 20px;
  min-height: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
}

/* EASY TICKET */
.project-box {
  flex-direction: column;
  align-items: center;
  padding: 25px;
  text-align: center;
  z-index: 1;
}

.project-box h3 {
  color: #53b3ff;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.project-image {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(83, 179, 255, 0.4));
}

.project-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #cfd4df;
  opacity: 0.9;
}

/* BLUR & OVERLAY */
.blur-cover {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 35, 0.3);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.coming-soon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0.95;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  animation: floaty 6s ease-in-out infinite;
}

/* FLOATY ANIMATION */
@keyframes floaty {
  0% {
    transform: translate(-50%, -50%) rotate(-46deg) scale(1);
  }
  25% {
    transform: translate(-50%, -52%) rotate(-44deg) scale(1.05);
  }
  50% {
    transform: translate(-50%, -48%) rotate(-46.5deg) scale(0.96);
  }
  75% {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.03);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-46deg) scale(1);
  }
}

.coming-soon-image {
  position: absolute;
  width: 85%;
  height: 85%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0.9;
  object-fit: contain;
  border-radius: 16px;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.6));
  animation: floaty 7s ease-in-out infinite;
}
/* COMING SOON IMAGE HOVER GLOW */
.box:hover .coming-soon-image,
.box:hover .coming-soon-overlay {
  filter: drop-shadow(0 0 16px rgba(83, 179, 255, 0.8))
    brightness(1.1);
  transform: translate(-50%, -50%) rotate(-45deg) scale(1.05);
  transition: all 0.4s ease;
}
/* FOOTER */
footer {
  width: 100%;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 20, 35, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}

footer span {
  color: #53b3ff;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 7rem;
  }
}

@media (max-width: 600px) {
  .boxes {
    grid-template-columns: 1fr;
  }
  .box {
    min-height: 320px;
  }
  .projects-section h2 {
    font-size: 2rem;
  }
  .top-bar {
    flex-direction: column;
    height: auto;
    gap: 8px;
    padding: 10px;
  }
}