/* Grundlegende Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow: auto; /* Scrollen erlauben */
}

/* Für Webkit-Browser (Chrome, Safari) */
body::-webkit-scrollbar {
    width: 0px; /* Scrollbalkenbreite auf 0px setzen */
    background: transparent; /* Hintergrund transparent machen */
}

body::-webkit-scrollbar-thumb {
    background: transparent; /* Scrollbalken-Streifen transparent machen */
}

/* Navigationsleiste */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Padding auf beiden Seiten hinzufügen */
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box; /* Padding wird in die Breite mit einbezogen */
}

/* Linke Seite der Navigationsleiste mit Logo und Menü */
.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
}

.navbar nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar nav ul li {
    margin-left: 20px;
}

.navbar nav ul li a {
    color: #fff;
    text-decoration: none; /* Entfernt die Unterstreichung für Links */
    font-size: 16px;
}

/* Rechte Seite der Navigationsleiste mit Login-Button */
.navbar-right {
    display: flex;
    align-items: center;
}

.login-button {
    display: inline-block; /* Damit der Link wie ein Button aussieht */
    padding: 10px 20px;
    background-color: #01ca4a; /* Neue Farbe verwendet */
    border: none;
    color: white;
    font-size: 16px;
    text-decoration: none; /* Entfernt die Unterstreichung des Links */
    cursor: pointer;
    border-radius: 4px;
}

/* Hover-Effekt für den Login-Button */
.login-button:hover {
    background-color: #019e3a; /* Etwas dunklere Version der Farbe für Hover */
}

/* Hero-Sektion */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background-color: #333;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.hero-content h1 {
    font-size: 48px;
}

.hero-content p {
    font-size: 18px;
    margin-top: 10px;
    max-width: 400px;
}

.hero-content button {
    margin-right: 10px;
    padding: 10px 20px;
    background-color: #01ca4a; /* Neue Farbe verwendet */
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.hero-content a {
    text-decoration: none;
    color: #fff;
}

/* Hover-Effekt für Hero-Buttons */
.hero-content button:hover {
    background-color: #019e3a; /* Etwas dunklere Version der Farbe für Hover */
}

/* Content-Row */
.content-row {
    padding: 40px;
}

.content-row h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.row {
    display: flex;
    overflow-x: auto;
}

.card {
    min-width: 200px;
    margin-right: 10px;
}

.card img {
    width: 240px;
    height: 360px;
}

/* Login-Seite Stile */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #141414;
}

.login-form {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 40px;
    border-radius: 8px;
    width: 300px;
}

.login-form h1 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #bbb;
    margin-bottom: 5px;
}

.input-group input {
    width: 280px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.login-form button {
    width: 300px;
    padding: 10px;
    background-color: #01ca4a;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

