/*
Theme Name: Bibelstand Landing
Description: Eine schlichte One‑Page‑Landingpage mit der Skyline von Hannover, Bibelvers und Kontaktbereich. Entwickelt von ChatGPT.
Author: ChatGPT
Version: 1.0
*/

/* Basic resets */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #f5f5f5;
  background-color: #01072b;
  line-height: 1.6;
}

a {
  color: #ffd700;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background-image: url('assets/hannover_header.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 2rem;
}

/* Container for headline, subheadline and contact within header */
.hero-content {
  z-index: 1;
  max-width: 900px;
  /* Move the headline significantly higher (~200px) */
  margin-top: -200px;
}
.hero-content h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  color: #c39b53;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.hero-content .subheadline {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #e6dab1;
}

/* Contact inside hero */
.hero-contact {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: #c39b53;
}
.hero-contact a {
  color: #c39b53;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-contact svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #c39b53;
}

/* Section below the hero containing verse, contact and greeting */
/* Section below the hero containing verse and contact */
.info-section {
  background-color: #161914;
  color: #c39b53;
  padding: 2rem 1rem;
  text-align: center;
}
.info-section .verse {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.info-section .contact-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #c39b53;
}
.info-section .contact-row svg {
  width: 1rem;
  height: 1rem;
  fill: #c39b53;
  margin-right: 0.3rem;
}

.intro {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: #161914;
  color: #c39b53;
}

.contact {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
}
.contact-item .icon {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
}

/* Footer */
footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #161914;
  color: #c39b53;
}
footer ul.legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 1rem;
}
footer ul.legal li {
  display: inline;
}

/* Footer links inherit the gold colour */
footer a {
  color: #c39b53;
}