* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    overflow-x: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word; 
	hyphens: none; 
}

/* Navigation */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255 255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-family: 'Montserrat' sans-serif;
}

nav a:hover {
    color: #b4926f;
}

/* Copyright bei Bilder einfügen */

.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-container img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.image-container .copyright {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 3px;
  pointer-events: none;
}

/* Hero Section - Titel Slider */
.hero {
    height: 80vh;
    background: linear-gradient(135deg, rgba(180, 146, 111, 0.3), rgba(218, 198, 175, 0.3)),
                url('../images/header.jpg');
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    animation: fadeInUp 1.5s ease;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.hero p {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeInUp 1.8s ease;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Story Section - Ihre Liebesgeschichte */

.story {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #b4926f;
    letter-spacing: 4px;
}

.story p {
    font-size: 1.3rem;
    line-height: 2;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

/* Section Styling */
section {
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #b4926f;
    letter-spacing: 4px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #b4926f;
    margin: 1rem auto;
}

/* Card Grid - Karten anzeige bei Trauungsorte */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba( 0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #dac6af, #f5f0eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #b4926f;
    position: relative;
    overflow: hidden; 
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.card:hover .card-image::after {
    transform: translateX(100%);
}

.card-content {
    padding: 2rem;
	max-width:100%;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    letter-spacing: 2px;
}

.card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.card-tag {
    display: inline-block;
    background: #f5f0eb;
    color: #b4926f;
    padding: 0.5rem 1 rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    letter-spacing: 1px;
}

/* Bilder für die Cards der Trauungsorte */
.kirchliche-trauung {
    background-image: url('../images/kirchlich.jpg');
    background-size: cover;
    background-position: center;
}

.standesamt {
    background-image: url('../images/rathaus.jpg');
    background-size: cover;
    background-position: center;
}

.freie-trauung {
    background-image: url('../images/freie-trauung.jpg');
    background-size: cover;
    background-position: center;
}

/* Bilder für die Cards anpassen */
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Bilder für die Cards der Feier-Locations */
.schloss-kloster {
    background-image: url('../images/schloss-hollenburg.jpg');
    background-size: cover;
    background-position: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item-new {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden; 
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25)
}

.gallery-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Galerie Overlay - Lupe Symbol */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(180, 146, 111, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-item-new:hover .gallery-overlay {
    background: rgba(180, 146, 111, 0.7);
}

.gallery-icon {
    font-size: 3rem;
    color: white;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.gallery-item-new:hover .gallery-icon {
    opacity: 1;
    transform: scale(1);
}

/* "Weitere Bilder" Badge */
.gallery-more-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.more-count {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.more-text {
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-more .gallery-overlay {
    background: rgba(180, 146, 111, 0.8);
}

.gallery-more:hover .gallery-overlay {
    background: rgba(180, 146, 111, 0.95);
}

.gallery-more .more-count, 
.gallery-more .more-text {
    opacity: 1;
}

/* Versteckte Bilder */
.gallery-hidden {
    display: none;
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to { opacity: 1;}
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    margin: auto;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    color: #b4926f;
}

/* Navigation Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 60px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 1rem;
    transition: all 0.3s;
    background: rgba(180, 146, 111, 0.3);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -90px;
}

.lightbox-next {
    right: -90px;
}

.lightbox-prev:hover, 
.lightbox-next:hover {
    background: rgba(180, 146, 111, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/*Lightbox Caption */
.lightbox-caption {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    margin-top: 1.5rem; 
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
}

/*Image Counter */
.lightbox-counter {
    text-align: center;
    color: #b4926f;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
	h1, h2, h3, h4, h5, h6, p, a, li, td, th {
		word-wrap: break-word;
		overflow-wrap: break-word;
		hyphens: none; 
	}
    .gallery-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-item-new {
        aspect-ratio: 16/10;
    }
    
    .more-count {
        font-size: 3rem;
    }
    
    .more-text {
        font-size: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 40px;
    }
    
    .lightbox-content {
        width: 95%;
    }
}

/* Touch-Device Optimierungen */
@media (hover: none) and (pointer: coarse) {
    .gallery-item-new:active {
        transform: scale(0.95);
    }
    
    .lightbox-prev:active,
    .lightbox-next:active {
        transform: translateY(-50%) scale(0.9);
    }
}

/* Keyboard Navigation Indicator */
.lightbox.active .lightbox-prev::after,
.lightbox.active .lightbox-next::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #999;
    white-space: nowrap;
}

/* Loading State */
.lightbox-image.loading {
    opacity: 0.5;
}

/* Prevent Body Scroll when Lightbox is Open */
body.lightbox-open {
    overflow: hidden;
}

/* Timeline Section */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #b4926f;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    min-width: 120px;
    height: 120px;
    background: white;
    border: 4px solid #b4926f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b4926f;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #b4926f;
    margin-bottom: 0.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-marker {
        min-width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section - Button "Jetzt anfrage" */
.cta {
    background: linear-gradient(135deg, #b4926f, #dac6af);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 4px;
}

.cta p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #b4926f;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0,  0.2);
}

/* Kontaktformular */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1rem;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.inquiry-form .form-group {
    text-align: left;
}

.inquiry-form .form-group-full {
    margin-bottom: 1.5rem;
}

.inquiry-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: white;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="date"],
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
    box-sizing: border-box;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.25);
}

.inquiry-form select option {
    background: #b4926f;
    color: white;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-label input[type="radio"] {
    width: auto;
    accent-color: white;
    cursor: pointer;
}

.form-privacy {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-weight: 400 !important;
    font-size: 0.85rem !important;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    accent-color: white;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: white;
    text-decoration: underline;
}

.checkbox-label a:hover {
    opacity: 0.8;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1.2rem 4rem;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 600px) {
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .radio-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-form-wrapper {
        padding: 0 1rem;
    }
}

/* Footer - Fußzeile */
footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
		letter-spacing: 3px;
		line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
		letter-spacing: 1px;
		line-height: 1.4;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
		letter-spacing: 2px;
		line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
		letter-spacing: 0.5px;
		line-height: 1.3;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Parallax Effect */ 
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Subpage Styles */
.page-header {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(135deg, rgba(180, 146, 111, 0.9), rgba(218, 198, 175, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    padding: 2rem;
}

.page-header::before {
    background: rgba(0, 0, 0, 0.3);
}

.page-header::before {
    background: rgba(0, 0, 0, 0.7);
}

.page-header::before {
    background: rgba(180, 146, 111, 0.8);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgba(180, 146, 111, 0.8);
}

.page-header h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.content-section {
    padding: 2rem 2rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: #b4926f;
    margin-bottom: 2rem;
    text-align: center;
}

.content-wrapper .lead {
    font-size: 1.3rem;
    line-height: 2;
    color: #5a5a5a;
    text-align: center;
}

.content-wrapper p {
    font-size: 1rem;
    line-height: 2;
    color: #5a5a5a;
    text-align: center;
}

.image-content-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Impressum Styles */
.page-header-impressum {
    height: 20vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(135deg, rgba(180, 146, 111, 0.9), rgba(218, 198, 175, 0.9));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    padding-top: 2rem;
}

.page-header-impressum-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-header-impressum h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.page-header-impressum p {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Feiern Styles */
.page-header-feiern {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(135deg, rgba(180, 146, 111, 0.9), rgba(218, 198, 175, 0.9));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    padding-top: 8rem;
    padding: 2rem;
}

.page-header-feiern-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-header-feiern h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.page-header-feiern p {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Hotels Styles */
.page-header-hotels {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(135deg, rgba(180, 146, 111, 0.9), rgba(218, 198, 175, 0.9));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    padding-top: 8rem;
    padding: 2rem;
}

.page-header-hotels-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #b4926f;
}


.page-header-hotels h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    text-align: center;
}

.page-header-hotels p {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
}

.page-header-hotels a {
    color: #b4926f;
}

/* Dienstleister Styles */
.page-header-dienstleister {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(135deg, rgba(180, 146, 111, 0.9), rgba(218, 198, 175, 0.9));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    padding-top: 8rem;
    padding: 2rem;
}

.page-header-dienstleister-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-header-dienstleister h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.page-header-dienstleister p {
    font-size: 1.5rem;
    letter-spacing: 2px;
}
/* Detail Sections */
.detail-section {
    padding: 6rem 2rem;
}

.detail-section.alternate {
    background-color: #f9f7f4;
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.detail-text h2 {
    font-size: 2.5rem;
    color: #b4926f;
    margin-bottom: 1rem;
}

.detail-text h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.detail-text h4 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-text h5 {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.detail-text a {
    color:#b4926f;
    text-decoration: underline;
    opacity: 0.8;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b4926f;
    font-weight: bold;
    font-size: 1.3rem;
}

.feature-list a {
    color: #b4926f;
}

.detail-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #dac6af, #f5f0eb);
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.kirchliche-trauung-large,
.standesamt-large,
.freie-trauung-large,
.schloss-kloster-large,
.harrys-catering-large,
.weingut-stadt-krems-large,
.hotels-large,
.fotografie-large,
.kunstmeile-large,
.natur-large,
.shopping-large,
.kalteis-large,
.annasophie-large,
.pfeffel-large,
.beautytraum-large {
    background-size: cover;
    background-position: center;
}

.kirchliche-trauung-large {
    background-image: url('../images/kirchlich.jpg');
}

.standesamt-large {
     background-image: url('../images/rathaus.jpg');
}

.freie-trauung-large {
    background-image: url('../images/freie-trauung.jpg');
}

.schloss-kloster-large {
    background-image: url('../images/schloss-hollenburg.jpg');
}

.weingut-stadt-krems-large {
    background-image: url('../images/weingut-stadt-krems.jpg')
}

.hotels-large {
    background-image: url('../images/hotels.jpg');
}

.fotografie-large {
    background-image: url('../images/fotografie.jpg');
}

.kunstmeile-large {
    background-image: url('../images/kunstmeile.jpg');
}

.natur-large {
    background-image: url('../images/natur.jpg');
}

.shopping-large {
    background-image: url('../images/shopping.jpg');
}

.kalteis-large {
	background-image: url('../images/kalteis.jpg');
}

.annasophie-large {
	background-image: url('../images/annasophie.jpg');
}

.pfeffel-large {
	background-image: url('../images/pfeffel.jpg');
}

.beautytraum-large {
	background-image: url('../images/beautytraum.jpg');
}

.info-box {
    background: #f5f0eb;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #b4926f;
}

.info-box h4 {
    color: #b4926f;
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0.8rem;
}

.info-box a {
    color: #b4926f;
    text-decoration: underline;
    opacity: 0.8;
}

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}
/* Links auf Beige setzen und unterstrichen */
.contact-info a {
    color:#b4926f;
    text-decoration: underline;
    opacity: 0.8;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #b4926f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: #8b6f4f;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background: #b4926f;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f9f7f4;
}

.comparison-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Related Links */
.related-links {
    padding: 6rem 2rem;
    background: white;
}

/* ============================================
   SUBSECTION BILDER - Individuell pro h4
   ============================================ */

/* Container für mehrere Bilder */
.detail-image-container {
    width: 100%;
    height: 600px;
    position: sticky;
    top: 100px;
    border-radius: 10px;
    overflow: hidden;
}

/* Alle Bilder übereinander legen */
.detail-image-container .detail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
}

/* Aktives Bild sichtbar machen */
.detail-image-container .detail-image.active {
    opacity: 1;
    z-index: 1;
}

/* Subsections - damit JavaScript sie erkennen kann */
.subsection {
    margin-bottom: 3rem;
    scroll-margin-top: 150px; /* Für besseres Scrollverhalten */
}

/* Bilder für Schloss & Kloster Section */
.schloss-hollenburg-img {
    background-image: url('../images/schloss-hollenburg.jpg');
}

.kloster-und-img {
    background-image: url('../images/KS_blau.jpg');
}

/* Bilder für Weingüter Section */
.weingueter-large {
    background-image: url('../images/wein-genuss.jpg');
}

/* Bilder für Floristik Section */
.nentwich-img {
    background-image: url('../images/nentwich.jpg');
}

.kral-img {
    background-image: url('../images/kral.jpg');
}

/* Bilder für Fotograf Section */
.pfeffel-img {
	background-image: url('../images/pfeffel.jpg');
}

.fotografie-img {
	background-image: url('../images/fotografie.jpg');
}

/* Bilder für Catering */
.harrys-catering {
    background-image: url('../images/harrys-catering.jpg');
}

.harrys-catering-large {
    background-image: url('../images/harrys-catering.jpg');
}

/* Bilder für Event Locations Section */
.kunsthalle-img {
    background-image: url('../images/kunsthalle.jpg');
}

.stadtsaal-img {
    background-image: url('../images/stadtsaal.jpg');
}

.schifffahrt-img {
    background-image: url('../images/schifffahrt.jpg');
}

.donaupark-img {
    background-image: url('../images/donaupark.jpg');
}

/* Bilder für Dienstleister */
.annasophie-img {
	background-image: url('../images/annasophie.jpg');
}

/* Fallback für Sections ohne spezifisches Bild */
.detail-image.placeholder {
    background: linear-gradient(135deg, #dac6af, #f5f0eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .detail-image-container {
        height: 400px;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .subsection {
        scroll-margin-top: 100px;
    }
}

/* Footer enhancements */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    color: #b4926f;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b4926f;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

/* Alle Links im Footer weiß */
footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    }

footer a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2c2c2c;
    cursor: pointer;
    padding: 0.5rem;
}

/* Active Navigation */
nav a.active {
    color: #b4926f;
    font-weight: 600;
}

/* Legal/Impressum Sections */
.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: #b4926f;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #b4926f;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.legal-section ul {
    margin-bottom: 1.5rem;
}

.legal-section a {
    color: #b4926f;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: #8b6f4f;
    text-decoration: underline;
}

/* Responsive Updates for Subpages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
            
    .page-header p {
        font-size: 1.2rem;
    }
            
    .detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
            
    .detail-image {
        height: 400px;
        position: relative;
        top: 0;
    }
            
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 1rem;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        padding: 0.5rem 0;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}
