/* --- SCHRIFTART & ALLGEMEINES --- */
/* Importiert eine moderne Schrift, die zu Wix passt */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body, h1, h2, h3, div, p, a, button, input {
    font-family: 'Montserrat', sans-serif !important;
}

/* Hintergrund etwas weicher machen */
body {
    background-color: #f8f9fa !important;
}

/* --- BUTTONS (Das Wichtigste!) --- */
/* Ändert den Standard-Button in Ihr Anthrazit/Schwarz */
.btn-primary, .btn-search, .button-search, button[type="submit"] {
    background-color: #333333 !important; /* Ihr Marken-Dunkelgrau */
    border-color: #333333 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0px !important; /* Eckig wirkt moderner/alpiner */
    padding: 12px 20px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-search:hover {
    background-color: #555555 !important; /* Etwas heller beim Drüberfahren */
    transform: translateY(-2px); /* Leichter 3D-Effekt */
}

/* --- KALENDER & SUCHLEISTE --- */
/* Macht die Suchbox prominenter */
.search-box, .booking-search {
    background-color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    border: none !important;
    border-radius: 4px;
    padding: 20px !important;
}

/* --- ZIMMER-DARSTELLUNG (Wenn Datum gewählt) --- */
/* Den Preis hervorheben */
.room-price, .price-amount {
    color: #333333 !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
}

/* --- HINWEIS-BOXEN --- */
/* Falls Warnhinweise rot sind, machen wir sie dezenter */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
    border-radius: 0;
}

/* --- HEADER BEREINIGEN --- */
/* Entfernt oft störende Standard-Rahmen im Kopfbereich */
.header-wrapper, header {
    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee;
}