/* CSS Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #16235D;
    --secondary-blue: #002C54;
    --accent-yellow: #EFB509;
    --accent-orange: #CD7213;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--primary-blue);
    overflow-x: hidden;
}

/* Header und Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary-blue);
    z-index: 1000;
    padding: 0 2rem;
    box-shadow: 0 2px 20px rgba(0, 44, 84, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--accent-yellow);
}

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

.nav-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-yellow);
}

.nav-item i {
    font-size: 1rem;
}

.highlights-btn {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 181, 9, 0.3);
}

.highlights-btn:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 181, 9, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: opacity 10s cubic-bezier(0.25, 0.0, 0.1, 1);
}

.hero-video.fade-out {
    opacity: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0;
    transition: opacity 4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hero-bg.show {
    opacity: 1;
}

.hero-bg.image1 {
    background: linear-gradient(rgba(22, 35, 93, 0.2), rgba(0, 44, 84, 0.2)),
                url('../assets/images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg.image2 {
    background: linear-gradient(rgba(22, 35, 93, 0.2), rgba(0, 44, 84, 0.2)),
                url('../assets/images/HyggeHus.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-text {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hero-text.active {
    opacity: 1;
    position: relative;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(239, 181, 9, 0.3);
}

.hero-cta:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(239, 181, 9, 0.4);
}

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

/* Content Section */
.content-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(22, 35, 93, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(22, 35, 93, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

.feature-img {
    width: 100%;
    max-width: 320px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 1rem auto;
    display: block;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-blue);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        justify-content: flex-start;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: left;
    }

    .hamburger {
        display: flex;
    }

    .highlights-btn {
        margin-top: 1rem;
        justify-content: flex-start;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .content-section {
        padding: 3rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Scroll-Effekte */
.header.scrolled {
    background: rgba(0, 44, 84, 0.95);
    backdrop-filter: blur(10px);
}

/* Spezial-Sektionen (wie im Bild) */
.special-sections {
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto 2rem auto;
    padding: 0 1rem;
}
.special-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
}
.special-col {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 500px;
}
.special-col.special-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.special-col.special-text h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.1;
}
.special-col.special-text p {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 1.2rem;
}
.special-link {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.special-link:hover {
    color: var(--accent-yellow);
}
.arrow {
    font-size: 1.3em;
    margin-left: 0.3em;
    vertical-align: middle;
}
@media (max-width: 900px) {
    .special-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .special-col {
        max-width: 100%;
    }
}

.accommodation-section {
    max-width: 1200px;
    width: 100%;
    margin: 3rem auto 2rem auto;
    padding: 0 1rem;
}
.accommodation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.accommodation-card {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    max-width: 370px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.accommodation-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.accommodation-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.accommodation-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.accommodation-price {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #4da3df;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.accommodation-info {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.accommodation-meta {
    color: #222;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.accommodation-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.2rem 0 0.5rem 0;
    color: var(--primary-blue);
}
.accommodation-details {
    display: flex;
    gap: 1.2rem;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.3rem;
}
.accommodation-details i {
    margin-right: 0.3em;
}
.accommodation-rating {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1rem;
    margin-top: 0.2rem;
}
.rating-badge {
    background: #b6e09b;
    color: #234d20;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.2em 0.7em;
    font-size: 1.1em;
    margin-right: 0.5em;
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-yellow);
    font-size: 1rem;
}
@media (max-width: 1100px) {
    .accommodation-grid {
        flex-direction: column;
        align-items: center;
    }
    .accommodation-card {
        max-width: 95vw;
    }
}

.combined-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    margin-bottom: 2rem;
}
.big-icon {
    font-size: 3.2rem;
    color: var(--accent-yellow);
    margin: 1.2rem 0 0.5rem 0;
}
.combined-info {
    width: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 1.2rem;
    padding: 1rem 1.2rem 1.2rem 1.2rem;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.combined-info .accommodation-meta {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.2rem;
}
.combined-info .accommodation-details {
    font-size: 1rem;
    color: #222;
    gap: 1.2rem;
    margin-bottom: 0.3rem;
}
.combined-info .accommodation-rating {
    margin-top: 0.2rem;
    font-size: 1rem;
    gap: 0.7em;
}
.combined-price {
    margin-top: 0.7rem;
    background: #4da3df;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    align-self: flex-start;
}
@media (max-width: 600px) {
    .combined-info {
        padding: 0.7rem 0.5rem 1rem 0.5rem;
    }
    .big-icon {
        font-size: 2.2rem;
    }
}

.info-groemitz-section {
    margin: 3rem auto 2rem auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
}
.info-groemitz-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    max-width: 100%;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    border-left: 1.5px solid #ececec;
    border-right: 1.5px solid #ececec;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
}
.info-groemitz-text {
    flex: 2 1 350px;
    min-width: 280px;
}
.info-groemitz-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.info-groemitz-text p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.1rem;
}
.info-groemitz-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.7em 1.5em;
    border: 1.5px solid #bbb;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.info-groemitz-btn:hover {
    background: #f8f9fa;
    color: #0170B9;
    border-color: #0170B9;
}
.info-groemitz-img {
    flex: 1 1 320px;
    min-width: 220px;
    display: flex;
    justify-content: center;
}
.info-groemitz-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
@media (max-width: 900px) {
    .info-groemitz-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0.7rem;
    }
    .info-groemitz-img img {
        max-width: 100%;
    }
}

