/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body und Fonts */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #F1F5FA; /* Sehr helles Blau */
    color: #2B3E50; /* Dunkler Blauton */
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2B3E50; /* Dunkler Blauton */
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #A9C9E5; /* Hellblauer Farbton */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #A9C9E5; /* Hellblauer Farbton */
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #A9C9E5; /* Hellblauer Farbton */
    margin: 4px 0;
}

/* Hero Section */
.hero {
    background-image: url('images/zurich.jpg'); /* Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 62, 80, 0.6); /* Dunkelblauer Overlay für besseren Kontrast */
}

.hero h1,
.hero p,
.cta-button {
    position: relative; /* Sicherstellen, dass der Text und der Button über dem Overlay erscheinen */
    z-index: 1;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
}

.cta-button {
    padding: 15px 30px;
    background-color: #FFA726; /* Warmes Orange */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
}

.cta-button:hover {
    background-color: #FF8C00; /* Dunkleres Orange für den Hover-Effekt */
    transition: 0.3s;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2B3E50; /* Dunkler Blauton */
}

/* Hotel Description Styling */
#about p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* Room Cards */
.room-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.room-card {
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 30%;
    margin-bottom: 20px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%; /* Sorgt dafür, dass alle Bilder die gleiche Breite haben */
    height: 200px; /* Setzt eine einheitliche Höhe */
    object-fit: cover; /* Schneidet das Bild passend zu */
    display: block;
}

.room-card h3 {
    background-color: #2B3E50; /* Dunkler Blauton */
    color: #A9C9E5; /* Hellblauer Text */
    padding: 15px;
    font-size: 24px;
}

.room-card p {
    padding: 15px;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

.room-card ul {
    list-style: none;
    padding: 0 15px 15px 15px;
    color: #555;
}

.room-card ul li {
    margin-bottom: 10px;
}

.room-button {
    display: block;
    text-align: center;
    margin: 15px;
    padding: 10px 20px;
    background-color: #FFA726; /* Warmes Orange */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.room-button:hover {
    background-color: #FF8C00; /* Dunkleres Orange für den Hover-Effekt */
    transition: 0.3s;
}

/* Footer */
.footer-content {
    background-color: #2B3E50; /* Dunkler Blauton */
    color: #A9C9E5; /* Hellblauer Farbton */
    padding: 20px;
    text-align: center;
}

.social-media a img {
    /*filter: grayscale(100%); /* Einheitlicher Look */
    width: 24px;
    margin: 0 10px;
}

@media (max-width: 768px) { /* Mobile-Size */
    .nav-links {
        list-style: none;
        display: block;
        flex: 1;
        text-align: end;
        overflow-x: hidden;
    }
    .nav-links li {
        margin-left: 0;
    }
}
