body {
    margin:0;
    font-family: 'Georgia', serif;
    background:#0a0a0a;
    color:#eaeaea;
    overflow-x:hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Navigation */
.main-nav {
    position:fixed;
    top:25px;
    left:50%;
    transform:translateX(-50%);
    z-index:1000;
}

.main-nav a {
    color:#f5f5f5;
    margin:0 25px;
    text-decoration:none;
    font-size:22px;
    opacity:0.7;
    transition:0.3s;
}

.main-nav a:hover {
    opacity:1;
}

/* Footer */
footer {
    text-align:center;
    padding:40px;
    opacity:0.4;
    letter-spacing:2px;
}

/* HERO */


.hero2 {
    height:100vh;
    display:flex;
    background-size:cover;
    background-position:center;
    justify-content:left;
    align-items:center;
    text-align:center;
    position:relative;
    
}

.hero3 {
    height:100vh;
    display:flex;
    background-size:cover;
    background-position:center;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    
}



.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("../photos/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* leichte filmische Abdunklung */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.65)
  );
}


.hero-content, 
.about-content {
    position: relative;
    max-width: 900px;
    line-height: 1.6;
    color: #ffffff; /* Helles Weiß für alle Texte */
    text-shadow: 0 0 25px rgba(0,0,0,0.6); /* optional für bessere Lesbarkeit */
}

/* =====================
   Intro Text (Large / Cinematic)
===================== */

.intro-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 680px;
  z-index: 2;
  color: #e0e0e0;
}

.intro-text blockquote {
  font-size: 3rem;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 3rem;
  color: #e5e5e5;
}

.intro-text blockquote span {
  display: block;
  margin-top: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a0a0a0;
}

.intro-text p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #cfcfcf;
}

/* ========================= */
/* ZITATE MIT GLOW */
/* ========================= */
.hero-content h1,
.about-content h1 {
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85); /* leicht transparent */
    text-shadow: 0 0 15px rgba(255,255,255,0.6),
                 0 0 30px rgba(255,255,255,0.4); /* Glow */
    margin-bottom: 20px;
}

/* Fließtext Fade-In */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content p,
.about-content p {
    font-size: 16px;
    color: #ffffff;
}


/* ========================= */
/* GALLERY */
/* ========================= */

.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:60px;
    padding:140px 8%;
}

/* Dia Stil */
.slide-frame {
    background:#fff;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.6);
    cursor:pointer;
    transition:0.4s;
}

.slide-frame:hover {
    transform:translateY(-8px);
}

/* Quadratische Bilder */
.slide-frame img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
}

/* Overlay */
.overlay {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.overlay img {
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}

.overlay-caption {
    position:absolute;
    bottom:40px;
    right:60px;
    text-align:right;
    color:white;
    font-variant:small-caps;
    letter-spacing:2px;
    background:rgba(0,0,0,0.45);
    padding:15px 25px;
    max-width:40%;
}

.overlay-caption h2 {
    font-size:16px;
    margin:0 0 8px 0;
}

.overlay-caption p {
    font-size:13px;
    opacity:0.8;
    margin:0;
}

/* Toggle Icon */
.caption-toggle {
    position:absolute;
    top:10px;
    right:5px;
    font-size:18px;
    cursor:pointer;
    opacity:0.7;
    transition:0.3s;
}

.caption-toggle:hover {
    opacity:1;
}

/* ========================= */
/* GALLERY PAGINATION */
/* ========================= */

.gallery-pagination {
    text-align:center;
    margin:60px 0 120px 0;
    font-size:18px;
    letter-spacing:2px;
}

.page-icon {
    color:#f5f5f5;
    margin:0 20px;
    text-decoration:none;
    font-size:24px;
    opacity:0.6;
    transition:0.3s;
}

.page-icon:hover {
    opacity:1;
}

.page-info {
    color:#ddd;
    opacity:0.7;
}

/* ========================= */
/* SLIDESHOW - Bild zentriert & Navigation überlagert */
/* ========================= */
.slideshow-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: black;
    overflow: hidden;
}

/* Bild absolut zentriert */
.slide-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* zentriert */
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    /* opacity: 0; */
    transition: opacity 0.8s ease-in-out;
    z-index: 1; /* Hintergrund */
}

.slide-img.active {
    opacity: 1;
    z-index: 1;
}

/* Caption & Navigation überlagert (höherer z-index) */
.slide-caption,
.slide-nav {
    position: absolute;
    z-index: 2; /* über dem Bild */
}

.slide-caption {
    bottom: 40px;
    right: 60px;
    text-align: right;
    color: white;
    font-variant: small-caps;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.45);
    padding: 15px 25px;
    max-width: 40%;
    font-size: 10px;
}

.slide-nav {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.slide-nav a {
    color: #f5f5f5;
    margin: 0 20px;
    font-size: 26px;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

.slide-nav a:hover {
    opacity: 1;
}

/* Caption Toggle Symbol */
.slide-caption .caption-toggle {
    position: absolute;
    top: 12px;
    right: 5px;
    font-size: 18px;
    cursor: pointer;
}


/* Map */
#map {
    height:100vh;
}


/* =====================
   About Page
===================== */

.about-content {
  max-width: 700px;
  margin: 15vh auto 10vh;
  padding: 0 6%;
  text-align: center;
  color: #e0e0e0;
  line-height: 1.7;
}

.about-content blockquote {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.about-content blockquote span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a0a0a0;
}

.about-content p {
  font-size: 1.25rem;
  margin-bottom: 1.8rem;
  color: #cfcfcf;
}

.about-content a {
  color: #9fcfff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-content a:hover {
  color: #ffffff;
}