/* Ausstattung-Listen als Grid (2 Spalten, mehrere Reihen) */
.kat-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3em 2.5em;
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2em;
}
.kat-list ul li {
    margin-bottom: 0.2em;
    font-size: 1.08rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
@media (max-width: 700px) {
  .kat-list ul {
    grid-template-columns: 1fr;
    gap: 0.2em 0;
  }
}

.kat-head {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2.2em;
    margin-bottom: 0.7em;
    display: flex;
    align-items: center;
    gap: 0.7em;
    letter-spacing: 0.01em;
}
.ausstattung-kat:first-child .kat-head {
    margin-top: 0.5em;
}

/* Belegungskalender */
.cal-legend {
    display: flex;
    align-items: center;
    gap: 1.5em;
    background: #f5f5f5;
    padding: 0.7em 1.2em;
    border-radius: 8px;
    margin-bottom: 1.2em;
    font-size: 1.08em;
}
.cal-legend .cal-free {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    background: #e6f9e6;
    border: 1.5px solid #b6e6b6;
    border-radius: 4px;
    margin-right: 0.4em;
    vertical-align: middle;
}
.cal-legend .cal-booked {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    background: #f7cccc;
    border: 1.5px solid #e6a6a6;
    border-radius: 4px;
    margin-right: 0.4em;
    vertical-align: middle;
}
.cal-months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5em;
}
.cal-month {
    background: #fafbfc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    padding: 1em 0.7em 1.2em 0.7em;
    min-width: 220px;
}
.cal-month-title {
    text-align: center;
    font-weight: 600;
    font-size: 1.15em;
    margin-bottom: 0.5em;
    color: #222;
}
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.98em;
    color: #888;
    margin-bottom: 0.2em;
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.15em;
}
.cal-days span {
    display: block;
    text-align: center;
    padding: 0.45em 0;
    border-radius: 5px;
    font-size: 1em;
    min-width: 2.1em;
    min-height: 2.1em;
    margin: 0 auto;
}
.cal-free {
    background: #e6f9e6;
    color: #222;
    border: 1.5px solid #b6e6b6;
}
.cal-booked {
    background: #f7cccc;
    color: #222;
    border: 1.5px solid #e6a6a6;
}
.cal-empty {
    background: transparent;
    border: none;
}
@media (max-width: 900px) {
    .cal-months {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .cal-months {
        grid-template-columns: 1fr;
    }
    .cal-month {
        min-width: 0;
    }
}

.cal-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.5em;
    margin-bottom: 1em;
}
.cal-nav button {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5em 1em;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}
.cal-nav button:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

/* Untere Kalender-Navigation */
.cal-nav-bottom {
    margin-top: 1.5em;
    margin-bottom: 0;
    justify-content: center;
    border-top: 1px solid #eee;
    padding-top: 1em;
}

.cal-nav-bottom button {
    padding: 0.7em 1.5em;
    font-size: 1.1em;
    border-radius: 8px;
}

/* Preistabelle */
.price-table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.zusatzkosten-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.price-table th {
    background: var(--primary-blue);
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}

