body { 
    background-color: #431407;
    color: #ffedd5;
    background-image: radial-gradient(circle at 50% 0%, #9a3412 0%, #7c2d12 40%, #431407 100%);
    min-height: 100vh;
    background-attachment: fixed;
}
.text-metallic {
    background: linear-gradient(to bottom, #fed7aa 0%, #fb923c 40%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 15px rgba(251, 146, 60, 0.6));
}
.copper-glass {
    background: rgba(124, 45, 18, 0.15);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-top: 1px solid rgba(253, 186, 116, 0.5);
    box-shadow: 0 8px 32px 0 rgba(67, 20, 7, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.copper-glass:hover {
    transform: translateY(-5px);
    border-color: #fb923c;
    box-shadow: 0 0 40px -5px rgba(234, 88, 12, 0.4);
    background: rgba(154, 52, 18, 0.25);
}
.vertical-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #fdba74, transparent);
    margin: 0 auto;
    box-shadow: 0 0 20px #fb923c;
}
.main-logo {
    filter: drop-shadow(0 0 25px rgba(251, 146, 60, 0.6));
}
.copper-tint {
    filter: sepia(20%) saturate(1.1) brightness(0.95) contrast(1.05);
    mix-blend-mode: normal;
    opacity: 1;
}
.btn-liquid {
    background: linear-gradient(45deg, #c2410c, #ea580c);
    border: 1px solid #fdba74;
    color: #fff7ed;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
    transition: all 0.3s;
}
.btn-liquid:hover {
    background: linear-gradient(45deg, #fb923c, #f97316);
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.7);
    border-color: #fff;
    transform: scale(1.02);
}
.lang-de { display: none; }
.lang-en { display: block; }
body.german-mode .lang-de { display: block; }
body.german-mode .lang-en { display: none; }
/* Nur für index.html: hero-bg */
.hero-bg {
    background-image: url('../concierge.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
}
@media (min-width: 768px) {
    .hero-bg {
        background-size: cover;
        background-position: center top;
    }
}

/* --- MODAL STYLES --- */

/* Scrollbar im Modal hübsch machen */
#concierge-modal ::-webkit-scrollbar {
    width: 6px;
}
#concierge-modal ::-webkit-scrollbar-track {
    background: rgba(67, 20, 7, 0.5);
}
#concierge-modal ::-webkit-scrollbar-thumb {
    background: #fb923c;
    border-radius: 3px;
}

/* Custom Scrollbar für die Focus Card */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #fb923c;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Listen-Styling für Benefits */
.benefit-list-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #ffedd5;
}
.benefit-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fb923c;
    font-weight: bold;
}

/* Pain Points (Probleme) Styling */
.pain-point-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fda4af;
    font-style: italic;
    font-size: 0.9em;
}
.pain-point-item::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #e11d48;
    font-weight: bold;
}

/* --- MODAL OVERLAY (Vanilla CSS Fix) --- */

/* 1. Der Container für das ganze Overlay (Hintergrund) */
#concierge-modal {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed; /* Fixiert am Bildschirm */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dunkler Hintergrund */
    z-index: 100000; /* Extrem hoher Wert, über allem anderen */
    backdrop-filter: blur(10px); /* Unschärfe-Effekt */
    
    /* Zentrierung der Karte */
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Hilfsklasse zum Anzeigen (wird per JS gesteuert) */
#concierge-modal.show {
    display: flex !important;
}

/* 2. Die Karte selbst (Focus Card) */
#modal-card {
    position: relative;
    width: 100%;
    max-width: 700px; /* Maximale Breite */
    background-color: #2a0f05; /* Dein dunkler Braunton */
    border: 1px solid rgba(251, 146, 60, 0.5); /* Kupfer-Rand */
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(234, 88, 12, 0.5); /* Oranges Leuchten */
    
    /* Wichtig für Scrolling auf kleinen Screens */
    display: flex;
    flex-direction: column;
    max-height: 90vh; /* Maximal 90% der Bildschirmhöhe */
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease-out;
}

/* Animation Status */
#modal-card.visible {
    opacity: 1;
    transform: scale(1);
}

/* 3. Header & Footer (Fixiert) */
.modal-header, .modal-footer {
    padding: 20px;
    background-color: #2a0f05;
    z-index: 2;
    flex-shrink: 0; /* Darf nicht schrumpfen */
}
.modal-header {
    border-bottom: 1px solid rgba(251, 146, 60, 0.2);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-footer {
    border-top: 1px solid rgba(251, 146, 60, 0.2);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: center;
}

/* 4. Der scrollbare Inhalt (Mitte) */
.modal-body {
    padding: 20px;
    overflow-y: auto; /* Hier passiert das Scrollen */
    -webkit-overflow-scrolling: touch; /* Flüssiges Scrollen auf iOS */
}

/* Typografie im Modal (manuell gesetzt, ohne Tailwind) */
.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.close-btn {
    background: transparent;
    border: 1px solid rgba(251, 146, 60, 0.3);
    color: #fb923c;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.close-btn:hover {
    background: #fb923c;
    color: #fff;
}