/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/NRV_Website_Background_1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #E6E6E6;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* === BACKGROUND LOGO === */
.background-logo {
  display: none; /* Hidden - using main website background image instead */
}

/* === MAIN CONTENT === */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 4rem 3rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(154, 209, 218, 0.3);
  box-shadow: 0 0 30px rgba(154, 209, 218, 0.2);
}

.logo-container {
  margin-bottom: 2rem;
}

.main-logo {
  width: 250px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.main-logo.fade-in {
  opacity: 1;
  transform: translateY(0);
}


/* === TYPOGRAPHY === */
.main-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #9AD1DA;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px #9AD1DA;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.main-title.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.message {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.message.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.primary-message {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: #E6E6E6;
  margin-bottom: 1rem;
  font-weight: 400;
}

.secondary-message {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #A2AAAD;
  font-weight: 300;
}

/* === PROGRESS BAR === */
.progress-container {
  margin-bottom: 3rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(154, 209, 218, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(154, 209, 218, 0.3);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2956A4, #9AD1DA);
  border-radius: 3px;
  transition: width 2s ease;
  box-shadow: 0 0 10px #9AD1DA;
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% {
    box-shadow: 0 0 10px #9AD1DA;
  }
  50% {
    box-shadow: 0 0 20px #9AD1DA, 0 0 30px #2956A4;
  }
}

.progress-text {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  color: #9AD1DA;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* === CONTACT INFO === */
.contact-info {
  margin-bottom: 2rem;
}

.contact-info > p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #9AD1DA;
  color: #9AD1DA;
  background: transparent;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.contact-link:hover {
  background: #9AD1DA;
  color: #000;
  box-shadow: 0 0 15px #9AD1DA;
  transform: translateY(-2px);
}

/* === FOOTER === */
.footer {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.footer p {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .content {
    padding: 3rem 2rem;
    margin: 1rem 0;
  }
  
  .main-logo {
    width: 200px;
  }
  
  .main-title {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .primary-message {
    font-size: 1.2rem;
  }
  
  .secondary-message {
    font-size: 1rem;
  }
  
  .contact-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 2rem 1.5rem;
  }
  
  .main-logo {
    width: 180px;
  }
  
  .main-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .primary-message {
    font-size: 1.1rem;
  }
  
  .secondary-message {
    font-size: 0.95rem;
  }
  
  .progress-text {
    font-size: 0.8rem;
  }
}

/* === FADE IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
