/* Grundlegende Stile */
body {
     font-family: 'Montserrat', sans-serif;
      font-weight: 100;
      font-weight: 300;
   
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #111224;
}

header {
    background-color: #f9f9f9;
    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 35px;
    color: #111224;
    text-decoration: none;
}

/* Dies ist die wichtigere Regel, um die Unterstreichung des Links zu entfernen */
header.header a {
    text-decoration: none;
}

/* Stil für die Suchleiste im Header */
.header-with-search {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 10px;
}

.header-search-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
    max-width: 800px;
}

.search-input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    flex-grow: 1;
    min-width: 150px;
    color: #111224;
}

.search-button {
    padding: 12px 24px;
    background-color: #0289c0;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 215px;
}

.search-button:hover {
    background-color: #00b5f0;
}

/* Stil für die Suchergebnisseite */
.search-results-page {
    padding: 20px;
    text-align: center;
}

.search-info {
    text-align: center;
    margin-bottom: 20px;
}

/* Stil für die Modals */
.search-modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 30px; /* Standard-Padding oben */
}

.search-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.guest-room-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.guest-room-option label {
    font-size: 16px;
    color: #111224;
}

.counter {
    display: flex;
    align-items: center;
}

.counter-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    color: #111224;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
}

.counter input[type="number"] {
    width: 40px;
    text-align: center;
    border: none;
    background: none;
    font-size: 16px;
    color: #111224;
}

/* Stil für den Kalender */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-header .nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.calendar-header .month-title {
    font-weight: bold;
    font-size: 1.2em;
    flex-grow: 1;
    text-align: center;
}

