:root {
    --cream: #FAF7F2;
    --sage: #9CAF88;
    --deep-green: #2D5016;
    --gold: #C9A961;
    --charcoal: #3A3A3A;
    --overlay-opacity: 0.5; /* HIER KANNST DU DIE TRANSPARENZ ÄNDERN (0.0 = komplett durchsichtig, 1.0 = komplett deckend) */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-green);
    font-weight: 600;
    text-decoration: none;
}

.nav-logo span {
    color: var(--gold);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--deep-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--cream);
    padding: 0.3rem;
    border-radius: 25px;
}

.lang-btn {
    width: 38px;
    height: 38px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    transform: scale(1.1);
    border-color: var(--gold);
}

.lang-btn.active {
    border-color: var(--deep-green);
    background: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background-image: url('img/front.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(250, 247, 242, var(--overlay-opacity)) 0%,
        rgba(240, 235, 227, calc(var(--overlay-opacity) - 0.04)) 100%
    );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(156, 175, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.ornament {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
    position: relative;
    animation: fadeInScale 1.5s ease-out;
    z-index: 1;
}

.ornament::before,
.ornament::after {
    content: '❋';
    position: absolute;
    top: -8px;
    color: var(--gold);
    font-size: 1rem;
}

.ornament::before {
    left: -15px;
}

.ornament::after {
    right: -15px;
}

.names {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    color: var(--deep-green);
    text-align: center;
    line-height: 1.2;
    margin: 1rem 0;
    animation: fadeInUp 1.2s ease-out 0.3s both;
    position: relative;
    z-index: 1;
}

.ampersand {
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--gold);
    display: block;
    margin: 0.5rem 0;
    font-style: italic;
    animation: fadeInScale 1.5s ease-out 0.6s both;
}

.tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-top: 2rem;
    animation: fadeInUp 1.2s ease-out 0.9s both;
    position: relative;
    z-index: 1;
}

/* Google Font Tangerine */
.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
  color: #ACA28D;
  font-size: clamp(3rem, 4vw, 7rem);
  animation: fadeInUp 1.2s ease-out 0.9s both;
  position: relative;
  z-index: 1;
}

/* Date Section */
.date-section {
    padding: 6rem 2rem;
    text-align: center;
    background: white;
    position: relative;
}

.date-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--sage));
}

.date-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border: 2px solid var(--gold);
    background: var(--cream);
    position: relative;
    animation: fadeInScale 1s ease-out;
}

.date-container::before,
.date-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
}

.date-container::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.date-container::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.date-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.date-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--deep-green);
    font-weight: 600;
    margin: 1rem 0;
}

.location {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.location::before {
    content: '📍';
    font-size: 1.5rem;
}


/* Gallery Section */
.gallery-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--cream) 50%, white 100%);
    overflow: hidden;
}

.gallery-desktop {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.rhombus-container {
    position: relative;
    width: 280px;
    height: 280px;
    animation: fadeInScale 1s ease-out both;
}

.rhombus-container:nth-child(1) { animation-delay: 0.1s; }
.rhombus-container:nth-child(2) { animation-delay: 0.3s; }
.rhombus-container:nth-child(3) { animation-delay: 0.5s; }

.rhombus {
    width: 100%;
    height: 100%;
    transform: skewX(-15deg);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.rhombus:hover {
    transform: skewX(-15deg) scale(1.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.rhombus img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(15deg) scale(1.2);
    transform-origin: center;
}

/* Mobile Slideshow */
.gallery-mobile {
    display: none;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.slide.active {
    display: block;
}

.slide .rhombus-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.slide-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--sage);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.dot.active {
    background-color: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    color: var(--deep-green);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev:hover, .next:hover {
    background: var(--gold);
    color: white;
}

.prev {
    left: -60px;
}

.next {
    right: -60px;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 2rem;
    background: white;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: var(--sage);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 4rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--sage), var(--gold), var(--sage));
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--cream);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 40px);
    text-align: left;
}

.timeline-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--deep-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-description {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--sage);
}

/* Hotels Section */
.hotels-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

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

.hotel-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.hotel-card:nth-child(1) { animation-delay: 0.1s; }
.hotel-card:nth-child(2) { animation-delay: 0.2s; }
.hotel-card:nth-child(3) { animation-delay: 0.3s; }

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hotel-card:hover::before {
    transform: scaleX(1);
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hotel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-content {
    padding: 2rem;
}

.hotel-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hotel-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hotel-address {
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.hotel-description {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hotel-distance {
    display: inline-block;
    background: var(--cream);
    color: var(--sage);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Recommendations Section */
.recommendations-section {
    padding: 6rem 2rem;
    background: white;
}

.recommendation-category-section {
    margin-bottom: 5rem;
}

.recommendation-category-section:last-child {
    margin-bottom: 0;
}

.recommendation-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
}

.recommendation-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.recommendations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.recommendation-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.recommendation-card:nth-child(1) { animation-delay: 0.1s; }
.recommendation-card:nth-child(2) { animation-delay: 0.2s; }
.recommendation-card:nth-child(3) { animation-delay: 0.3s; }
.recommendation-card:nth-child(4) { animation-delay: 0.4s; }

.recommendation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.recommendation-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recommendation-content {
    padding: 2rem;
}

.recommendation-category {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.recommendation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--deep-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.recommendation-description {
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    animation: fadeInUp 0.8s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.8rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--deep-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.8rem;
}

/* Footer */
.footer {
    background: var(--deep-green);
    color: var(--cream);
    text-align: center;
    padding: 3rem 2rem;
}

.footer-ornament {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-date {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Language-specific content visibility */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

.lang-content.active.inline {
    display: inline;
}

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .gallery-desktop .rhombus-container {
        width: 220px;
        height: 220px;
    }

    .prev {
        left: -55px;
    }

    .next {
        right: -55px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .language-switcher {
        margin-top: 1rem;
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 1.5rem 4rem;
        background-attachment: fixed;
    }

    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(250, 247, 242, calc(var(--overlay-opacity) + 0.05)) 0%,
            rgba(240, 235, 227, calc(var(--overlay-opacity) + 0.03)) 100%
        );
    }

    .names {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .ampersand {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .ornament {
        width: 80px;
    }
    
    .date-section {
        padding: 4rem 1rem;
    }

    .date-container {
        padding: 2rem 1.5rem;
    }

    .date-main {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .location {
        font-size: 1.1rem;
    }

    .gallery-section {
        padding: 4rem 1rem;
    }

    .gallery-desktop {
        display: none;
    }

    .gallery-mobile {
        display: block;
    }

    .prev {
        left: 10px;
        width: 45px;
        height: 45px;
    }

    .next {
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .timeline-section {
        padding: 4rem 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .hotels-section,
    .recommendations-section,
    .faq-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 3rem;
    }
    
    .hotels-grid,
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .hotel-card {
        padding: 0;
    }

    .hotel-content {
        padding: 1.5rem;
    }

    .hotel-name {
        font-size: 1.6rem;
    }

    .footer {
        padding: 2.5rem 1.5rem;
    }

    .footer-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .names {
        font-size: 2.5rem;
    }

    .ampersand {
        font-size: 2rem;
    }

    .date-container {
        padding: 1.5rem 1rem;
    }

    .hotel-card,
    .recommendation-content {
        padding: 1.5rem;
    }

    .slide .rhombus-container {
        width: 240px;
        height: 240px;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}
