#rueckblick {
	font-family: 'Cormorant Garamond', serif;
}

#rueckblick * {
	box-sizing: border-box;
}

#rueckblick a {
	color: inherit;
	text-decoration: none;
}

.hero {
	text-align: center;
	padding: 80px 20px 60px;
	background: #faf8f4;
}

.monogram {
	font-family: 'Cormorant SC', serif;
	font-size: 2.2rem;
	color: #b08d57;
	letter-spacing: .3em;
	margin-bottom: 24px;
	display: block;
}

.hero-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	margin-bottom: 20px;
}

.hero-divider span {
	font-size: .7rem;
	letter-spacing: .25em;
	color: #1a2744;
}

.hero-divider::before,.hero-divider::after {
	content: '';
	flex: 1;
	max-width: 80px;
	height: 1px;
	background: #b08d57;
}

.hero h1 {
	font-size: clamp(3rem,8vw,5.5rem);
	font-weight: 300;
	color: #1a2744;
	line-height: 1.1;
	margin-bottom: 20px;
}

.hero-sub {
	font-style: italic;
	font-size: 1.3rem;
	color: #1a2744;
	opacity: .8;
	margin-bottom: 40px;
}

.hero-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.hero-nav a {
	font-size: .7rem;
	letter-spacing: .2em;
	color: #1a2744;
	padding: 4px 0;
	border-bottom: 1px solid transparent;
	transition: .2s;
}

.hero-nav a:hover {
	border-color: #b08d57;
}

.panorama {
	width: 100%;
	height: 80vh;
	min-height: 300px;
	overflow: hidden;
	background: #e8e4de;
}

.panorama img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.panorama-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #999;
	font-size: .8rem;
	letter-spacing: .1em;
}

.intro {
	text-align: center;
	padding: 80px 20px;
	max-width: 700px;
	margin: 0 auto;
}

.section-label {
	font-size: .65rem;
	letter-spacing: .25em;
	color: #b08d57;
	margin-bottom: 16px;
	display: block;
}

.intro p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #1a2744;
	opacity: .85;
}

.video-section {
	text-align: center;
	padding: 60px 20px;
	background: #faf8f4;
}

.video-wrap {
	max-width: 860px;
	margin: 0 auto;
}

.video-wrap h2 {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 32px;
	color: #1a2744;
}

.video-placeholder {
	position: relative;
	padding-bottom: 56.25%;
	background: #ede8e0;
	border-radius: 2px;
	overflow: hidden;
}

.video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 64px;
	height: 64px;
	background: #b08d57;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.video-play-icon::after {
	content: '';
	border: solid transparent;
	border-width: 12px 0 12px 22px;
	border-left-color: #fff;
	margin-left: 4px;
}

.gallery-section {
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.gallery-section h2 {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 12px;
	color: #1a2744;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 6px;
	margin-top: 32px;
}

.gallery-item {
	aspect-ratio: 1;
	overflow: hidden;
	background: #ede8e0;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: .3s;
}

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

.gallery-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: .7rem;
	letter-spacing: .1em;
	color: #aaa;
}

.site-footer {
	background: #1a2744;
	color: #faf8f4;
	text-align: center;
	padding: 80px 20px 60px;
}

.footer-quote {
	font-style: italic;
	font-size: 1.3rem;
	line-height: 1.8;
	max-width: 640px;
	margin: 0 auto 32px;
	opacity: .9;
}

.footer-names {
	font-family: 'Cormorant SC', serif;
	font-size: 1rem;
	letter-spacing: .2em;
	color: #b08d57;
	margin-bottom: 40px;
}

.footer-credits {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.footer-credit {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-credit-label {
	font-size: .6rem;
	letter-spacing: .2em;
	color: #b08d57;
	opacity: .8;
}

.footer-credit-name {
	font-size: .9rem;
	opacity: .7;
}

@media(max-width:700px) {
	.gallery-grid {
		grid-template-columns: repeat(3,1fr);
	}
}

@media(max-width:400px) {
	.gallery-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

/* Lightbox */
#lb-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.92);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

#lb-overlay.lb-active {
	display: flex;
}

#lb-img {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	cursor: default;
	border-radius: 2px;
	box-shadow: 0 4px 40px rgba(0,0,0,.5);
}

#lb-close {
	position: absolute;
	top: 16px;
	right: 24px;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	line-height: 1;
	opacity: .8;
	font-family: sans-serif;
	z-index: 100000;
}

#lb-close:hover {
	opacity: 1;
}

#lb-prev,#lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 48px;
	cursor: pointer;
	padding: 12px 20px;
	opacity: .7;
	font-family: sans-serif;
	z-index: 100000;
}

#lb-prev:hover,#lb-next:hover {
	opacity: 1;
}

#lb-prev {
	left: 0;
}

#lb-next {
	right: 0;
}

#lb-counter {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	opacity: .65;
	letter-spacing: .12em;
}

