/* ============================================
   CSS CUSTOM PROPERTIES (Variables)
   These can be overridden via CMS
   ============================================ */
:root {
    /* Primary Accent Colors (Gold/Yellow) */
    --primary-gold: #ffd700;
    --primary-gold-light: #FAD23C;
    --primary-gold-mid: #F7C93E;
    --primary-gold-dark: #E6B632;
    --primary-gold-darker: #D4A428;
    
    /* Logo Box Background (Cyan/Teal Gradient) */
    --box-bg-dark: #1f94a2;
    --box-bg-mid: #2DB6C6;
    --box-bg-light: #7adce8;
    
    /* Text Colors */
    --text-pension: #FAD23C;
    --text-amhuegel: #0B3A6E;
    
    /* Sun Colors */
    --sun-circle-light: #FFE066;
    --sun-circle-mid: #FFD740;
    --sun-circle-dark: #FAD23C;
    --sun-ray-color: #FFD740;
    --sun-ray-opacity: 0.9;
    --sun-glow-intensity: 1;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

body {
    font-family: 'Calibri', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
    overflow-x: hidden;
    font-weight: 400;
    margin: 0;
    padding: 0;
    max-width: 100vw; /* Begrenzt die Breite */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: #ffffff;
    color: #1a1a1a;
    padding: 25px 0;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    overflow: visible;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.logo-text h1 {
    font-family: 'Calibri', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 2px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Contact info styles removed - no longer needed */

/* Animated Text Logo */
.animated-logo {
    text-align: center;
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
    /* Cyan diagonal gradient: darker → lighter */
    background: var(--box-bg-mid); /* fallback */
    background: linear-gradient(45deg, var(--box-bg-dark) 0%, var(--box-bg-mid) 55%, var(--box-bg-light) 100%);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--primary-gold);
    position: relative;
    overflow: visible;
}

/* ============================================
   SEASONAL SNOW EFFECT - Toggle via CMS
   ============================================ */

/* ============================================
   WINTER MODE - Activated by body.winter-mode
   ============================================ */

/* Winter border effect on logo box */
body.winter-mode .animated-logo {
    border-color: #b8d4e8;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(180, 210, 240, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Schneekuppe PNG overlay on top of the box */
body.winter-mode .animated-logo::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -15px;
    right: -15px;
    height: 50px;
    background: url('bilder/schneekuppe_transparent.png') no-repeat center bottom;
    background-size: 100% auto;
    z-index: 10;
    pointer-events: none;
}

/* Responsive winter effect */
@media (max-width: 768px) {
    body.winter-mode .animated-logo::before {
        top: -20px;
        left: -10px;
        right: -10px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    body.winter-mode .animated-logo::before {
        top: -15px;
        left: -8px;
        right: -8px;
        height: 30px;
    }
}

/* ============================================
   END WINTER MODE
   ============================================ */

.logo-line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-line-1 {
    font-size: 8.5rem;
    color: var(--text-pension);
    margin-bottom: -30px;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 20px rgba(255,255,255,0.9),
        0 0 40px rgba(250, 210, 60, 0.8),
        0 0 60px rgba(250, 210, 60, 0.6),
        2px 2px 8px rgba(0,0,0,0.7);
    position: relative;
}

.logo-line-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(250, 210, 60, 0.3) 30%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(250, 210, 60, 0.15) 70%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: -1;
    filter: blur(12px);
    animation: enhancedFeatherGlow 6s ease-in-out infinite alternate;
}

.logo-line-2 {
    font-size: 5rem;
    color: var(--text-amhuegel);
    letter-spacing: 0.15em;
    margin-top: -25px;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.9),
        2px 2px 4px rgba(0,0,0,0.5);
}

.letter {
    display: inline-block;
    animation: gentleWaveIn 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation-fill-mode: both;
}

.letter-space {
    width: 0.5em;
}

/* Special styling for "Pension" letters - make cursive */
.logo-line-1 .letter {
    font-style: italic;
    font-family: 'Georgia', serif;
}

/* Special styling for "Am Hügel" letters - darker magenta and cursive */
.logo-line-2 .letter {
    color: var(--text-amhuegel);
    font-style: italic;
    font-family: 'Georgia', serif;
}

/* Smooth wave animation delays */
.logo-line-1 .letter:nth-child(1) { animation-delay: 0.0s; }
.logo-line-1 .letter:nth-child(2) { animation-delay: 0.1s; }
.logo-line-1 .letter:nth-child(3) { animation-delay: 0.2s; }
.logo-line-1 .letter:nth-child(4) { animation-delay: 0.3s; }
.logo-line-1 .letter:nth-child(5) { animation-delay: 0.4s; }
.logo-line-1 .letter:nth-child(6) { animation-delay: 0.5s; } /* Sun */
.logo-line-1 .letter:nth-child(7) { animation-delay: 0.6s; }

.logo-line-2 .letter:nth-child(1) { animation-delay: 0.8s; }
.logo-line-2 .letter:nth-child(2) { animation-delay: 0.9s; }
.logo-line-2 .letter:nth-child(3) { animation-delay: 1.0s; }
.logo-line-2 .letter:nth-child(4) { animation-delay: 1.1s; }
.logo-line-2 .letter:nth-child(5) { animation-delay: 1.2s; }
.logo-line-2 .letter:nth-child(6) { animation-delay: 1.3s; }
.logo-line-2 .letter:nth-child(7) { animation-delay: 1.4s; }
.logo-line-2 .letter:nth-child(8) { animation-delay: 1.5s; }

/* Sun as "o" in Pension - Fixed Size with Smooth Animation */
.sun-letter {
    position: relative;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    animation: sunAppear 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(35px) scale(0.8);
    animation-delay: 0.5s;
}

.animated-sun-small {
    position: relative;
    width: 80px;
    height: 80px;
    animation: sunSpin 4s ease-out forwards;
    animation-delay: 0.5s;
}

.sun-circle-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: radial-gradient(circle, 
        var(--sun-circle-light, #FFE066) 0%, 
        var(--sun-circle-mid, #FFD740) 40%, 
        var(--sun-circle-dark, #FAD23C) 70%, 
        #F7C93E 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 calc(20px * var(--sun-glow-intensity, 1)) rgba(255, 224, 102, 0.95),
        0 0 calc(40px * var(--sun-glow-intensity, 1)) rgba(255, 215, 64, 0.75),
        0 0 calc(60px * var(--sun-glow-intensity, 1)) rgba(250, 210, 60, 0.55),
        0 0 calc(80px * var(--sun-glow-intensity, 1)) rgba(250, 210, 60, 0.35);
}

.sun-rays-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.ray-small {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: var(--sun-ray-color, #FFD740) transparent transparent transparent;
    opacity: var(--sun-ray-opacity, 0.9);
}

/* Outward-pointing triangular rays touching the sun */
.ray-small.ray-1 {
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    border-width: 12px 4px 0 4px;
}

.ray-small.ray-2 {
    top: 5px;
    right: -8px;
    transform: rotate(45deg);
    border-width: 10px 3px 0 3px;
}

.ray-small.ray-3 {
    top: 50%;
    right: -12px;
    transform: translateY(-50%) rotate(90deg);
    border-width: 12px 4px 0 4px;
}

.ray-small.ray-4 {
    bottom: 5px;
    right: -8px;
    transform: rotate(135deg);
    border-width: 10px 3px 0 3px;
}

.ray-small.ray-5 {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    border-width: 12px 4px 0 4px;
}

.ray-small.ray-6 {
    bottom: 5px;
    left: -8px;
    transform: rotate(225deg);
    border-width: 10px 3px 0 3px;
}

.ray-small.ray-7 {
    top: 50%;
    left: -12px;
    transform: translateY(-50%) rotate(270deg);
    border-width: 12px 4px 0 4px;
}

.ray-small.ray-8 {
    top: 5px;
    left: -8px;
    transform: rotate(315deg);
    border-width: 10px 3px 0 3px;
}

/* Gentle wave-in animation for letters */
@keyframes gentleWaveIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(1.05);
    }
    70% {
        opacity: 0.9;
        transform: translateY(2px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

/* Simple and smooth sun animation */
@keyframes sunAppear {
    0% {
        opacity: 0;
        transform: translateY(35px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(15px) scale(1);
    }
}

/* Sun spinning animation */
@keyframes sunSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced feather glow animation */
@keyframes enhancedFeatherGlow {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.0);
    }
}

/* Navigation Styles */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 15px 25px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    font-family: 'Calibri', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    background: #f8f8f8;
    color: #000000;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1005;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    font-family: 'Calibri', sans-serif;
}

.lang-btn:hover {
    color: #1a1a1a;
}

.lang-btn.active {
    background: var(--box-bg-mid);
    color: white;
}

.lang-divider {
    color: #ccc;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: #ffffff !important;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero Logo Styles */
.hero-logo {
    text-align: center;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Hero logo image styles removed - using animated text logo instead */

.hero-text h2 {
    font-family: 'Calibri', sans-serif;
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    text-shadow: 
        0 1px 2px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 22px 45px;
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold-mid) 50%, var(--primary-gold-dark) 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease-out 0.6s both;
    letter-spacing: 0.5px;
    font-family: 'Calibri', sans-serif;
    box-shadow: 0 6px 20px rgba(250, 210, 60, 0.4);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(250, 210, 60, 0.6);
    background: linear-gradient(135deg, var(--primary-gold-mid) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Section Styles */
.section {
    padding: 80px 0;
    background: #ffffff;
    margin: 0;
}

.bg-light {
    background: #ffffff;
}

.section-title {
    font-family: 'Calibri', sans-serif;
    font-size: 2.2rem;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #6a6a6a;
    border-radius: 1px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-grid:has(.content-text:only-child) {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-text h3 {
    font-family: 'Calibri', sans-serif;
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(174, 230, 238, 0.15);
    border-radius: 8px;
    border-left: 4px solid #8a8a8a;
}

.amenity-item i {
    color: #6a6a6a;
    font-size: 1.2rem;
    width: 20px;
}

.amenities-text {
    background: rgba(174, 230, 238, 0.15);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #8a8a8a;
    font-style: italic;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border: 2px dashed #8a8a8a;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: #4a4a4a;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Real Image Styles */
.content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    max-width: 100%;
    opacity: 1 !important;
}

/* Aussicht Section Specific Styling */
.aussicht-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.content-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.room-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Guestbook Styles */
.guestbook {
    background: #F7FAFC;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.guestbook h3 {
    font-family: 'Calibri', sans-serif;
    font-size: 2.2rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    text-align: center;
}

.guestbook-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.review {
    background: rgba(168, 197, 170, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.review p {
    font-style: italic;
    margin-bottom: 10px;
}

.review cite {
    font-weight: 600;
    color: #4a4a4a;
}

.review-form h4 {
    color: #4a4a4a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.review-form input,
.review-form textarea,
.review-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
    outline: none;
    border-color: #8a8a8a;
}

.review-form button {
    background: linear-gradient(135deg, #4a4a4a 0%, #6a6a6a 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

/* Pricing Tables */
.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-table {
    background: #F7FAFC;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #8a8a8a;
}

.pricing-table h3 {
    font-family: 'Calibri', sans-serif;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table th {
    background: rgba(174, 230, 238, 0.15);
    font-weight: 600;
    color: #4a4a4a;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.pricing-note {
    background: rgba(174, 230, 238, 0.15);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #8a8a8a;
}

/* Room Gallery */
.room-gallery {
    margin-top: 60px;
}

.room-gallery h3 {
    font-family: 'Calibri', sans-serif;
    font-size: 2.2rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.room-photo {
    aspect-ratio: 4/3;
}

/* Compact Room Gallery Styles */
.gallery-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.room-photo-compact {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
    position: relative;
    height: 160px;
}

.room-photo-compact.gallery-placeholder {
    background: linear-gradient(110deg, #f0f0f0 8%, #fafafa 18%, #f0f0f0 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.room-photo-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.room-photo-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 15px;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.lightbox-nav:hover {
    color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 10px;
    font-weight: 400;
}

/* Lightbox navigation responsive */
@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 35px;
        padding: 15px 12px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        font-size: 28px;
        padding: 12px 10px;
        top: auto;
        bottom: 80px;
        transform: none;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

#lightbox-caption {
    color: white;
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
}

.room-type h4 {
    font-size: 1.5rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: center;
}

.room-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.room-images .image-placeholder {
    min-height: 150px;
    padding: 20px;
}

.room-images .image-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.room-images .image-placeholder p {
    font-size: 0.9rem;
}

/* Room images grid adjustments */
.room-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
}

.room-images > * {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #F7FAFC;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #8a8a8a;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.offer-card.featured {
    border-top-color: #14468C;
    background: linear-gradient(135deg, rgba(174, 230, 238, 0.1) 0%, rgba(247,250,252,1) 100%);
}

.offer-card.coming-soon {
    opacity: 0.7;
    border-top-color: #ccc;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.offer-header i {
    font-size: 2rem;
    color: #6a6a6a;
}

.offer-header h3 {
    font-family: 'Calibri', sans-serif;
    color: #4a4a4a;
    font-size: 1.5rem;
    flex: 1;
}

.offer-badge {
    background: #8a8a8a;
    color: #F7FAFC;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-content h4 {
    color: #4a4a4a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.course-options {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.course-option {
    background: rgba(174, 230, 238, 0.15);
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #4a4a4a;
    text-align: center;
    margin: 15px 0;
}

.course-description {
    background: rgba(174, 230, 238, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.course-description h5 {
    color: #4a4a4a;
    margin-bottom: 10px;
}

.offer-link {
    color: #6a6a6a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.offer-link:hover {
    border-bottom-color: #8a8a8a;
}

/* Reservation Section */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.reservation-methods h3 {
    font-family: 'Calibri', sans-serif;
    color: #4a4a4a;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #F7FAFC;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #8a8a8a;
    width: 250px;
    justify-content: flex-start;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 2rem;
    color: #6a6a6a;
    width: 50px;
    text-align: center;
}

.contact-method h4 {
    color: #4a4a4a;
    margin-bottom: 5px;
}

.contact-form,
.centered-contact-form {
    background: #F7FAFC;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.contact-methods-centered {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tourism-section {
    margin-top: 40px;
}

.contact-form h3,
.centered-contact-form h3 {
    font-family: 'Calibri', sans-serif;
    color: #4a4a4a;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #8a8a8a;
}

.form-field-with-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Legal consent checkboxes */
.legal-consent {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a4a4a;
}

.consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-gold);
}

.consent-label a {
    color: var(--primary-gold-dark);
    text-decoration: underline;
}

.consent-label a:hover {
    color: var(--primary-gold);
}

/* Honeypot spam protection - hide from humans */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.form-field-with-label label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a4a;
}

.form-field-with-label input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field-with-label input:focus {
    outline: none;
    border-color: #8a8a8a;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.contact-form textarea,
.centered-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
    min-height: 120px;
    font-family: inherit;
}

.contact-form textarea:focus,
.centered-contact-form textarea:focus {
    outline: none;
    border-color: #8a8a8a;
}

.contact-form button,
.centered-contact-form button {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold-mid) 50%, var(--primary-gold-dark) 100%);
    color: #2c2c2c;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    width: auto;
    max-width: 300px;
    margin: 20px auto 0 auto;
    display: block;
    box-shadow: 0 4px 15px rgba(250, 210, 60, 0.3);
}

.contact-form button:hover,
.centered-contact-form button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(250, 210, 60, 0.6);
    background: linear-gradient(135deg, var(--primary-gold-mid) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
}

/* Location Info */
.location-info {
    background: #F7FAFC;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-info h3 {
    font-family: 'Calibri', sans-serif;
    color: #4a4a4a;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center; /* vertically center both columns */
}

.location-text h4 {
    color: #4a4a4a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.location-text li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(168, 197, 170, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.maps-link:hover {
    background: rgba(168, 197, 170, 0.2);
    transform: translateY(-2px);
}

.transport-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(168, 197, 170, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.transport-link:hover {
    background: rgba(168, 197, 170, 0.2);
    transform: translateY(-2px);
}

.transport-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    align-self: center; /* prevent stretching, center vertically */
}

.map-container:hover {
    transform: translateY(-3px);
}

.map-placeholder {
    background: linear-gradient(135deg, #f5f8f5 0%, #edf1ed 100%);
    border: 2px dashed #8a8a8a;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: #4a4a4a;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #F7FAFC;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #8a8a8a;
    overflow: visible;
    height: auto;
}

.info-card.wide {
    grid-column: 1 / -1;
}

.info-card h3 {
    font-family: 'Calibri', sans-serif;
    color: #4a4a4a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card h3 i {
    font-size: 1.5rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.info-card li::before {
    content: '•';
    color: #8a8a8a;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 1.2rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.activity {
    text-align: center;
    padding: 25px;
    background: rgba(168, 197, 170, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.activity i {
    font-size: 2.5rem;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.activity h4 {
    color: #4a4a4a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.activity p {
    font-size: 0.9rem;
    color: #666;
}

/* Activities Compact Layout */
.activities-compact {
    margin: 20px 0;
}

.activity-rondells {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.activity-rondell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.activity-rondell:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #4a4a4a;
}

.activity-rondell i {
    font-size: 1.4rem;
    color: #4a4a4a;
    margin-bottom: 2px;
}

.activity-rondell span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    line-height: 1;
    font-family: 'Calibri', sans-serif;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.activity-item i {
    font-size: 1.1rem;
    color: #4a4a4a;
    width: 20px;
    flex-shrink: 0;
}

.activity-item span {
    font-size: 0.9rem;
    color: #2c2c2c;
    line-height: 1.3;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #f0f0f0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Calibri', sans-serif;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-weight: 500;
}

.footer-section h3 {
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #c0c0c0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8a8a8a;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #c0c0c0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    /* Contact info responsive styles removed */
    
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1001;
        overflow: visible !important;
    }
    
    .navbar .container {
        justify-content: flex-end;
        gap: 10px;
        overflow: visible !important;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 9999;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
        order: 2;
    }

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

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

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

    /* Language switcher mobile */
    .language-switcher {
        position: static;
        transform: none;
        order: 1;
        padding: 3px 8px;
    }
    
    .lang-btn {
        padding: 3px 8px;
        font-size: 0.8rem;
    }

    .nav-menu .nav-link {
        padding: 15px 20px;
        color: #2c2c2c;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-menu .nav-link:hover {
        background: rgba(0,0,0,0.05);
        color: #2c5530;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
    
    /* Responsive logo box for tablets */
    .animated-logo {
        padding: 25px 35px;
        margin-left: 20px;
        margin-right: 20px;
        max-width: calc(100vw - 40px);
        box-sizing: border-box;
    }
    
    /* Responsive logo for tablets */
    .logo-line-1 {
        font-size: 5rem;
        margin-bottom: -25px;
    }
    
    .logo-line-2 {
        font-size: 3rem;
        margin-top: -18px;
    }
    
    /* Responsive sun for tablets */
    .sun-letter {
        width: 50px;
        height: 50px;
        margin: 0 5px;
    }
    
    .animated-sun-small {
        width: 50px;
        height: 50px;
    }
    
    .sun-circle-small {
        width: 38px;
        height: 38px;
        box-shadow: 
            0 0 12px rgba(255, 224, 102, 0.95),
            0 0 24px rgba(255, 215, 64, 0.7),
            0 0 36px rgba(250, 210, 60, 0.5);
    }
    
    .sun-rays-small {
        width: 50px;
        height: 50px;
    }
    
    /* Tablet ray adjustments */
    .ray-small.ray-1,
    .ray-small.ray-3,
    .ray-small.ray-5,
    .ray-small.ray-7 {
        border-width: 8px 2.5px 0 2.5px;
    }
    
    .ray-small.ray-2,
    .ray-small.ray-4,
    .ray-small.ray-6,
    .ray-small.ray-8 {
        border-width: 6px 2px 0 2px;
    }
    
    /* Tablet ray positioning */
    .ray-small.ray-1 {
        top: -8px;
    }
    
    .ray-small.ray-2 {
        top: 3px;
        right: -5px;
    }
    
    .ray-small.ray-3 {
        right: -8px;
    }
    
    .ray-small.ray-4 {
        bottom: 3px;
        right: -5px;
    }
    
    .ray-small.ray-5 {
        bottom: -8px;
    }
    
    .ray-small.ray-6 {
        bottom: 3px;
        left: -5px;
    }
    
    .ray-small.ray-7 {
        left: -8px;
    }
    
    .ray-small.ray-8 {
        top: 3px;
        left: -5px;
    }

    .section {
        padding: 60px 0;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-table {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .pricing-table h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .pricing-table td:first-child {
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
    }
    
    .room-photo-compact {
        height: 140px;
    }

    .room-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .room-images > * {
        height: auto;
        min-height: 200px;
    }
    
    .room-img {
        height: 250px;
    }
    
    .content-img {
        height: 300px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .course-options {
        flex-direction: column;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guestbook-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .logo h1 {
        font-size: 1.8rem;
    }
    
    /* Animated logo box - constrained to viewport with margins */
    .animated-logo {
        padding: 20px 25px;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
    }
    
    /* Hero logo container - keep centered */
    .hero-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* CTA button - slightly smaller than logo box, centered */
    .hero-logo .cta-button,
    .hero .cta-button {
        display: inline-block;
        width: auto;
        max-width: calc(100vw - 60px);
        margin: 0 auto;
        padding: 14px 30px;
        font-size: 0.85rem;
        text-align: center;
        box-sizing: border-box;
    }
    
    .logo-line-1 {
        font-size: 3.5rem;
        margin-bottom: -20px;
        letter-spacing: 0.05em;
    }
    
    .logo-line-2 {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        margin-top: -15px;
    }
    
    /* Responsive sun for mobile */
    .sun-letter {
        width: 35px;
        height: 35px;
        margin: 0 3px;
        transform: translateY(20px) scale(0.8);
    }
    
    /* Mobile sun animation adjustment */
    @keyframes sunAppear {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }
        100% {
            opacity: 1;
            transform: translateY(5px) scale(1);
        }
    }
    
    .animated-sun-small {
        width: 35px;
        height: 35px;
    }
    
    .sun-circle-small {
        width: 26px;
        height: 26px;
        box-shadow: 
            0 0 8px rgba(255, 224, 102, 0.95),
            0 0 16px rgba(255, 215, 64, 0.7),
            0 0 24px rgba(250, 210, 60, 0.5);
    }
    
    .sun-rays-small {
        width: 35px;
        height: 35px;
    }
    
    /* Mobile ray adjustments */
    .ray-small.ray-1,
    .ray-small.ray-3,
    .ray-small.ray-5,
    .ray-small.ray-7 {
        border-width: 5px 1.5px 0 1.5px;
    }
    
    .ray-small.ray-2,
    .ray-small.ray-4,
    .ray-small.ray-6,
    .ray-small.ray-8 {
        border-width: 4px 1px 0 1px;
    }
    
    /* Mobile ray positioning */
    .ray-small.ray-1 {
        top: -5px;
    }
    
    .ray-small.ray-2 {
        top: 2px;
        right: -3px;
    }
    
    .ray-small.ray-3 {
        right: -5px;
    }
    
    .ray-small.ray-4 {
        bottom: 2px;
        right: -3px;
    }
    
    .ray-small.ray-5 {
        bottom: -5px;
    }
    
    .ray-small.ray-6 {
        bottom: 2px;
        left: -3px;
    }
    
    .ray-small.ray-7 {
        left: -5px;
    }
    
    .ray-small.ray-8 {
        top: 2px;
        left: -3px;
    }

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

    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .contact-form,
    .location-info,
    .guestbook {
        padding: 25px;
    }

    .offer-card,
    .info-card {
        padding: 20px;
    }
}

/* Image Loading States */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded,
img[loading="eager"] {
    opacity: 1;
}

.image-error {
    background: linear-gradient(135deg, #f8f4f8 0%, #ece8ec 100%);
    border: 2px dashed #ccc;
    color: #666;
}

.image-error i {
    color: #999;
}

.image-error small {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Impressum/Legal Pages Styles */
.impressum-content {
    max-width: 100%;
    line-height: 1.7;
}

.impressum-content h2 {
    color: #2c2c2c;
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.impressum-content h3 {
    color: #4a4a4a;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #8a8a8a;
    padding-left: 15px;
}

.impressum-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.impressum-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.impressum-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.impressum-content hr {
    margin: 40px 0;
    border: none;
    border-top: 2px solid #e0e0e0;
}

.impressum-content a {
    color: #1e4a6b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.impressum-content a:hover {
    border-bottom-color: #1e4a6b;
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
.nav-link:focus,
.cta-button:focus {
    outline: 3px solid #8a8a8a;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .navbar,
    .footer,
    .cta-button {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-logo {
        gap: 30px;
    }
    
    .animated-logo {
        padding: 4px 8px;
        border-radius: 8px;
        margin-bottom: 10px;
        margin-left: 24px;
        margin-right: 24px;
        border: 3px solid var(--primary-gold);
        max-width: calc(100% - 48px);
    }
    
    .logo-line-1 {
        font-size: 4.5rem;
        margin-bottom: -20px;
    }
    
    .logo-line-2 {
        font-size: 3rem;
        margin-top: -10px;
    }
    
    /* Ultra kleine Sonne für iPhone */
    .sun-letter {
        width: 16px;
        height: 16px;
        margin: 0 2px;
    }
    
    .animated-sun-small {
        width: 16px;
        height: 16px;
    }
    
    .sun-circle-small {
        width: 14px;
        height: 14px;
        box-shadow: 
            0 0 2px rgba(255, 224, 102, 0.9),
            0 0 4px rgba(255, 215, 64, 0.6);
    }
    
    .sun-rays-small {
        width: 16px;
        height: 16px;
    }
    
    /* Mobile outward-pointing rays touching the sun */
    .ray-small.ray-1,
    .ray-small.ray-3,
    .ray-small.ray-5,
    .ray-small.ray-7 {
        border-width: 3px 1px 0 1px;
    }
    
    .ray-small.ray-2,
    .ray-small.ray-4,
    .ray-small.ray-6,
    .ray-small.ray-8 {
        border-width: 2px 0.5px 0 0.5px;
    }
    
    /* Mobile ray positioning - closer to sun */
    .ray-small.ray-1 {
        top: -3px;
    }
    
    .ray-small.ray-2 {
        top: 2px;
        right: -2px;
    }
    
    .ray-small.ray-3 {
        right: -3px;
    }
    
    .ray-small.ray-4 {
        bottom: 2px;
        right: -2px;
    }
    
    .ray-small.ray-5 {
        bottom: -3px;
    }
    
    .ray-small.ray-6 {
        bottom: 2px;
        left: -2px;
    }
    
    .ray-small.ray-7 {
        left: -3px;
    }
    
    .ray-small.ray-8 {
        top: 2px;
        left: -2px;
    }
}
