/* ============================================
   CHALET LAUGENBLICK - PREMIUM STYLESHEET
   Where Modernity Meets Tradition
   ============================================ */

/* === CSS Variables === */
:root {
    --color-primary: #C5A059;
    --color-primary-dark: #A88642;
    --color-primary-light: #D4B76A;
    --color-bg-dark: #0a0a0a;
    --color-bg-medium: #141414;
    --color-bg-light: #1a1a1a;
    --color-bg-card: #1f1f1f;
    --color-text: #d4d4d4;
    --color-text-muted: #888;
    --color-white: #ffffff;
    --color-border: rgba(197, 160, 89, 0.2);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* === Top Bar with Language Selector === */
.top-bar {
    background: #050505;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
}

.top-bar-contact a {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.top-bar-contact a:hover {
    color: var(--color-primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.4rem 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.language-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.language-btn .flag {
    font-size: 1rem;
}

.language-btn .arrow {
    font-size: 0.6rem;
    transition: var(--transition-fast);
}

.language-selector:hover .arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 1002;
    max-height: 300px;
    overflow-y: auto;
}

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

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    color: var(--color-text);
    font-size: 0.8rem;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.language-dropdown a.active {
    color: var(--color-primary);
    background: rgba(197, 160, 89, 0.1);
}

.language-dropdown .flag {
    font-size: 1.1rem;
}

/* Book Now CTA in Top Bar */
.top-bar-cta {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.top-bar-cta:hover {
    background: var(--color-primary-light);
}

/* Adjust navbar for top bar */
.navbar {
    top: 38px;
}

.navbar.scrolled {
    top: 0;
}

/* Hide top bar on scroll */
.top-bar {
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

@media (max-width: 768px) {
    .top-bar-contact {
        display: none;
    }
    
    .top-bar .container {
        justify-content: flex-end;
        gap: 1rem;
    }
    
    .navbar {
        top: 38px;
    }
}

@media (max-width: 480px) {
    .top-bar-cta span {
        display: none;
    }
    
    .top-bar-cta::after {
        content: '📅';
    }
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--color-primary);
}

.text-center {
    text-align: center;
}

/* === Container === */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1600px;
}

.container-narrow {
    max-width: 900px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-bg-dark);
    border: 2px solid var(--color-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--color-white);
}

/* === Floating Actions (WhatsApp & Book) === */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-strong);
    transition: var(--transition-medium);
    border: none;
    cursor: pointer;
    color: var(--color-bg-dark);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.book-btn {
    background: var(--color-primary);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    .floating-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
    }
}

/* === Chalet Experience Timeline === */
.chalet-experience {
    padding: 8rem 0;
    background: var(--color-bg-medium);
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--color-border);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
}

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

.timeline-time {
    width: 45%;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-time {
    text-align: left;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    .timeline-time, .timeline-content {
        width: 100%;
        text-align: left;
    }
    .timeline-time {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
}

/* === Weather CTA Box === */
.weather-cta-box {
    margin: 2rem 0 3rem;
    display: flex;
    justify-content: center;
}

.weather-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 1rem 2rem;
    display: inline-block;
    transition: var(--transition-medium);
}

.weather-link:hover {
    border-color: var(--color-primary);
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
}

.weather-live-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.w-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.w-temp {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.w-desc {
    font-style: italic;
}

.w-icon {
    font-size: 1.2rem;
}


/* === Navigation === */
.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-subtle);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

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

.nav-cta {
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-cta:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

/* === Hero Section & Slider === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 3rem;
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.hero-tagline::before {
    right: calc(100% + 20px);
}

.hero-tagline::after {
    left: calc(100% + 20px);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-style: italic;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    width: 1px;
    height: 40px;
    background: var(--color-primary);
}

/* === Quote Section === */
.quote-section {
    padding: 6rem 2rem;
    background: var(--color-bg-medium);
    text-align: center;
}

.quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.quote-author {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* === About Section === */
.about {
    padding: 8rem 0;
    background: var(--color-bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.about-image-item {
    position: relative;
}

.about-image-item img {
    width: 100%;
    height: auto; /* Automatische Höhe für komplettes Bild */
    display: block;
    border: 1px solid var(--color-border);
    object-fit: contain; /* Stellt sicher, dass nichts abgeschnitten wird */
}

.about-image-item:first-child {
    margin-top: -2rem;
}

.about-image-item:last-child {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image-item:first-child,
    .about-image-item:last-child {
        margin-top: 0;
    }
    .about-image-item img {
        height: 300px;
    }
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
}

.about-badge .year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content .subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--color-text);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.8rem;
}

.about-feature-icon {
    width: 35px;
    height: 35px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.about-feature:hover .about-feature-icon {
    transform: translateY(-5px);
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2px;
}

.about-feature h4 {
    font-size: 1rem;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
}

.about-feature p {
    font-size: 0.85rem;
    margin: 0 !important;
    color: var(--color-text-muted) !important;
}

/* === Facilities Section === */
.facilities {
    padding: 8rem 0;
    background: var(--color-bg-medium);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header .divider {
    width: 60px;
    height: 1px;
    background: var(--color-primary);
    margin: 0 auto;
}

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

.facility-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.facility-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.facility-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.facility-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.4s ease;
}

.facility-card:hover .facility-icon {
    transform: scale(1.15);
}

.facility-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2px;
}

.facility-card h4,
.facility-card .facility-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
}

.facility-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* === Chalet Section === */
.chalet {
    padding: 8rem 0;
    background: var(--color-bg-dark);
}

.chalet-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.chalet-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.chalet-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 50%, var(--color-bg-light) 100%);
}

