body {
   -family: 'Poppins', sans-serif;    margin: 0;
    background: #041c1a;
    color: white;
    scroll-behavior: smooth;
}

/* NAV */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.navbar a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
}

.logo span {
    color: #00ffd5;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d') center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,#021312cc,#00ffd533);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero h1 {
    font-size: 50px;
}

.hero button {
    margin-top: 20px;
    background: linear-gradient(135deg,#00ffd5,#00bfa5);
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
}

/* BOOKING */
.booking {
    padding: 80px 20px;
    text-align: center;
}

.booking-box {
    margin: auto;
    max-width: 350px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0,255,200,0.2);
}

.input-group {
    display: flex;
    align-items: center;
    background: #0b2a28;
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
}

.input-group i {
    margin-right: 10px;
}

input {
    border: none;
    background: transparent;
    color: white;
    width: 100%;
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}

/* CARD */
.vozila {
    padding: 60px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 250px;
    padding: 25px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

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

.premium {
    border: 1px solid #00ffd5;
    box-shadow: 0 0 20px #00ffd5;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #021312;
}
