/* -------------------------------
   Global Styles
-------------------------------- */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f9f9f9;
}

a {
  color: #007bff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

a:hover {
  color: #0056b3;
}

a:hover::after {
  width: 100%;
}

/* -------------------------------
   Hero Section
-------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(247, 5, 5, 0.4));
  padding: 120px 20px 80px 20px;
  text-align: center;
  color: #ff0101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  transition: transform 0.3s ease;
}

/* Parallax effect on scroll */
.hero.parallax {
  transform: translateY(-20px);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ff0101;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Lock Icon */
.hero-icon {
  position: relative;
  width: 80px;
  height: 100px;
  margin: 0 auto 30px auto;
  animation: bounce 2s infinite;
}

.lock-body {
  width: 80px;
  height: 60px;
  background-color: #fff;
  border-radius: 6px;
  position: absolute;
  bottom: 0;
}

.lock-shackle {
  width: 50px;
  height: 50px;
  border: 6px solid #fff;
  border-bottom: none;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  left: 15px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* -------------------------------
   Page Content
-------------------------------- */
.content {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.content-container h2 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #222;
  display: flex;
  align-items: center;
}

.content-container h2::before {
  content: '🔹'; /* Icon before heading */
  margin-right: 10px;
}

.content-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* Internal links inside content */
.content-container a {
  color: #007bff;
  position: relative;
  transition: all 0.3s ease;
}

.content-container a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.content-container a:hover {
  color: #0056b3;
}

.content-container a:hover::after {
  width: 100%;
}

/* ------------------------------
/* -------------------------------
   Footer Placeholder

/* -------------------------------
   Responsive Design
-------------------------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .content-container h2 {
    font-size: 1.6rem;
  }

  .content-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .lock-body {
    width: 60px;
    height: 45px;
  }

  .lock-shackle {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
  }
}
