/* landing.css */
@import url('base.css');

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('/images/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  color: white;
  text-align: center;
}

.hero--box {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

/* Mission Section */
.l--sec {
  padding: 4rem 2rem;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.l--sec p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* About Sections */
.sub--about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.abt--col {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.abt--col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.abt1, .abt2 {
  position: relative;
  overflow: hidden;
}

.abt1::before, .abt2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  backdrop-filter: blur(3px);
  background: rgba(0,0,0,0.2);
}

.abt--col > * {
  position: relative;
  z-index: 2;
}

.abt1 {
  background: url('/images/hero.jpg') center/cover no-repeat;
}

.abt2 {
  background: url('/images/hero.jpg') center/cover no-repeat;
}

.abt--col h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.abt--col p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Stats Section */
.praise {
  padding: 4rem 2rem;
  text-align: center;
}

.praise--head {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.praise--sub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.praise--col {
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.praise--col:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.praise--col img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.praise--col h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

#praise--txt {
  font-size: 1rem;
  color: #666;
}

/* CTA Section */
.help--sub {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('images/abt1.jpg') center/cover no-repeat;
  color: white;
}

.help--sub h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.help--sub button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.4rem;
  }
  
  .sub--about {
    grid-template-columns: 1fr;
  }
  
  .abt--col {
    padding: 2rem;
  min-height: 400px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .l--sec p {
    font-size: 1rem;
  }
  
  .praise--head {
    font-size: 2rem;
  }
  
  .help--sub h1 {
    font-size: 1.8rem;
  }
}