body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    text-align: center;
    scroll-behavior: smooth;
    padding-top: 60px;
    color: #f1f1f1;
}


.navbar {
    background: #292929;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar .logo img {
    height: 80px; 
    width: auto;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    justify-content: flex-end;
}

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #f59e42;
}


.register-btn {
    background: #f59e42;
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease, color 0.3s ease;
}

.register-btn:hover {
    background: #4c9e9e;
    color: white;
}


.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 5px;
}


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

    .navbar .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 20px;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .register-btn {
        margin-top: 20px;
        width: 100%;
        padding: 12px 0;
    }

    .burger {
        display: flex;
    }
}


.rental-featured {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.rental-card {
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    max-width: 800px;
    overflow: hidden;
}

.rental-card img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.rental-details {
    padding: 20px;
}

.rental-details h2 {
    color: #ffcc00;
}

.rental-details p {
    color: #f1f1f1;;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #ffcc00;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}


.rentals {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.rentals h2, .rentals h3 {
    color: #f59e42;
    text-align: center;
}

.rentals ul {
    list-style: none;
    padding: 0;
}

.rentals ul li {
    background: url('check-icon.png') left center no-repeat;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
}

a {
    color: inherit; 
    text-decoration: none;
}

a:hover {
    color: #f59e42; 
}



footer {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.footer-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin: 10px 0 0;
}

