body {
  background-color: #353535;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin: 0;
  overflow-x: hidden;
}

/* NAVBAR - Apple Glass Effect */
.navbar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin: 10px auto;
  padding: 0.25rem 1rem;
  width: 70%;
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
  display: block;
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1757137910873-504d97aa80de?q=80&w=2669&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

/* ACCENT TEXT */
.text-accent {
  color: rgba(255, 255, 255, 1);
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 0.7),
    0 0 60px rgba(255, 255, 255, 0.5);
}

/* BUTTONS */
.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: transparent;
  color: #000;
  transition: all 0.3s ease;
}

/* FOOTER */
footer {
  background-color: rgba(40, 75, 99, 0.9);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
