* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black; /* solid black base */
  z-index: -2;
  opacity: 1;
  animation: fadeInImage 2s ease-out forwards;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), /* black overlay */
    url('./assets/3kx3k.png') no-repeat center center/cover;
  z-index: -1;
  opacity: 0;
  background-color: black;
  animation: fadeInImage 2s ease-out 0.2s forwards;
}

@keyframes fadeInImage {
  to {
    opacity: 1;
  }
}

html, body {
  height: 100%;
  overflow: hidden; /* you can keep this if you truly don't want scroll */
  display: flex;
  flex-direction: column;
}



.top-nav {
  height: 84px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.nav-left img {
  height: 42px;
  width: 42px;       /* make it square */
  border-radius: 50%;
  object-fit: cover; /* ensures it doesn’t stretch */
}

.nav-right a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: white;
  text-decoration: none; /* removes underline */
  padding: 0.5rem 0;
  position: relative;
  margin-left: 2rem;
}

.nav-right a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: white;
  transition: width 0.3s ease;
}


.nav-right a:hover::after {
  width: 100%;
}

.nav-right a:hover {
  opacity: 0.7;
}

.nav-right img {
  height: 42px;
  width: auto;
}

.main-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero {
  position: relative;
  height: calc(100vh - 84px - 128px); /* subtract header + footer height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(3px 4px 0px rgb(11, 11, 11));
  height: 100%;
  width: 100%;
}

.hero-text img {
  max-width: 90%;
  max-height: 80vh;
  height: auto;
}

.glass-panel {
  position: fixed;
  top: 84px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 90%;
  max-width: 600px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  color: white;
  display: none;
  z-index: 200;
  animation: fadeSlideIn 0.3s ease-out forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.glass-panel {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.glass-panel a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  transition: opacity 0.2s;
}

.glass-panel a:hover {
  opacity: 0.7;
}

.glass-panel h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.glass-panel ul {
  list-style: none;
  padding: 0;
}

.glass-panel ul li {
  margin-bottom: 0.5rem;
}

.glass-panel form input,
.glass-panel form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  border-radius: 0.5rem;
}

.glass-panel form button {
  padding: 0.75rem 1.5rem;
  background: white;
  color: black;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
.glass-panel ul li,
.glass-panel form input,
.glass-panel form textarea,
.glass-panel form button {
  font-family: 'Poppins', sans-serif;
}

.close-panel {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.glass-footer {
  height: 128px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 20;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.footer-content a {
  margin: 0 1rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-content a:hover {
  transform: scale(1.1);
}

.footer-content img {
  height: 32px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s ease;
}

.footer-content a:hover img {
  transform: scale(1.1);
}

.footer-note {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
.footer-note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
  font-style: normal;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}