/* --- style.css --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500&family=Lato:wght@300;400&display=swap');

:root {
    --bg-color: #fbfaf8; 
    --gold: #b39b7d;     
    --text-dark: #222222;
    --text-light: #888888;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    overflow-x: hidden;
}

/* NAVIGATION & MENÜ */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; position: relative; background: rgba(251, 250, 248, 0.95); border-bottom: 1px solid rgba(179, 155, 125, 0.2); z-index: 1000; }
.nav-left, .nav-right { flex: 1; }
.nav-right { display: flex; justify-content: flex-end; }
.nav-center { flex: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.extra-logo { height: 45px; width: auto; opacity: 0.9; }

.brand-name { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--text-dark); letter-spacing: 4px; text-transform: uppercase; font-weight: 500; margin-bottom: 15px; text-decoration: none; }
.menu-links { display: flex; gap: 25px; flex-wrap: wrap; justify-content: center; }
.menu-links a { text-decoration: none; color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; transition: transform 0.3s ease, color 0.3s ease; display: inline-block; }
.menu-links a:hover { transform: translateY(-3px); color: var(--gold); }

/* KONTAKT DROPDOWN */
.dropdown { position: relative; display: inline-block; }
.contact-btn { background: transparent; border: none; color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; padding: 10px 0; transition: color 0.3s; }
.contact-btn:hover { color: var(--gold); }
.dropdown-content { visibility: hidden; opacity: 0; position: absolute; right: 0; top: 100%; background-color: var(--bg-color); min-width: 200px; border: 1px solid rgba(179, 155, 125, 0.3); box-shadow: 0px 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: all 0.3s ease; transform: translateY(10px); z-index: 1000; }
.dropdown-content.show { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-content a { color: var(--text-dark); padding: 15px 20px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 2px; border-bottom: 1px solid rgba(179, 155, 125, 0.1); text-align: right; transition: background 0.3s, color 0.3s; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { color: var(--gold); background-color: rgba(179, 155, 125, 0.03); }

/* HERO BEREICH MIT SLIDER */
.hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px 40px 20px; }
.hero-image-container { width: 100%; max-width: 1000px; height: 65vh; background-color: #1a1a1a; position: relative; margin-bottom: 40px; overflow: hidden; border: 1px solid rgba(179, 155, 125, 0.4); }

/* Slider Logik */
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; object-fit: cover; z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }

/* Das neue Wasserzeichen unten rechts */
.hero-watermark { position: absolute; bottom: 30px; right: 30px; color: rgba(255, 255, 255, 0.8); font-family: 'Playfair Display', serif; font-size: 1rem; letter-spacing: 3px; font-style: italic; z-index: 10; pointer-events: none; }

/* Die Slider-Punkte unten */
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.3); cursor: pointer; transition: background-color 0.3s ease, transform 0.3s ease; }
.dot:hover { background-color: rgba(255, 255, 255, 0.6); }
.dot.active { background-color: #ffffff; transform: scale(1.2); }

.intro-text { max-width: 700px; margin: 0 auto 40px auto; font-size: 1.1rem; line-height: 1.8; color: var(--text-dark); font-weight: 300; }

/* LOGO SLOT & DYNAMISCHES GRID */
.center-logo-slot { display: flex; justify-content: center; margin: 40px 0 80px 0; }
.center-logo-slot img { width: 120px; height: auto; opacity: 0.9; }
.packages { padding: 0 5% 80px 5%; max-width: 1200px; margin: 0 auto; }
.grid-container { display: grid; grid-template-columns: 1fr; gap: 40px; }
.package-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #eee; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.package-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.package-img { width: 100%; aspect-ratio: 4/5; background: #f4f4f4; object-fit: cover; margin-bottom: 20px; }
.package-info { text-align: center; }
.package-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 10px; }
.package-info p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.btn-gold { display: inline-block; padding: 12px 30px; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; background: transparent; transition: all 0.3s; }
.btn-gold:hover { background-color: var(--gold); color: #fff; }

/* SUB-SEITEN & RECHTSTEXTE (Extrem detailliert und schlicht) */
.page-header { text-align: center; padding: 80px 20px 40px 20px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;}
.page-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; color: var(--text-light); }

.legal-content { max-width: 900px; margin: 0 auto 80px auto; padding: 0 5%; font-size: 0.85rem; line-height: 1.7; color: var(--text-dark); text-align: justify; }
.legal-content h2 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin: 40px 0 15px 0; border-bottom: 1px solid #eee; padding-bottom: 5px;}
.legal-content h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; margin: 25px 0 10px 0; }
.legal-content p { margin-bottom: 15px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 40px 5%; max-width: 1200px; margin: 0 auto 80px auto; }
.gallery-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid #eee; transition: transform 0.4s ease; }
.gallery-grid img:hover { transform: scale(1.03); }

/* ANIMATIONEN (JS) */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 1s ease-out, transform 1s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* FOOTER (Adresse entfernt) */
footer { padding: 60px 5% 40px 5%; border-top: 1px solid #dcdcdc; }
.footer-content { display: grid; grid-template-columns: 1fr; gap: 40px; color: #999; font-size: 0.75rem; line-height: 1.8; }
.footer-col h4 { color: #666; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; font-family: 'Montserrat', sans-serif;}
.footer-col a { color: #999; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }

@media (min-width: 768px) {
    .grid-container { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .package-card:nth-child(2) { margin-top: 60px; }
    .package-card:nth-child(3) { margin-top: 20px; }
    .footer-content { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    nav { flex-direction: column; gap: 20px; }
    .nav-left, .nav-center, .nav-right { display: flex; justify-content: center; width: 100%; }
    .dropdown-content { right: 50%; transform: translateX(50%) translateY(10px); text-align: center;}
    .dropdown-content a { text-align: center; }
}