.chalet-content {
    background: var(--color-bg-light);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chalet-content .subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.chalet-content h2 {
    margin-bottom: 1.5rem;
}

.chalet-content p {
    color: var(--color-text);
    margin-bottom: 2rem;
}

.chalet-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
}

.amenity-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.amenity span {
    font-size: 0.9rem;
}

/* Reverse layout for alternating rows */
.chalet-showcase.reverse {
    direction: rtl;
}

.chalet-showcase.reverse > * {
    direction: ltr;
}

.chalet-showcase.reverse .chalet-image::after {
    background: linear-gradient(to left, transparent 50%, var(--color-bg-light) 100%);
}

/* === Gallery Preview === */
.gallery-preview {
    padding: 8rem 0;
    background: var(--color-bg-medium);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition-fast);
}

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

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

.gallery-item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 2rem;
    opacity: 0;
    z-index: 2;
    transition: var(--transition-fast);
}

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

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* === Activities Section === */
.activities {
    padding: 8rem 0;
    background: var(--color-bg-dark);
}

.activities-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

.activity-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Elegant dark gradient for perfect readability */
.activity-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    transition: var(--transition-medium);
    z-index: 1;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-card:hover::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 2;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.activity-card:hover .activity-content {
    transform: translateY(0);
}

.activity-content h4,
.activity-content .activity-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    display: block;
    font-weight: 600;
}

.activity-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.activity-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.activity-link {
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-link:hover {
    color: var(--color-white);
}

/* === Awards Section === */
.awards-section {
    padding: 8rem 0;
    background: var(--color-bg-dark);
}

.awards-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.award-card.featured {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(197, 160, 89, 0.1) 100%);
    border: 1px solid var(--color-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.award-card-spiegel {
    position: relative;
    overflow: hidden;
    padding: 0 !important; /* Image will cover the card */
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.spiegel-cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-medium);
}

.award-card-spiegel:hover .spiegel-cover-bg {
    transform: scale(1.05);
}

.spiegel-overlay {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    width: 100%;
}

.spiegel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e60005; /* Original Spiegel Red */
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.award-card-spiegel:hover {
    border-color: #e60005 !important; /* Spiegel Red */
    box-shadow: 0 20px 60px rgba(230, 0, 5, 0.2);
}

.award-card-spiegel:hover .spiegel-logo-text {
    text-shadow: 0 0 15px rgba(230, 0, 5, 0.4);
    transform: scale(1.02);
}

.spiegel-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #e60005; /* Spiegel Red */
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition-medium);
}

.award-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-edition {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.btn-edition:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.award-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-style: italic;
}

.award-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.award-divider {
    width: 50px;
    height: 1px;
    background: var(--color-primary);
    margin: 1.5rem auto;
}

.award-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 1rem;
    filter: brightness(0) invert(1);
}

.award-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.award-card p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.award-year {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.rating-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-medium);
}

.rating-card.booking:hover {
    border-color: #003580; /* Booking.com Blue */
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(0, 53, 128, 0.1) 100%);
}

