/* Eröffnungsangebot Styles */
    .hm-eroeffnung-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    .hm-eroeffnung-wrapper * {
        box-sizing: border-box;
    }

    /* Hero Section */
    .hm-hero-section {
        background: linear-gradient(rgba(44, 85, 48, 0.85), rgba(44, 85, 48, 0.85)), 
                    url('https://hammermuehle.com/wp-content/uploads/2020/10/Hammermuehle-im-Schnee-2-scaled.jpg') center/cover no-repeat;
        color: white;
        padding: 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 0;
    }

    .hm-hero-content {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hm-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        backdrop-filter: blur(10px);
    }

    .hm-hero-section h1 {
        font-size: 3em;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        color: white;
    }

    .hm-hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 15px;
        opacity: 0.95;
    }

    .hm-hero-date {
        font-size: 1.1em;
        opacity: 0.9;
        font-weight: 300;
    }

    /* Offer Section */
    .hm-offer-section {
        max-width: 1200px;
        margin: -50px auto 60px;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .hm-offer-intro {
        background: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        text-align: center;
        margin-bottom: 40px;
    }

    .hm-offer-intro h2 {
        color: #2c5530;
        font-size: 2em;
        margin-bottom: 20px;
    }

    .hm-offer-intro p {
        font-size: 1.1em;
        line-height: 1.8;
        color: #555;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Price Cards */
    .hm-price-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .hm-price-card {
        background: white;
        border-radius: 10px;
        padding: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .hm-card-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .hm-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .hm-price-card:hover .hm-card-image img {
        transform: scale(1.1);
    }

    .hm-price-card > div:not(.hm-card-image),
    .hm-price-card > ul,
    .hm-price-card > a {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hm-price-card > .hm-room-type {
        padding-top: 30px;
    }

    .hm-price-card > .hm-cta-button {
        margin-bottom: 30px;
    }

    .hm-price-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #2c5530, #4a7c4e);
        z-index: 1;
    }

    .hm-price-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .hm-price-card.hm-featured {
        border: 2px solid #2c5530;
        transform: scale(1.05);
    }

    .hm-featured-badge {
        position: absolute;
        top: 20px;
        right: -35px;
        background: #d4af37;
        color: white;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 2;
    }

    .hm-room-type {
        font-size: 0.9em;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .hm-room-name {
        font-size: 1.8em;
        color: #2c5530;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .hm-price {
        font-size: 3em;
        color: #2c5530;
        font-weight: 700;
        margin: 20px 0;
    }

    .hm-price-suffix {
        font-size: 0.4em;
        color: #888;
        font-weight: 400;
    }

    .hm-price-details {
        color: #666;
        font-size: 0.95em;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hm-features-list {
        list-style: none;
        text-align: left;
        margin: 25px 0;
        padding-left: 0;
    }

    .hm-features-list li {
        padding: 8px 0;
        color: #555;
        position: relative;
        padding-left: 30px;
    }

    .hm-features-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #4a7c4e;
        font-weight: bold;
        font-size: 1.2em;
    }

    .hm-cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #2c5530, #4a7c4e);
        color: white !important;
        padding: 15px 40px;
        border-radius: 30px;
        text-decoration: none !important;
        font-weight: 600;
        margin-top: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
    }

    .hm-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
        color: white !important;
    }

    /* Gallery Section */
    .hm-gallery-section {
        background: #f8f8f8;
        padding: 80px 20px;
        margin-top: 40px;
    }

    .hm-gallery-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hm-gallery-content h2 {
        text-align: center;
        color: #2c5530;
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .hm-gallery-subtitle {
        text-align: center;
        color: #666;
        font-size: 1.2em;
        margin-bottom: 50px;
    }

    .hm-gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .hm-gallery-item {
        position: relative;
        height: 300px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        cursor: pointer;
    }

    .hm-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .hm-gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(44, 85, 48, 0.95), transparent);
        color: white;
        padding: 30px 20px 20px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .hm-gallery-item:hover .hm-gallery-overlay {
        transform: translateY(0);
    }

    .hm-gallery-item:hover img {
        transform: scale(1.1);
    }

    .hm-gallery-overlay h3 {
        font-size: 1.4em;
        margin-bottom: 5px;
        color: white;
    }

    .hm-gallery-overlay p {
        font-size: 0.95em;
        opacity: 0.9;
    }

    /* Highlights Section */
    .hm-highlights-section {
        background: white;
        padding: 60px 20px;
        margin-top: 0;
    }

    .hm-highlights-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hm-highlights-content h2 {
        text-align: center;
        color: #2c5530;
        font-size: 2em;
        margin-bottom: 50px;
    }

    .hm-highlights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        text-align: center;
    }

    .hm-highlight-item {
        padding: 20px;
    }

    .hm-highlight-icon {
        font-size: 3em;
        margin-bottom: 15px;
    }

    .hm-highlight-item h3 {
        color: #2c5530;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .hm-highlight-item p {
        color: #666;
        line-height: 1.6;
    }

    /* Terms Section */
    .hm-terms-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 40px 20px;
        background: #f9f9f9;
        border-radius: 10px;
    }

    .hm-terms-section h3 {
        color: #2c5530;
        margin-bottom: 20px;
        font-size: 1.5em;
    }

    .hm-terms-section ul {
        list-style: disc;
        margin-left: 20px;
        color: #666;
        line-height: 1.8;
    }

    .hm-terms-section ul li {
        margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hm-hero-section h1 {
            font-size: 2em;
        }

        .hm-hero-subtitle {
            font-size: 1.1em;
        }

        .hm-price-cards {
            grid-template-columns: 1fr;
        }

        .hm-price-card.hm-featured {
            transform: scale(1);
        }

        .hm-offer-intro {
            padding: 30px 20px;
        }

        .hm-highlights-grid {
            grid-template-columns: 1fr;
        }

        .hm-gallery-grid {
            grid-template-columns: 1fr;
        }

        .hm-gallery-content h2 {
            font-size: 1.8em;
        }

        .hm-card-image {
            height: 180px;
        }
    }

    /* Animation */
    @keyframes hmFadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hm-price-card {
        animation: hmFadeInUp 0.6s ease forwards;
    }

    .hm-price-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hm-price-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hm-price-card:nth-child(3) {
        animation-delay: 0.3s;
    }