/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background: #000;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #fff;
  font-family: pp;
  transform: scale(1);
  display: none;
}

#loader-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.quote-container {
  margin-bottom: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-text {
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
  padding: 0 1rem;
  max-width: 90vw;
  white-space: nowrap;
}

.progress-bar {
  position: relative;
  width: 60%;
  max-width: 400px;
  height: 2px;
  background: #333;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #ff5c0b;
  transition: width 0.3s linear;
}

/* Hero Section */
#hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  opacity: 0;
  transform: translateY(40px);
  background: transparent;
  color: white;
  text-align: center;
}

#hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.8;
}
