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

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('https://images.unsplash.com/photo-1635179522738-5bf479518f5c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  background-color: #1b2a4e;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #3498db;
}

/* Main layout */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Glass Container */
/* Glass Container */
.glass-container {
  background: rgba(30, 30, 30, 0.6); /* Darker & less transparent */
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  width: 100%;
  text-align: left;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.95); /* Less transparent text */
  line-height: 1.6;
  font-size: 1.05rem;
}

.glass-container p {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6); /* Improve readability */
}

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

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


.glass-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}


/* Footer */
footer {
  background-color: #1b2a4e;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

.top-content {
  margin-bottom: 2rem;
}

.top-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.signature {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  text-align: left;
  margin-top: 3rem;
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
}

.signature .name {
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
  display: inline-block;
  margin-left: 0.5rem;
}

.signature.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none;
}

/* Disclaimer Section */
.disclaimer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1);  /* Slight dark background */
}

.disclaimer-box {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.disclaimer-box p {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.disclaimer-box em {
  font-style: italic;
}

.disclaimer-box strong {
  font-weight: bold;
}