.gallery-item img {
	cursor: pointer !important;
	transition: opacity .2s;
}

.gallery-item img:hover {
	opacity: .8;
}

.gallery-section h2 {
	color: #fff;
}

.gallery-section .section-label {
	color: #b08d57;
}

/* Gallery headings – smaller & elegant on mobile */
.gallery-section h2 {
	font-size: clamp(1.6rem, 5vw, 2.8rem);
	font-weight: 300;
	letter-spacing: .08em;
	margin-bottom: 40px;
}

.gallery-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media (max-width: 600px) {
	.gallery-section h2 {
		font-size: 1.6rem;
		margin-bottom: 28px;
	}
	
	.gallery-section {
		padding-top: 40px;
	}
}

/* Gallery hint text */
.gallery-hint {
	font-size: .85rem;
	color: rgba(255,255,255,.55);
	letter-spacing: .06em;
	margin-top: 16px;
	margin-bottom: 32px;
	text-align: center;
	font-style: italic;
}

/* Ansprache section */
.ansprache-section {
	padding: 60px 20px;
	text-align: center;
}

.ansprache-section h2 {
	margin-bottom: 40px;
}

.ansprache-layout {
	display: flex;
	gap: 40px;
	align-items: center;
	max-width: 860px;
	margin: 0 auto;
	text-align: left;
}

.ansprache-img {
	flex: 1 1 45%;
}

.ansprache-img img {
	width: 100%;
	border-radius: 8px;
	display: block;
}

.ansprache-audio {
	flex: 1 1 45%;
}

.ansprache-text {
	font-size: .95rem;
	color: rgba(255,255,255,.75);
	letter-spacing: .04em;
	font-style: italic;
	margin-bottom: 16px;
	line-height: 1.6;
}

.ansprache-audio audio {
	width: 100%;
}

@media (max-width: 640px) {
	.ansprache-layout {
		flex-direction: column;
	}
}

/* Trennstrich vor Ansprache-Sektion */
.ansprache-section {
	border-top: 1px solid rgba(176,141,87,0.35);
	padding-top: 60px;
}

.ansprache-text {
	text-align: center;
}

/* Trennlinie zwischen Galerien */
.gallery-section {
	border-top: 1px solid rgba(176,141,87,0.35);
}

/* Video-Sektion: kein weißer Hintergrund */
.video-section {
	background: transparent !important;
	color: #fff;
	padding: 60px 20px 20px;
}

.video-section h2 {
	color: #fff;
	font-size: clamp(1.6rem,5vw,2.8rem);
	font-weight: 300;
	letter-spacing: .08em;
}

.video-section .section-label {
	color: #b08d57;
}

.wp-block-video {
	max-width: 900px;
	margin: 0 auto 60px;
	padding: 0 20px;
}

.wp-block-video video {
	width: 100%;
	border-radius: 6px;
}

.video-section h2 {
	font-weight: 700 !important;
}

/* Goldene Labels – fett & größer */
.section-label {
	font-weight: 700 !important;
	font-size: 1rem !important;
	letter-spacing: .18em !important;
}

.video-hint {
	font-size: .85rem;
	color: rgba(255,255,255,.6);
	letter-spacing: .04em;
	font-style: italic;
	margin-top: 16px;
	line-height: 1.8;
	text-align: center;
}

/* Trennlinien Video-Sektion */
.video-section {
	border-top: 1px solid rgba(176,141,87,0.35) !important;
}

.wp-block-video {
	padding-bottom: 60px;
}




/* === FooGallery: 1 Vorschaubild, Klick öffnet direkt alle Fotos === */
section#geburtstag .foogallery .fg-item:nth-child(n+2){display:none!important}
section#hochzeit .foogallery .fg-item:nth-child(n+2){display:none!important}

/* "ALLE FOTOS ANSEHEN" Overlay auf Vorschaubild */
section#geburtstag .foogallery .fg-item:first-child,
section#hochzeit .foogallery .fg-item:first-child{position:relative!important;overflow:visible!important}

section#geburtstag .foogallery .fg-item:first-child a,
section#hochzeit .foogallery .fg-item:first-child a{position:relative!important;display:block!important}

section#geburtstag .foogallery .fg-item:first-child a::after,
section#hochzeit .foogallery .fg-item:first-child a::after{
  content:'↓  ALLE FOTOS ANSEHEN';
  position:absolute;
  bottom:0;left:0;right:0;
  background:rgba(184,146,74,0.92);
  color:#fff!important;
  text-align:center;
  padding:13px 0;
  font-size:.82rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-family:inherit;
  pointer-events:none;
  z-index:99;
  display:block
}

/* Alte Buttons verstecken */
.mehr-btn-g1,.mehr-btn-g2{display:none!important}



/* === Lesbare Hinweistexte (größer, weiß, fett, kursiv) === */
.gallery-hint, .ansprache-text, .video-hint {
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  font-style: italic !important;
  opacity: 1 !important;
  line-height: 1.6 !important;
}