.calendar-container.two-months {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.calendar {
    font-family: Arial, sans-serif;
    width: 100%;
    max-width: 400px; /* Standard-Maximalbreite für Desktop */
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.calendar__body {
    padding: 10px;
}

.calendar__days, .calendar__dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar__days > div {
    font-weight: bold;
    padding: 5px;
}

.calendar__dates > .day {
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.calendar__dates > .day:hover:not(.disabled) {
    background-color: #eee;
}

.calendar__dates > .day.selected {
    background-color: #0289c0;
    color: white;
    font-weight: bold;
}

.calendar__dates > .day.in-range {
    background-color: #0289c085;
}

.calendar__dates > .day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.guests-rooms-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.modal-button.primary {
    background-color: #0289c0;
    color: white;
}

.modal-button.secondary {
    background-color: #f0f0f0;
    color: #111224;
}



/* Versteckt die Hero-Sektion standardmäßig (für mobile Ansicht) */
.hero-results-section {
    display: none;
}

/* ---------------------------------------------------- */
/* Desktop-Ansicht (ab 769px)                           */
/* ---------------------------------------------------- */
@media (min-width: 769px) {
    /* Zeigt die Hero-Sektion nur auf größeren Bildschirmen an */
    .hero-results-section {
        display: block; /* oder flex, je nach ursprünglichem Layout */
    }
}


/* Responsive Anpassungen */
@media (max-width: 768px) {
    .header-with-search {
        flex-direction: column;
        width: 400px;
        height: 250px;
        justify-content: center;
        margin: auto;
        border-radius: 8px;
        background: #f8f8f8;
        border: 1px solid;
        border-color: #BDBDBD;
        box-shadow: 2px 2px 3px #E0E0E0;
    }

    .header-search-container {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
        gap: 10px;
    }


.search-input {

    width: 90%;
    margin: 2px auto;
    display: block;
    flex-grow: 0;   /* Input soll sich nicht mehr zusätzlich strecken */
}


.search-button {
   
    display: block;
    flex-grow: 0;   /* Input soll sich nicht mehr zusätzlich strecken */
    padding-bottom: 15px;
    width: 245px;
}


    .search-modal-content {
        width: 95%; /* Etwas breiter für bessere Nutzung */
        margin: 5% auto;
        padding: 15px; /* Etwas weniger Padding */
        overflow-y: auto; /* Aktiviert das vertikale Scrollen, falls der Inhalt zu lang ist */
    }
    
    .calendar-container.two-months {
        flex-direction: column;
        gap: 5px;
    }

    .calendar {
        max-width: 280px; /* Reduzierte feste Breite für den Kalender */
        margin: 10px auto; /* Zentriert und Abstand */
        font-size: 0.9em; 
    }

    .calendar__dates > .day {
        padding: 8px; /* Kleinerer Padding für Kalendertage */
    }

    .calendar-footer {
        margin-top: 15px; /* Etwas weniger Margin oben */
        justify-content: center; /* Buttons mittig ausrichten */
    }
}
/* Stile für die neue Hero-Sektion auf der Ergebnisseite */
.hero-results-section {
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    height: 300px; /* Passen Sie die Höhe nach Bedarf an */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 20px;
}

.hero-results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Leichte Überlagerung für bessere Lesbarkeit */
    z-index: 1;
}

.hero-results-content {
    position: relative;
    z-index: 2;
}

.hero-results-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-results-content p {
    font-size: 24px;
    font-weight: 300;
    margin: 10px 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Stile für die Slider-Sektionen */
.top-hotels-section, .top-city-section {
    padding: 20px;
    background-color: #fff;
    margin-top: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    color: #111224;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    -webkit-overflow-scrolling: touch; /* Für flüssiges Scrollen auf iOS */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    cursor: grab;
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Stile für Hotel-Karten */
.hotel-card {
    display: flex;
    flex-direction: row;
    align-items: center; /* NEU: Zentriert die Elemente vertikal */
    height: 200px; /* NEU: Setzt eine feste Höhe */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


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

.hotel-image {
    width: 100%;
    height: 150px; /* Einheitliche Höhe für alle Hotelbilder */
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.card-badge.top-bewertet {
    background-color: #ff9800;
}
.card-badge.reduziert {
    background-color: #f44336;
}
.card-badge.luxus {
    background-color: #9c27b0;
}
.card-badge.guenstig {
    background-color: #4caf50;
}
.card-badge.top-preis {
    background-color: #2196f3;
}
.card-badge.neu {
    background-color: #00bcd4;
}
.card-badge.popular {
    background-color: #ffc107;
}

.hotel-info {
    padding: 15px;
}

.hotel-name {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 500;
}

.hotel-location {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.hotel-rating {
    color: #ffc107;
    font-size: 16px;
    margin-top: 10px;
}

/* Stile für Städte-Karten */
.city-card {
    flex: 0 0 200px; /* Einheitliche Breite für alle Städte-Karten */
    height: 250px; /* Einheitliche Höhe für alle Städte-Karten */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
}

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

.city-image {
    width: 100%;
    height: 150px; /* Einheitliche Höhe für alle Stadtbilder */
    object-fit: cover;
}

.city-info {
    padding: 15px;
}

.city-info .city-name {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 500;
}

.city-price {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.view-all-hotels-link,
.view-all-city-link {
    display: block;
    text-align: right;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    color: #0289c0;
}

/* Responsive Anpassungen für die Slider-Sektionen */
@media (max-width: 768px) {
    .top-hotels-section, .top-city-section {
        padding: 10px;
    }
    
    .section-title {
        font-size: 20px;
    }

    .slider-container {
        padding: 5px;
        gap: 10px;
    }

    .hotel-card {
        flex: 0 0 200px; /* Angepasste Breite für mobile Ansicht */
        height: 250px;
    }
    
    .hotel-image {
        height: 120px;
    }

    .city-card {
        flex: 0 0 150px; /* Angepasste Breite für mobile Ansicht */
        height: 200px;
    }

    .city-image {
        height: 100px;
    }
}


















/* Newsletter-Bereich */
.newsletter-section {
    background-color: #e6f7ff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #111224;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-input {
    width: 300px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #111224;
}

.newsletter-button {
    padding: 12px 24px;
    background-color: #0289c0;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #00b5f0;
}

/* Footer-Bereich */
.footer {
    background-color: #111224;
    color: white;
    padding: 40px 20px;
}


.footer-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #0289c0;
}

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

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}












/* Filter Modal Stile (neu) */
.filter-modal-content {
    max-width: 500px;
}

.filter-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.filter-group h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #111224;
}

.star-rating-filter,
.amenity-filter,
.breakfast-filter,
.rating-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-filter,
.distance-filter {
    padding-top: 10px;
}

.slider {
    width: 100%;
}

.filter-footer {
    text-align: right;
    margin-top: 20px;
}

/* Modale */
.search-modal {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.search-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: fadeInModal 0.3s ease-out;
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.modal-button.primary {
    background-color: #0289c0;
    color: white;
}


/* Stil für die Suchergebnisseite (neu) */
.search-results-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.search-results-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    padding-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.results-count {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.control-buttons {
    display: flex;
    gap: 10px;
    position: relative; /* Für Dropdown-Positionierung */
}

/* Stil für Sortierungs-Dropdown (neu) */
.sort-dropdown-container {
    position: relative;
    display: inline-block;
}

.sort-options {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
}

.sort-options a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.sort-options a:hover {
    background-color: #f1f1f1;
}

.sort-dropdown-container:hover .sort-options {
    display: block;
}

.sort-button,
.filter-button {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.sort-button:hover,
.filter-button:hover {
    background-color: #f0f0f0;
}

.sort-button i,
.filter-button i {
    font-size: 20px;
}

















CSS

* Container für die Suchergebnisse */
.results-grid {
    display: flex;
    flex-direction: column; /* Sorgt dafür, dass die Karten selbst gestapelt sind */
    gap: 20px;
}

/* ---------------------------------------------------- */
/* Mobile-Ansicht (Standard-Layout) - UNTEREINANDER     */
/* ---------------------------------------------------- */
.hotel-cards {
    /* Grundlegende Kartenstile */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    /* Standardmäßig gestapeltes Layout für Mobilgeräte */
    display: flex; /* Diese Zeile wird geändert */
    flex-direction: column;
    align-items: center;
}

.hotel-cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Linke Spalte: Hotel-Bild */
.hotel-image-container {
    flex: 0 0 250px; /* Feste Breite für das Bild */
    
    position: relative;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mittlere Spalte: Hotel-Details */
.hotel-details-container {
    flex: 1; /* Nimmt den restlichen Platz ein */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Rechte Spalte: Anbieter-Preise */
.hotel-providers-list {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    gap: 10px;
    border-left: 1px solid #eee; /* Vertikale Trennlinie */
}

/* Die einzelnen Anbieter innerhalb der Preisbox */
.provider-offer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




/* ---------------------------------------------------- */
/* Desktop-Ansicht (ab 769px) - NEBENEINANDER           */
/* ---------------------------------------------------- */
@media (min-width: 769px) {
    .hotel-cards {
        flex-direction: row; /* Ordnet die Boxen nebeneinander an */
        height: 200px;
    }
    
    .hotel-image-container {
        flex: 0 0 250px; /* Feste Breite für das Bild */
        height: 200px;
    }
    
    .hotel-providers-list {
        width: 300px;
        border-left: 1px solid #eee; /* Vertikale Trennlinie */
    }
}
    .hotel-details-container {
        width: 95%;
        padding: 15px;
        text-align: left;
    }

    .hotel-providers-list {
        width: 100%;
        padding: 15px;
        border-left: none;
        border-top: 1px solid #eee;
        align-items: center;
    }

    /* NEU: Anordnung der Anbieter-Informationen auf Mobilgeräten */
    .provider-offer {
        display: flex;
        flex-direction: row; /* Stellt sicher, dass die Elemente horizontal angeordnet sind */
        justify-content: space-between; /* Verteilt die Elemente gleichmäßig */
        align-items: center;
        width: 90%;
    }

    .provider-price {
        flex: 1; /* Der Preis nimmt den restlichen Platz ein und zentriert sich */
        text-align: center;
        font-size: 25px;
        padding-right: 20px;
        color: #ff5722
    }

    .provider-link {
    display: inline-block; /* Verwandelt den Link in einen Block, der Maße annehmen kann */
    padding: 8px 16px; /* Innenabstand für den Button */
    background-color: #0289c0; /* Hintergrundfarbe, passend zum "Suchen"-Button */
    color: white; /* Textfarbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
    border-radius: 4px; /* Abgerundete Ecken */
    font-weight: 500; /* Schriftgewicht */
    transition: background-color 0.3s ease; /* Weicher Übergang bei Hover */
    }

    .provider-link:hover {
    background-color: #00b5f0; /* Hellere Farbe beim Überfahren mit der Maus */
}













































/* Stil für Sortierungs-Dropdown (neu) */
.sort-dropdown-container {
    position: relative;
    display: inline-block;
}

.sort-options {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
}

.sort-options a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.sort-options a:hover {
    background-color: #f1f1f1;
}

.sort-dropdown-container:hover .sort-options {
    display: block;
}

.sort-button,
.filter-button {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.sort-button:hover,
.filter-button:hover {
    background-color: #f0f0f0;
}

.sort-button i,
.filter-button i {
    font-size: 20px;
}


/* Stil für Hotel-Ergebnis-Karten (neu) */
.hotel-results-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotel-result-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

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

.hotel-image-container {
    flex: 0 0 300px;
}

.hotel-result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-details {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-title-and-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hotel-result-name {
    font-size: 24px;
    margin: 0;
    font-weight: 500;
}

.hotel-stars {
    color: gold;
    font-size: 20px;
}

.hotel-result-location {
    color: #777;
    margin: 0 0 15px;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
}

.hotel-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-price-info {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: auto;
}

.hotel-price {
    font-size: 28px;
    font-weight: bold;
    color: #0289c0;
}

.price-per-night {
    font-size: 14px;
    color: #777;
}

.hotel-view-button {
    padding: 12px 20px;
    background-color: #0289c0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.hotel-view-button:hover {
    background-color: #00b5f0;
}

/* Filter Modal Stile (neu) */
.filter-modal-content {
    max-width: 500px;
}

.filter-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.filter-group h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #111224;
}

.star-rating-filter,
.amenity-filter,
.breakfast-filter,
.rating-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-filter,
.distance-filter {
    padding-top: 10px;
}

.slider {
    width: 100%;
}

.filter-footer {
    text-align: right;
    margin-top: 20px;
}





/* Zusätzlicher Styling-Bereich für die erweiterten Footer-Spalten */
.extended-links {
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 30px;
    
}
/* Anpassungen für kleinere Bildschirme */
@media (max-width: 768px) {
    .extended-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}





























































