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

body {
  font-family: Arial, sans-serif;
  background: #f9fafb;
  color: #111827;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  width: 90px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 10px;
}

.hero p {
  color: #6b7280;
  font-size: 1.1rem;
}

section {
  padding: 60px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

#verse-box {
  background: white;
  max-width: 900px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.8;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.video-wrapper {
  position: relative;
}

iframe {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}

.contact-section {
  background: white;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: #111827;
  padding: 12px 20px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #f3f4f6;
}

footer {
  text-align: center;
  padding: 30px;
  background: white;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
}

