/* Hero Section */
.hero {
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}
.hero-overlay:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.45) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1170px;
    width: 94%;
    margin: 0 auto 48px;
    color: #fff;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeIn 700ms ease-out 200ms forwards;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
    color: #fff;
}

.hero-highlight {
    color: #ffd700;
    font-weight: 700;
}

.hero-tagline {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-ctas .button[href*="//"]::before {
    filter: brightness(0.45) contrast(1.4);
}

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: left;
    flex-wrap: wrap;
    padding-bottom: 24px;
}

.hero-stats .stat {
    text-align: center;
    color: #fff;
}

.hero-stats .stat-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-stats .stat-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Ken Burns effect for hero images */
.hero .slick-slide img {
    transform: scale(1.04);
    animation: kenburns 14s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.1) translate3d(0, -1%, 0);
    }
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Property Highlights */
.property-highlights {
    background: var(--surface);
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.property-highlights .item {
    max-width: 1170px;
    width: 94%;
    margin: 0 auto;
}

.highlights-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    margin-top: 40px;
    justify-content: center;
}

.highlight-card {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    margin-bottom: 16px;
    display: block;
    color: var(--accent);
}

.highlight-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent);
}

.highlight-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.highlight-card p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Section Nav */
.section-nav {
    position: sticky;
    top: 70px;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.section-nav-inner {
    max-width: 1170px;
    width: 94%;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    padding: 10px 0;
    justify-content: center;
    flex-wrap: wrap;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}
.section-nav a {
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    font-size: 14px;
}
.section-nav a:hover {
    background: #f8fafc;
}
.section-nav a.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Room Gallery */
.room-gallery {
    padding: 60px 0;
    background: var(--surface);
}

.room-gallery .item {
    max-width: 1170px;
    width: 94%;
    margin: 0 auto;
}

.room-gallery h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.room-section {
    margin-bottom: 60px;
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: 280px;
}

.room-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    color: #222;
}

.room-info {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.room-description {
    flex: 1;
}

.room-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 22px;
}

.room-features {
    list-style: none;
    padding: 0;
}

.room-features li {
    padding: 10px 0;
    color: #222;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.room-features li:before {
    content: "✓";
    color: #0064c8;
    font-weight: bold;
    margin-right: 10px;
}

.room-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
}

.room-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.room-image:hover {
    transform: scale(1.02);
}

.room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-category h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #222;
}

/* Room Features Grid with Icons */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 16px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    color: #222;
    font-weight: 500;
}

/* Icon Classes */
.feature-icon.fireplace {
    background-image: url("../img/icons/fireplace.svg");
}
.feature-icon.tv {
    background-image: url("../img/icons/tv.svg");
}
.feature-icon.wifi {
    background-image: url("../img/icons/wifi.svg");
}
.feature-icon.bluetooth {
    background-image: url("../img/icons/bluetooth.svg");
}
.feature-icon.terrace {
    background-image: url("../img/icons/terrace.svg");
}
.feature-icon.kitchen {
    background-image: url("../img/icons/kitchen.svg");
}
.feature-icon.induction {
    background-image: url("../img/icons/induction.svg");
}
.feature-icon.Oven {
    background-image: url("../img/icons/Oven.svg");
}
.feature-icon.microwave {
    background-image: url("../img/icons/microwave.svg");
}
.feature-icon.dishwasher {
    background-image: url("../img/icons/dishwasher.svg");
}
.feature-icon.Wine {
    background-image: url("../img/icons/Wine.svg");
}
.feature-icon.cot {
    background-image: url("../img/icons/cot.svg");
}
.feature-icon.luggage {
    background-image: url("../img/icons/luggage.svg");
}
.feature-icon.sun {
    background-image: url("../img/icons/sun.svg");
}
.feature-icon.sauna {
    background-image: url("../img/icons/sauna.svg");
}
.feature-icon.water {
    background-image: url("../img/icons/water.svg");
}
.feature-icon.heater {
    background-image: url("../img/icons/heater.svg");
}
.feature-icon.parasol {
    background-image: url("../img/icons/parasol.svg");
}
.feature-icon.garden {
    background-image: url("../img/icons/garden.svg");
}
.feature-icon.parking {
    background-image: url("../img/icons/parking.svg");
}
.feature-icon.reed {
    background-image: url("../img/icons/reed.svg");
}
.feature-icon.e_charge {
    background-image: url("../img/icons/e_charge.svg");
}
.feature-icon.nonsmoking {
    background-image: url("../img/icons/nonsmoking.svg");
}
.feature-icon.noanimals {
    background-image: url("../img/icons/noanimals.svg");
}

/* Update existing image styles */
.equipment {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.preistabelle {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.preistabelle table {
    width: 100%;
}

.preistabelle th,
.preistabelle td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}
