
/* style.css */

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #4566f7 0%, #1d56c9 100%);
  min-height: 100vh;
  color: #333;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,0 C150,100 350,0 500,50 C650,100 850,0 1000,50 L1000,0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

header h1 {
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  font-weight: 300;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

header p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
}

nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #2a5298;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: #2a5298;
  padding: 1rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav li {
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #2a5298;
  padding: 1rem 1.5rem;
  display: block;
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(42, 82, 152, 0.2), transparent);
  transition: left 0.5s;
}

nav a:hover::before {
  left: 100%;
}

nav a:hover {
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

main {
  flex: 1;
  padding: 2rem;
}

#content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#content h2 {
  color: #2a5298;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

#content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1955be, #2343d1);
  border-radius: 2px;
}

/* Home page styling */
.home-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.home-content {
  padding-right: 1rem;
}

.home-image {
  text-align: center;
}

.church-image {
  width: 100%;
  max-width: 500px;
  height: 270px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #2a5298;
  transition: all 0.3s ease;
}

.church-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.welcome-text {
  font-size: 1.3rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.explore-text {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

.bible-verse {
  background: linear-gradient(135deg, #f8f9ff, #e8eeff);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #2a5298;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: linear-gradient(135deg, #f8f9ff, #e8eeff);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #2a5298;
}

.service-item h3 {
  color: #2a5298;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-item p {
  color: #666;
  line-height: 1.6;
}

.service-time {
  font-weight: bold;
  color: #2a5298;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Donation styling */
.donation-container {
  text-align: center;
}

.donation-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.donation-method {
  background: linear-gradient(135deg, #fff5f5, #ffe8e8);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffd6d6;
}

.donation-method h3 {
  color: #c53030;
  margin-bottom: 1rem;
}

/* Contact styling */
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: linear-gradient(135deg, #f8f9ff, #e8eeff);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #e8eeff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border-left: 4px solid #2a5298;
}

.contact-icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  min-width: 3rem;
  text-align: center;
}

.contact-details {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.contact-details strong {
  color: #2a5298;
  display: block;
  margin-bottom: 0.5rem;
}

/* Gallery images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Responsive design */
@media (max-width: 968px) {
  .home-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .home-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 1rem;
  }
  
  .nav-brand {
    margin-bottom: 1rem;
  }
  
  nav ul {
    justify-content: center;
    width: 100%;
  }
  
  nav a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  #content {
    padding: 2rem;
    margin: 1rem;
  }
  
  #content h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .donation-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  main {
    padding: 1rem;
  }
  
  #content {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  nav a {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}
