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

:root {
    /* Farben */
    --primary-blue: #16235D;
    --secondary-blue: #002C54;
    --accent-yellow: #EFB509;
    --accent-orange: #CD7213;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #222222;

    /* Schriftarten */
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--primary-blue);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: visible !important;
}

html {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
}

/* Globale Bildregeln für Responsivität */
img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

/* 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;
}

/* Navigation styles moved to navigation.css */

/* 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));
    background-image: url(../css2/assets/images/groemitz.jpg);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: opacity 3s 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 3s ease-in-out;
}

.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 2s 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;
    box-sizing: border-box;
}

.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;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.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-image {
    width: 100%;
    max-width: 100%;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    height: 220px;
    max-height: 220px;
    box-sizing: border-box;
}

.feature-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
}

.feature-image .feature-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

.feature-image .feature-title-link {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    text-decoration: none;
    display: block;
}

.feature-image .feature-title-link:hover {
    color: var(--accent-yellow);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.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: 1024px) {
    .content-section {
        padding: 2rem 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

@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;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

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

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

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

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

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-image {
        height: 200px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }

    .feature-image .feature-title-link {
        font-size: 1.5rem;
        padding: 1.5rem 1rem 1rem 1rem;
    }

    .combined-card {
        padding: 1.5rem;
    }

    .combined-info {
        padding: 0.8rem 1rem;
    }

    .accommodation-meta,
    .accommodation-details {
        font-size: 0.9rem;
    }

    .accommodation-price {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .special-sections {
        margin: 2rem auto 1.5rem auto;
        padding: 0 1rem;
    }

    .special-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .special-col {
        width: 100%;
    }

    .special-col.special-text h2 {
        font-size: 1.6rem;
    }

    .special-col.special-text p {
        font-size: 0.95rem;
    }
}

/* iPhone und Mobile Geräte spezifische Anpassungen */
@media (max-width: 480px) {
    .header {
        padding: 0 1rem;
    }

    /* Hero-Bereich für Smartphones optimieren */
    .hero {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }

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

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .content-section {
        padding: 1.5rem 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .feature-card {
        padding: 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature-image {
        height: 180px;
        max-height: 180px;
        margin: -1.2rem -1.2rem 1rem -1.2rem;
        width: calc(100% + 2.4rem);
        max-width: calc(100% + 2.4rem);
    }

    .feature-image img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .feature-image .feature-title-link {
        font-size: 1.3rem;
        padding: 1.2rem 0.8rem 0.8rem 0.8rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .combined-card {
        padding: 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .combined-info {
        padding: 0.7rem 0.8rem;
        gap: 0.4rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .accommodation-meta,
    .accommodation-details {
        font-size: 0.85rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
        gap: 0.4rem;
        width: 100%;
    }

    .accommodation-features {
        gap: 0.5rem;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .accommodation-price {
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
    }

    .info-groemitz-section {
        margin: 2rem auto 1.5rem auto;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .info-groemitz-container {
        padding: 1.2rem 0.8rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .info-groemitz-text {
        width: 100%;
        max-width: 100%;
    }

    .info-groemitz-text h2 {
        font-size: 1.6rem;
    }

    .info-groemitz-text p {
        font-size: 0.95rem;
    }

    .info-groemitz-img {
        width: 100%;
        max-width: 100%;
    }

    .info-groemitz-img img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .info-groemitz-btn {
        font-size: 0.95rem;
        padding: 0.6em 1.2em;
    }

    .special-sections {
        margin: 2rem auto 1.5rem auto;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .special-row {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .special-col {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .special-col.special-text {
        order: 1;
        padding: 1rem;
    }

    .special-col.special-img {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .special-col.special-img {
        width: 100%;
        max-width: 100%;
    }

    .special-col.special-img img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* iPhone spezifische Anpassungen */
@media screen and (max-width: 430px) {
    .content-section {
        padding: 1rem 0.8rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-image {
        height: 160px;
        max-height: 160px;
        margin: -1rem -1rem 0.8rem -1rem;
        width: calc(100% + 2rem);
    }

    .combined-card {
        padding: 1rem;
    }

    .info-groemitz-container {
        padding: 1rem 0.6rem;
    }
}

/* 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;
    object-fit: cover;
    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%;
    }
}

/* Smartphone: Text-Bild Reihenfolge erzwingen */
@media (max-width: 480px) {
    .special-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Stelle sicher, dass Text immer vor Bild kommt */
    .special-row .special-text {
        order: 1;
    }

    .special-row .special-img {
        order: 2;
    }
}

.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 1.2rem;
    /* nur horizontaler Abstand */
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1.2;
    height: auto;
    min-height: unset;
    display: inline-block;
}

.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;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.accommodation-details span {
    display: block;
    margin-bottom: 0.2rem;
}

.accommodation-details i {
    width: 24px;
    text-align: center;
    margin-right: 0.5em;
    display: inline-block;
}

.text-highlight-gold {
    color: var(--accent-yellow) !important;
    font-weight: 600;
}

.text-highlight-gold i {
    color: var(--accent-yellow) !important;
}

.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 : 1908px) {
    .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: #f1f3f5;
    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;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    width: 100%;
}

.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;
}



@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%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.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;
    }

    .feature-img {
        max-width: 100%;
        height: 150px;
    }
}

/* 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-thumbs-col {
        grid-template-columns: repeat(4, 1fr);
        padding: 15px;
        gap: 8px;
    }

    .toggle-btn {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Smartphone Galerie (kleinere Bildschirme) */
@media (max-width: 480px) {
    .gallery-thumbs-col {
        grid-template-columns: repeat(3, 1fr);
        padding: 10px;
        gap: 6px;
    }
}

/* 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;
    }
}

/* Feature Title Links Styling */
.feature-title-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.feature-title-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 181, 9, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-title-link:hover::before {
    left: 100%;
}

.feature-title-link:hover {
    background: rgba(239, 181, 9, 0.15);
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.feature-title-link:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Responsive Anpassung für mobile Geräte */
@media (max-width: 768px) {
    .feature-title-link {
        padding: 0.5rem 0.75rem;
    }

    .feature-title-link:hover {
        transform: translateY(-1px);
    }
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 200px;
    padding: 0.75rem 0;
    border: 2px solid var(--primary-blue);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    background: rgba(1, 112, 185, 0.15);
    border: 1px solid rgba(1, 112, 185, 0.2);
}

.nav-dropdown-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(1, 112, 185, 0.3);
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Anpassungen */
@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(1, 112, 185, 0.1);
        margin-top: 0.5rem;
        border-radius: 8px;
        padding: 0.5rem 0;
        border: 1px solid rgba(1, 112, 185, 0.2);
    }
}

/* Spezielles Hero-Layout für Grömitz-Seite */
.groemitz-hero {
    height: 50vh !important;
    min-height: 270px !important;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.groemitz-hero .hero-title {
    font-size: 2rem;
    line-height: 1.1;
}

.groemitz-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

@media (max-width: 700px) {
    .groemitz-hero {
        height: 180px !important;
        min-height: 150px !important;
    }
}

/* Spezielles Hero-Layout für Themenseiten */
.theme-hero {
    height: 50vh !important;
    min-height: 270px !important;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.theme-hero .hero-title {
    font-size: 2rem;
    line-height: 1.1;
}

.theme-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

@media (max-width: 700px) {
    .theme-hero {
        height: 180px !important;
        min-height: 150px !important;
    }

    .theme-hero .hero-title {
        font-size: 1.2rem;
    }

    .theme-hero .hero-subtitle {
        font-size: 0.95rem;
    }
}

.site-footer {
    background: #16235D;
    color: #fff;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #EFB509;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #EFB509;
}

.social-links a {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 1rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #EFB509;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #ccc;
}

@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-section {
        min-width: 0;
        width: 100%;
        text-align: center;
    }
}

/* Vorteile Sektion */
.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem 0;
    margin: 2rem 0;
    opacity: 1;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.advantages-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.advantages-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.advantage-item {
    background: #fff;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.advantage-item h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.advantage-item p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Buchungsgarantie Sektion */
.booking-guarantee-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 5rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.booking-guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/sonnenuntergang.jpeg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.booking-guarantee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.guarantee-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.guarantee-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3.5rem;
}

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

.guarantee-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-yellow), #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.guarantee-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.guarantee-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Interaktive Galerie Sektion */
.interactive-gallery-section {
    padding: 5rem 0;
    margin: 3rem 0;
    background: #fff;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

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

.gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Seitenverhältnis */
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

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

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

.gallery-button {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-button {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1.5rem;
    text-align: left;
    background: #fff;
}

.gallery-caption h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.gallery-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.2rem 0;
}

.gallery-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;
    gap: 0.2rem;
}

.gallery-meta {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.2rem;
}

.gallery-meta span {
    color: #222;
}

.gallery-meta i {
    margin-right: 0.3em;
    color: #222;
    /* Dunkle Farbe für Standort-Icon */
}

.gallery-details {
    display: flex;
    gap: 1.2rem;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.gallery-details span {
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.3em;
}

.gallery-details i {
    margin-right: 0.3em;
    color: #222;
    /* Dunkle Farbe für Details-Icons */
}

.gallery-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.gallery-feature {
    color: var(--primary-blue);
    /* Textfarbe Blau */
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 193, 7, 0.15);
    /* Hellgelb/Oranger Hintergrund */
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.gallery-feature i {
    color: var(--accent-yellow);
    /* Iconfarbe Gelb */
    font-size: 0.9rem;
}

.gallery-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;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.gallery-item:hover .gallery-price {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 100px;
    margin-top: 0.7rem;
    margin-bottom: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .advantages-grid,
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .advantages-title {
        font-size: 1.8rem;
    }

    .advantages-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .advantage-item {
        padding: 1rem;
    }

    .advantage-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .advantage-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .advantage-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .advantages-section {
        padding: 1.5rem 0;
    }

    .advantages-title {
        font-size: 1.6rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .advantage-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .gallery-image-wrapper {
        padding-top: 100%;
        /* Quadratisch auf Mobile */
    }

    .gallery-caption {
        padding: 1rem;
    }

    .gallery-caption h3 {
        font-size: 1.3rem;
    }

    .gallery-description {
        font-size: 0.9rem;
    }

    .gallery-details {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .gallery-details span {
        font-size: 0.85rem;
    }

    .gallery-features {
        gap: 0.6rem;
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .gallery-feature {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .gallery-feature i {
        font-size: 0.8rem;
    }
}

/* Themenbasierte Urlaubsgalerie - Masonry Layout */
.vacation-types-section {
    padding: 5rem 0;
    margin: 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    width: 100vw;
    max-width: 100vw;
    opacity: 1;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    /* Chrome-spezifische Fixes für volle Breite */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    overflow-x: hidden;
}

.vacation-types-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2rem 2rem 3rem 2rem;
    text-align: center;
    box-sizing: border-box;
}

.vacation-types-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
    padding: 0 2rem;
}

.vacation-types-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.vacation-masonry {
    /* CSS Grid für Masonry-Layout wie in Safari */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 15px;
    /* Basis-Zeilenhöhe für präzise Platzierung */
    column-gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* Chrome-spezifische Fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    overflow: hidden;

    /* Stelle sicher, dass Grid die volle Breite nutzt */
    min-width: 100%;
}

.vacation-masonry-item {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;

    /* Grid-spezifische Einstellungen */
    grid-column: span 1;
    grid-row: span 25;
    /* Standard-Höhe, wird durch nth-child überschrieben */

    overflow: hidden;
    border-radius: 0;
    box-sizing: border-box;

    /* Chrome-spezifische Hardware-Beschleunigung */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Unterschiedliche Größen für Masonry-Effekt - wie in Safari */
.vacation-masonry-item:nth-child(1) {
    grid-row: span 30;
    /* Zoo Arche Noah - größeres Bild */
}

.vacation-masonry-item:nth-child(2) {
    grid-row: span 28;
    /* Urlaub in Grömitz - mittleres Bild */
}

.vacation-masonry-item:nth-child(3) {
    grid-row: span 26;
    /* Ferienwohnung Grömitz - mittleres Bild */
}

.vacation-masonry-item:nth-child(4) {
    grid-row: span 24;
    /* Wellness-Wohnungen - kleineres Bild */
}

.vacation-masonry-item:nth-child(5) {
    grid-row: span 32;
    /* Aktivurlaub - größeres Bild */
}

.vacation-masonry-item:nth-child(6) {
    grid-row: span 27;
    /* Ferienhaus Grömitz - mittleres Bild */
}

.vacation-masonry-item:nth-child(7) {
    grid-row: span 29;
    /* Urlaub mit Hund - größeres Bild */
}

.vacation-masonry-item:nth-child(8) {
    grid-row: span 31;
    /* Familienurlaub - größeres Bild */
}

.vacation-masonry-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.vacation-masonry-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f0f0f0;
    display: block;
    box-sizing: border-box;
}

.vacation-masonry-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    min-height: 300px;
    object-fit: cover;
    box-sizing: border-box;

    /* Stelle sicher, dass Bilder die volle Breite nutzen */
    min-width: 100%;
}

.vacation-masonry-item:hover .vacation-masonry-image {
    -webkit-transform: scale(1.05) translateZ(0);
    -ms-transform: scale(1.05);
    transform: scale(1.05) translateZ(0);
}

.vacation-masonry-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
    max-width: calc(100% - 30px);
}

.vacation-masonry-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 35, 93, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 3;
}

.vacation-masonry-item:hover .vacation-masonry-hover {
    opacity: 1;
    visibility: visible;
}

.vacation-masonry-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.vacation-masonry-button {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.vacation-masonry-button:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    background: #f4c430;
}

/* Responsive Design für Masonry-Galerie */
@media (max-width: 1400px) {
    .vacation-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 15px;
        width: 100%;
        max-width: 100%;
    }

    /* Anpassung der Zeilen-Spans für 3 Spalten - Proportionen beibehalten */
    .vacation-masonry-item {
        grid-row: span 25;
    }

    .vacation-masonry-item:nth-child(1) {
        grid-row: span 28;
    }

    .vacation-masonry-item:nth-child(2) {
        grid-row: span 26;
    }

    .vacation-masonry-item:nth-child(3) {
        grid-row: span 24;
    }

    .vacation-masonry-item:nth-child(4) {
        grid-row: span 22;
    }

    .vacation-masonry-item:nth-child(5) {
        grid-row: span 30;
    }

    .vacation-masonry-item:nth-child(6) {
        grid-row: span 25;
    }

    .vacation-masonry-item:nth-child(7) {
        grid-row: span 27;
    }

    .vacation-masonry-item:nth-child(8) {
        grid-row: span 29;
    }
}

@media (max-width: 968px) {
    .vacation-types-container {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }

    .vacation-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 15px;
        width: 100%;
        max-width: 100%;
    }

    /* Anpassung der Zeilen-Spans für 2 Spalten - Proportionen beibehalten */
    .vacation-masonry-item {
        grid-row: span 28;
    }

    .vacation-masonry-item:nth-child(1) {
        grid-row: span 30;
    }

    .vacation-masonry-item:nth-child(2) {
        grid-row: span 28;
    }

    .vacation-masonry-item:nth-child(3) {
        grid-row: span 26;
    }

    .vacation-masonry-item:nth-child(4) {
        grid-row: span 24;
    }

    .vacation-masonry-item:nth-child(5) {
        grid-row: span 32;
    }

    .vacation-masonry-item:nth-child(6) {
        grid-row: span 27;
    }

    .vacation-masonry-item:nth-child(7) {
        grid-row: span 29;
    }

    .vacation-masonry-item:nth-child(8) {
        grid-row: span 31;
    }

    .vacation-types-title,
    .vacation-types-subtitle {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .vacation-types-section {
        padding: 3rem 0;
    }

    .vacation-types-container {
        padding: 1.5rem 1rem 2rem 1rem;
    }

    .vacation-types-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .vacation-types-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .vacation-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 15px;
        width: 100%;
        max-width: 100%;
    }

    .vacation-masonry-item {
        grid-row: span 25;
    }

    .vacation-masonry-image {
        min-height: 250px;
    }

    .vacation-masonry-label {
        font-size: 0.85rem;
        bottom: 10px;
        left: 10px;
    }

    .vacation-masonry-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .vacation-masonry-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .vacation-types-section {
        padding: 2rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .vacation-types-container {
        width: 100%;
        max-width: 100%;
        padding: 1rem 0 1.5rem 0;
        box-sizing: border-box;
    }

    .vacation-types-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .vacation-types-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .vacation-masonry {
        display: block;
        width: 100vw;
        max-width: none;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .vacation-masonry-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-bottom: 1rem;
    }

    .vacation-masonry-image-wrapper {
        border-radius: 4px;
        width: 100%;
    }

    .vacation-masonry-image {
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 250px;
    }

    .vacation-masonry-image {
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 250px;
    }

    .vacation-masonry-label {
        font-size: 0.8rem;
    }

    .vacation-masonry-description {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .vacation-masonry-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Global Accordion Styles (moved from strandkorb.html) */
.accordion {
    margin: 2.5rem 0 1.5rem 0;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-title {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.1rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-blue);
    transition: color 0.2s;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    border-bottom: 1.5px solid var(--gray);
}

.accordion-title:hover {
    color: var(--accent-yellow);
    background: #e6f0fa;
}

.accordion-content {
    display: none;
    padding-bottom: 1.2rem;
    color: var(--dark);
    font-size: 1.05rem;
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-title i {
    transform: rotate(180deg);
}

transition: transform 0.2s;
}

/* Mobile Fix for Property Details - Enforce Vertical Stacking */
@media (max-width: 600px) {

    .accommodation-details,
    .combined-info .accommodation-details {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    .accommodation-details span {
        display: flex !important;
        align-items: center;
        width: 100%;
        margin-bottom: 0.3rem;
    }

    .accommodation-meta {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center;
        gap: 0.5rem;
    }
}