.rating-card.airbnb:hover {
    border-color: #FF5A5F; /* Airbnb Coral */
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(255, 90, 95, 0.1) 100%);
}

.rating-card.google:hover {
    border-color: #4285F4; /* Google Blue */
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(66, 133, 244, 0.1) 100%);
}

.rating-card:hover {
    transform: translateY(-5px);
}

/* Remove global hover filter to allow full color on hover */
.rating-card.booking:hover .rating-logo img,
.rating-card.airbnb:hover .rating-logo img,
.rating-card.google:hover .rating-logo img {
    filter: none;
    opacity: 1;
}

.rating-logo {
    margin-bottom: 1.5rem;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-logo img {
    max-height: 100%;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: var(--transition-medium);
}

.rating-card:hover .rating-logo img {
    filter: brightness(0) invert(1) opacity(1);
}

.rating-score {
    margin-bottom: 0.5rem;
}

.rating-score .score {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
}

.rating-score .score-max {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.rating-label {
    font-size: 0.85rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.rating-stars {
    color: var(--color-primary);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* === Testimonials === */
.testimonials {
    padding: 8rem 0;
    background: var(--color-bg-medium);
}

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

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2rem;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
}

.testimonial-platform {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-platform span {
    font-size: 1rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-style: normal;
}

.testimonial-stars {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* === Instagram Section === */
.instagram-section {
    padding: 8rem 0;
    background: var(--color-bg-dark);
}

.instagram-intro {
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.instagram-icon {
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition-fast);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

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

.instagram-item:hover .instagram-icon {
    transform: scale(1);
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

.instagram-cta .btn-icon {
    margin-right: 0.5rem;
}

.instagram-widget-placeholder {
    display: none;
}

/* Instagram Widget Container (for real embed) */
.instagram-widget-container {
    max-width: 100%;
    margin: 2rem auto;
}

@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-icon {
        font-size: 1.5rem;
    }
}

/* === Detailed Info Layout (Contact Page) === */
.info-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.info-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.info-block:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.info-block:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.info-icon-svg {
    width: 35px;
    height: 35px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.info-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2px;
}

.info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.info-block p, .info-block ul {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
}

.info-block.full-width {
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .info-layout {
        grid-template-columns: 1fr;
    }
    .info-block.full-width {
        grid-column: auto;
    }
}

/* === Map Details === */
.map-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.map-detail {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.map-detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.map-detail:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.map-detail:hover::after {
    transform: scaleX(1);
}

.map-detail-icon-svg {
    width: 35px;
    height: 35px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.map-detail:hover .map-detail-icon-svg {
    transform: scale(1.1);
}

.map-detail-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2px;
}

.map-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.map-detail p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .map-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .map-details {
        grid-template-columns: 1fr;
    }
}

/* === Contact CTA === */
.contact-cta {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../image/alm/Ulten_view_big.jpg') center/cover no-repeat;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1.5rem;
}

.contact-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--color-text);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
}

.contact-item h4,
.contact-item .contact-label {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    display: block;
    font-weight: 600;
    color: var(--color-white);
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* === Footer === */
.footer {
    background: var(--color-bg-dark);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 3fr; /* Divide into brand and columns-wrapper */
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

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

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-columns-wrapper {
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-columns-wrapper {
        grid-template-columns: 1fr; /* Stack on very small screens if needed, or keep 1fr 1fr 1fr */
        text-align: center;
    }
    
    /* If you REALLY want them side by side even on tiny phones: */
    .footer-columns-wrapper {
        grid-template-columns: repeat(3, 1fr);
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
    }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-column ul a:hover {
    color: var(--color-primary);
}

.footer-partners {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-partners a {
    display: block;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.footer-partners a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-partners img {
    height: 40px;
    width: auto;
    /* Filter entfernt für Originalfarben */
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image::before {
        display: none;
    }
    
    .about-badge {
        right: 20px;
        bottom: -20px;
    }
    
    .chalet-showcase {
        grid-template-columns: 1fr;
    }
    
    .chalet-image {
        min-height: 400px;
    }
    
    .chalet-image::after {
        background: linear-gradient(to bottom, transparent 50%, var(--color-bg-light) 100%);
    }
    
    .chalet-showcase.reverse .chalet-image::after {
        background: linear-gradient(to bottom, transparent 50%, var(--color-bg-light) 100%);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hiking-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .award-card {
        grid-column: span 2;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-strong);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-tagline::before,
    .hero-tagline::after {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chalet-amenities {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .hiking-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-card {
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item,
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-card {
        grid-column: span 1;
    }
    
    .rating-score .score {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
    }
    
    .chalet-content {
        padding: 2rem;
    }
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.cookie-banner-text p {
    font-size: 0.85rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--color-primary);
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.cookie-btn-accept:hover {
    background: var(--color-primary-light);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.cookie-btn-settings:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.cookie-btn-reject:hover {
    border-color: var(--color-text);
    color: var(--color-text);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.cookie-modal-close:hover {
    color: var(--color-primary);
}

.cookie-category {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--color-white);
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 26px;
    transition: var(--transition-fast);
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-text-muted);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: rgba(197, 160, 89, 0.3);
    border-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
    background-color: var(--color-primary);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* === Live Review Widget & Badges === */
.live-review-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
    min-height: 300px;
}

.review-widget-placeholder {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    max-width: 500px;
}

.placeholder-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.placeholder-icons .p-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.placeholder-icons .p-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.placeholder-content p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.placeholder-content .small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.review-platforms-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.platform-badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2rem;
    transition: var(--transition-medium);
}

.badge-logo-img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: var(--transition-medium);
}

.platform-badge.google:hover .badge-logo-img,
.platform-badge.airbnb:hover .badge-logo-img,
.platform-badge.booking:hover .badge-logo-img {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.badge-score {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    line-height: 1;
    transition: var(--transition-medium);
}

.badge-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .review-platforms-summary {
        gap: 2rem;
    }
    
    .badge-score {
        font-size: 1.5rem;
    }
}


body {
    top: 0 !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}


/* Placeholder for blocked content */
.consent-placeholder {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.consent-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.consent-placeholder h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.consent-placeholder p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}

/* === Season Toggle Luxury === */
.season-selector {
    padding: 4rem 0;
    text-align: center;
}

.season-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 0.5rem;
    border-radius: 0;
}

.season-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 1.2rem 4rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.season-btn .season-icon-svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
    transition: transform 0.4s ease;
}

.season-btn.active {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.season-btn.active .season-icon-svg {
    transform: scale(1.2);
}

.season-btn:not(.active):hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .season-toggle {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .season-btn {
        padding: 1.5rem;
        justify-content: center;
    }
}

.hiking-category {
    margin-bottom: 6rem;
}

.hiking-category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.difficulty-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid currentColor;
}

.difficulty-badge.easy { color: #2ecc71; background: rgba(46, 204, 113, 0.1); }
.difficulty-badge.medium { color: #f1c40f; background: rgba(241, 196, 15, 0.1); }
.difficulty-badge.hard { color: #e74c3c; background: rgba(231, 76, 60, 0.1); }

.hiking-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.hiking-card.has-bg {
    position: relative;
    min-height: 400px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hiking-card.has-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
    transition: var(--transition-medium);
}

.hiking-card.has-bg:hover {
    transform: translateY(-15px);
    border-color: var(--color-primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hiking-card.has-bg:hover::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}

.hiking-card.has-bg h4 {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.hiking-card.has-bg p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hiking-card-meta {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
}

.hiking-card-meta span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--color-primary);
}

/* Mobile Adjustments for Grid Layouts */
@media (max-width: 992px) {
    .hiking-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .ultencard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hiking-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ultencard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hiking-card.has-bg {
        min-height: 350px;
        padding: 2.5rem 1.5rem;
    }
    
    .hiking-card.has-bg h4 {
        font-size: 1.4rem;
    }
    
    .hiking-card.has-bg p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hiking-card.has-bg {
        min-height: 320px;
    }
}

.hiking-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hiking-card-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hiking-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hiking-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.hiking-card-meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-primary);
}

.ultencard-section {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../image/alm/Ulten_view_big.jpg') center/cover no-repeat fixed;
    padding: 8rem 0;
    text-align: center;
}

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

.ultencard-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.ultencard-item:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--color-primary);
}

.ultencard-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* === Activity Details & Tips === */
.hiking-tips {
    margin-top: 6rem;
    padding: 4rem;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.tip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tip-icon-svg {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.tip-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* === External Links / Info Section === */
.external-links {
    padding: 8rem 0;
    background: var(--color-bg-dark);
}

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

.link-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
}

.link-card-icon-svg {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.link-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-white);
}

.link-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.link-card a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: 600;
}
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
\
/* === Gallery Page Styles === */
.gallery-filter { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: 3rem 0; background: var(--color-bg-dark); }
.filter-btn { background: none; border: 1px solid var(--color-border); color: var(--color-text); padding: 0.8rem 1.5rem; font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition-fast); }
.filter-btn:hover, .filter-btn.active { border-color: var(--color-primary); color: var(--color-primary); background: rgba(197, 160, 89, 0.1); }
.gallery-section { padding: 0 0 6rem; background: var(--color-bg-dark); }
.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0 1rem; }
.gallery-card { position: relative; overflow: hidden; cursor: pointer; border-radius: 4px; }
.gallery-card.tall { grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-medium); }
.gallery-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); opacity: 0; z-index: 1; transition: var(--transition-fast); }
.gallery-card:hover::before { opacity: 1; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; z-index: 2; transform: translateY(20px); opacity: 0; transition: var(--transition-fast); }
.gallery-card:hover .gallery-card-content { transform: translateY(0); opacity: 1; }
.gallery-card-content h4 { font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--color-white); }
.gallery-card-content p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }
/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90%; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; width: 50px; height: 50px; background: none; border: 1px solid var(--color-white); color: var(--color-white); font-size: 1.5rem; cursor: pointer; transition: var(--transition-fast); display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { border-color: var(--color-primary); color: var(--color-primary); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: none; border: 1px solid var(--color-white); color: var(--color-white); font-size: 1.2rem; cursor: pointer; transition: var(--transition-fast); display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { border-color: var(--color-primary); color: var(--color-primary); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-caption { text-align: center; margin-top: 1rem; color: var(--color-text); }
.video-section { padding: 6rem 0; background: var(--color-bg-medium); }
.video-wrapper { max-width: 1000px; margin: 0 auto; aspect-ratio: 16/9; background: var(--color-bg-dark); border-radius: 8px; overflow: hidden; }
.video-wrapper iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 992px) { .masonry-grid { grid-template-columns: repeat(2, 1fr); } .gallery-card.wide { grid-column: span 1; } }
@media (max-width: 600px) { .masonry-grid { grid-template-columns: 1fr; } .gallery-card.tall, .gallery-card.wide { grid-row: span 1; grid-column: span 1; } .gallery-card { height: 300px; } }\
\
/* === Smoobu Integration (Final Fixed) === */
.calendar-container, .booking-tool-container {
    max-width: 1100px;
    margin: 3rem auto 0;
    background: #ffffff;
    padding: 3rem 2rem;
    border: 1px solid var(--color-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#smoobuCalendarIframe, #apartmentIframe1609324 {
    width: 100%;
}

/* Kalender-Spezifisch */
#smoobuCalendarIframe .bigDevices {
    display: block;
    width: 1000px; /* Originalbreite von Smoobu */
    max-width: 100%;
    height: 600px;
    border: none;
}

#smoobuCalendarIframe .smallDevices {
    display: none;
}

@media (max-width: 1050px) {
    .calendar-container, .booking-tool-container {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    #smoobuCalendarIframe .bigDevices {
        display: none;
    }
    #smoobuCalendarIframe .smallDevices {
        display: block;
        width: 280px; /* Originalbreite für Mobile */
        margin: 0 auto;
        border: none;
    }
}
\
/* === Filtered View for Activities === */
.activities-grid.filtered-view { display: flex; justify-content: center; }
.activities-grid.filtered-view .activity-card { width: 100%; max-width: 800px; height: 500px; }
@media (max-width: 768px) { .activities-grid.filtered-view .activity-card { height: 400px; max-width: 100%; } }\
\
/* === Elfsight Branding Removal Attempt === */
.elfsight-app-7ee58c71-c18f-4192-9049-14a86dafd728 a[href*='elfsight.com'], 
.elfsight-app-f1093937-095d-42d2-8f0e-134a615dd65d a[href*='elfsight.com'] { 
    display: none !important; 
    opacity: 0 !important; 
    visibility: hidden !important; 
    height: 0 !important; 
    width: 0 !important; 
    position: absolute !important; 
    pointer-events: none !important;
}\
