@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Newsreader:wght@400;600&display=swap');

:root {
  --accent: #1ea1ff;
  --dark: #0a0f1a;
  --light: #f5f8ff;
}

:root {
  --accent: #1ea1ff;
  --overlay-start: rgba(3, 18, 42, 0.45);
  --overlay-end: rgba(3, 18, 42, 0.25);
  --text-max-width: 1100px;
  --vh: 100vh;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

a{
  text-decoration: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #000; color: #fff; overflow-x: hidden; }

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 100px;
  width: 100px;
}

.navbar__logo {
  font-size: 5rem;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
}

.navbar__menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  transition: all 0.3s ease;
}

.navbar__menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.navbar__menu a:hover {
  background-color: #fff;
  color: #000;
  padding: 12px;
  border-radius: 6px;
  transform: translateX(8px);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 11;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar__logo {
    font-size: 1.5rem;
    
  }

  .navbar__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar__menu li {
    margin: 0;
    text-align: center;
  }

  .navbar__menu a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: none;
    padding: 15px 20px;
  }
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('public_html/img/life.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,40,0.9));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 20px;
}
.hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}
.hero-content p {
  color: #dce8ff;
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 600px;
  margin-inline: auto;
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 40px; display: flex; flex-direction: column; align-items: center;
}
.scroll-cylinder {
  width: 22px; height: 55px;
  border: 2px solid #fff; border-radius: 30px;
  display: flex; justify-content: center; align-items: flex-start;
  padding: 5px;
}
.scroll-ball {
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  animation: scrollMove 2s infinite;
}
.scroll-indicator span {
  margin-top: 8px; font-size: 0.8rem; color: #ddd; letter-spacing: 1px;
}
@keyframes scrollMove {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(32px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

/* PARALLAX SECTIONS */
.scroll-wrapper {
  position: relative;
  width: 100%;
}
.parallax-section {
  position: relative;
  height: 100vh;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-section::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.glass {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 60px 40px;
  border-radius: 20px;
  max-width: 700px;
  text-align: center;
  transform: translateY(60px);
  opacity: 0;
}
.glass h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.glass p {
  color: #e8f2ff;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* FOOTER */
footer {
  text-align: center;
  background: #0a0f1a;
  padding: 30px 10px;
  color: #ccc;
}
footer a { color: var(--accent); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .glass { padding: 30px 20px; }
  .glass h2 { font-size: 2rem; }
}
