* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f8fafc;
  color: #1e293b;
  font-family: Arial, Helvetica, sans-serif;
}

.hero,
.gradient-button,
.sermon-form button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #4e65ff 100%);
}

.hero {
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 42rem;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  opacity: 0.95;
}

.page-grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card,
.portal-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  padding: 2rem;
}

.card h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #1e3a8a;
  font-size: 1.5rem;
}

.card p,
.feature-card p {
  color: #475569;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 0.8rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.orange-card {
  background: #fff7ed;
  border: 1px solid #ffedd5;
}

.orange-card h3 {
  color: #c2410c;
}

.pink-card {
  background: #fdf2f8;
  border: 1px solid #fce7f3;
}

.pink-card h3 {
  color: #ff4181;
}

.identity-card {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #1e3a8a, #1e1b4b);
  color: white;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.22);
}

.identity-card h3 {
  margin: 0 0 0.5rem;
  color: #fb923c;
  font-size: 1.25rem;
}

.location {
  margin: 0 0 1rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

.contact-list {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

.contact-list a {
  color: #fb7185;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.portal-card {
  border-top: 8px solid #ff6f61;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.portal-card h3 {
  margin: 0 0 0.5rem;
  color: #0f172a;
  font-size: 1.6rem;
  font-weight: 900;
}

.portal-subtitle {
  margin: 0 0 1.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

.success-message {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.8rem;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
  font-size: 0.9rem;
  font-weight: 700;
}

.sermon-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #f8fafc;
  color: #0f172a;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.sermon-form button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.8rem;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(78, 101, 255, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sermon-form button:hover {
  opacity: 0.9;
}

.sermon-form button:active {
  transform: scale(0.98);
}

footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  border-top: 1px solid #1e293b;
  background: #0f172a;
  color: #64748b;
  text-align: center;
  font-size: 0.75rem;
}

footer p {
  margin: 0.2rem 0;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-grid {
    grid-template-columns: 7fr 5fr;
  }

  .portal-card {
    position: sticky;
    top: 1.5rem;
  }
}
