:root {
  --main: #991f36;
  --accent: #e7b8b1;
  --text: #222;
  --bg: #fff;
  --font-headline: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--accent-color, #b87333);
}
a:hover {
  text-decoration: underline;
}

header.hero {
  position: relative;
  background: url('braeutigam-double-hochzeitsfoto-fotoshooting-brautpaar.webp') 50% 35%/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .overlay {
  background: rgba(0,0,0,0.5);
  color: white;
  text-align: center;
  padding: 2rem;
}
header h1 {
  font-family: var(--font-headline);
  font-size: 3rem;
  color: white;
}
header .tagline {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.cta-button {
  background: var(--main);
  color: white;
  padding: 1rem 2rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 2rem;
  display: inline-block;
}

main section {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1rem;
}

h1, h2 {
  font-family: var(--font-headline);
  color: var(--main);
}

.icon-list li, .icon-steps li {
  list-style: none;
  display: flex;
  /*align-items: flex-start;*/
  align-items: center; /* sorgt für vertikale Zentrierung */
  gap: 0.5rem;
  margin: 1rem 0;
}
.icon-list li span, .icon-steps li span {
  font-size: 1.5rem;
  color: var(--main);
  min-width: 2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.5em;
  width: 1.5em;
}

.double-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.double-card {
  flex: 1 1 220px;
  background: #f9f9f9;
  padding: 1rem;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.double-card img {
  width: 100%;
  border-radius: 6px;
}

.photo-container {
  position: relative;
  overflow: hidden;
  height: 600px;
  border-radius: 8px;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease, left 0.6s ease;
  z-index: 0;
  opacity: 0;
}

.slider-image.active {
  left: 0;
  z-index: 1;
  opacity: 1;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--main);
  transition: width 5s linear;
  z-index: 2;
}



.gallery-pair {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.gallery-pair img {
  flex: 1 1;
  width: 100%;
  border-radius: 4px;
}

form input, form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  font-family: var(--font-body);
  font-size: 1rem;
}
form label {
  display: block;
  margin-bottom: 1rem;
}
form input[type='checkbox'] {
  width: 1rem;
  margin: 0;
  margin-right: 0.2rem;
}
form button {
  box-sizing: border-box;
  background: var(--main);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.lgbtq-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

/* Footer Navigation */
.footer-nav {
    margin-top: 0.5rem;
}
.footer-nav a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: var(--accent-color, #b87333);
    font-size: 0.9rem;
}
.footer-nav a:hover {
    text-decoration: underline;
}


header > h1 {
    color: var(--main);
    margin: 1rem;
}

/* Link zurück zur Startseite im Header */
.back-link {
    display: inline-block;
    margin: 1rem;
    text-decoration: none;
    color: var(--accent-color, #b87333);
    font-weight: bold;
    font-size: 0.95rem;
}
.back-link:hover {
    text-decoration: underline;
}