.price-table th:first-child {
    border-top-left-radius: 8px;
}

.price-table th:last-child {
    border-top-right-radius: 8px;
}

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

.price-table tr:hover {
    background: #f8f9fa;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .price-table {
        font-size: 1rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.6rem;
    }
}

/* Google Reviews */
.reviews-container {
    padding: 1.5rem 0;
}

.google-reviews-summary {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.rating-summary {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.average-rating {
    text-align: center;
    flex-shrink: 0;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.rating-bars {
    flex-grow: 1;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.star-label {
    width: 70px;
    font-size: 0.9rem;
    color: #666;
}

.rating-bar {
    flex-grow: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 4px;
}

.rating-percent {
    width: 40px;
    font-size: 0.9rem;
    color: #666;
}

.google-reviews {
    margin: 2rem 0;
}

.google-reviews-footer {
    text-align: center;
    margin-top: 2rem;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.google-reviews-link:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.google-logo {
    height: 24px;
    width: auto;
}

@media (max-width: 768px) {
    .rating-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .average-rating {
        margin: 0 auto;
    }
}

/* Individual Reviews */
.review-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-rating {
    color: #ffd700;
    font-size: 1rem;
}

.review-text {
    color: #444;
    line-height: 1.5;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .review-header {
        flex-wrap: wrap;
    }
    
    .review-rating {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Review Error Message */
.review-error {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2rem;
    text-align: center;
    color: #666;
}

.review-error p {
    margin: 0.5rem 0;
}

.review-error a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.review-error a:hover {
    text-decoration: underline;
}

/* Responsive Bildoptimierung */
.special-col.special-img img,
.accommodation-img-wrap img,
.info-groemitz-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.special-col.special-img img:hover,
.accommodation-img-wrap img:hover {
    transform: scale(1.05);
}

/* Mobile Optimierungen für Bilder */
@media (max-width: 768px) {
    .special-col.special-img img,
    .accommodation-img-wrap img,
    .info-groemitz-img img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .accommodation-img-wrap {
        height: 200px;
        overflow: hidden;
    }
    
    .accommodation-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .special-col.special-img img,
    .accommodation-img-wrap img,
    .info-groemitz-img img {
        border-radius: 6px;
    }
    
    .accommodation-img-wrap {
        height: 180px;
    }
}

/* Galerie 50/50 Layout */
.gallery-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    height: 400px;
}

.gallery-main {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main:hover .gallery-overlay {
    opacity: 1;
}

.gallery-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-fullscreen {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.gallery-fullscreen:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-thumbs-col {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    height: 100%;
}

.thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumb:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.thumb.active {
    border-color: #007bff;
    transform: scale(1.02);
}

.gallery-toggle {
    width: 100%;
    display: flex;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 12px 12px;
}

.toggle-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid #e9ecef;
}

.toggle-btn:last-child {
    border-right: none;
}

.toggle-btn:hover {
    background: #e9ecef;
    color: #333;
}

.toggle-btn.active {
    background: #007bff;
    color: white;
}

.gallery-view-btn {
    background: #28a745 !important;
    color: white !important;
}

.gallery-view-btn:hover {
    background: #218838 !important;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 80%;
    margin-top: 5%;
}

.lightbox img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

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

/* Mobile Galerie */
@media (max-width: 600px) {
    .gallery-section {
        flex-direction: column;
    }
    
    .gallery-main,
    .gallery-thumbs-col {
        width: 100%;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-thumbs-col {
        height: 200px;
        grid-template-columns: repeat(4, 1fr);
        padding: 15px;
        gap: 8px;
    }
    
    .toggle-btn {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Mobile Accordion Vollbild-Darstellung */
.accordion-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.accordion-fullscreen.active {
    transform: translateX(0);
}

.accordion-fullscreen-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
}

.accordion-back-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.accordion-back-btn:hover {
    background-color: #f8f9fa;
}

.accordion-fullscreen-header h2 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.accordion-fullscreen-content {
    padding: 1.5rem;
    max-width: 100%;
    line-height: 1.6;
}

/* Nur auf Desktop-Geräten normale Accordion-Funktion */
@media (min-width: 768px) {
    .accordion-fullscreen {
        display: none !important;
    }
} 