* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-image: url("../poze/fundaltrasee.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(4, 56, 104, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

header .container {
    max-width: 100%;
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 100%;
    max-height: 80px;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
}

.highlight { 
    color: #de540a; 
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin: 0 35px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active { 
    color: #de540a; 
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: 0.3s;
}

.map-container {
    margin-top: 120px;
    margin-bottom: 60px;
    text-align: center;
    padding: 20px;
}

.map-container h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #003366;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}

.route-map {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 900px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.route-map:hover {
    transform: scale(1.02);
}

.map-container p {
    margin-top: 25px;
    font-size: 1.1rem;
    color: #003366;
}

footer {
    background-color: #001a33;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #113355;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

footer a {
    display: block;
    margin-bottom: 5px;
    color: white;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .booking-inputs {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #001a33;
        display: none;
        flex-direction: column;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .nav-right {
        display: none;
    }
}

@media (max-width: 600px) {
    .booking-inputs {
        grid-template-columns: 1fr;
    }

    .booking-bar {
        padding: 20px;
    }
}