/* --- main.css --- */
html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa !important;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.container {
    flex: 1;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.price-orange {
  color: #e67300; /* nebo tvoje menu oranžová */
  font-size: 1.1rem;
  font-weight: bold;
}

.car-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.car-meta {
  font-size: 0.95rem;
}

.rezervace-badge {
  position: absolute;
  top: 10px;
  left: 8px;
  background-color: #e67300; /* <- tady si nastavíš vlastní barvu */
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 400;
  border-radius: 3px;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.8px;
}

.btn-moje-orange {
  background-color: #e67300;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 400;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-moje-orange:hover {
  background-color: #cc5c00;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cursor-pointer {
    cursor: pointer;
  }

/* --- header.css --- */
.logo-img {
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

.mobile-logo-img {
    max-height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.nav-link {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.1rem; /* větší písmo */
    padding: 0.7rem 1.3rem;
    margin-right: 1rem; 
    transition: background-color 0.2s, color 0.2s;
}

.nav-link:hover {
    background-color: #e67300; /* ORANŽOVÁ na hover */
    color: #fff;
    border-radius: 0.25rem;
}

.nav-link.active {
    background-color: #e67300; /* ORANŽOVÁ pro aktivní odkaz */
    color: #fff !important;
    border-radius: 0.25rem;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
    background-color: #e67300;
    color: #fff;
    border-radius: 0.25rem;
}

/* Burger tlačítko – centrované */
.navbar-toggler {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Vycentrování menu textu při rozbalení (mobil) */
@media (max-width: 767.98px) {
    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 0.8rem;
    }
}

/* --- footer.css --- */
footer.footer {
    background-color: #000;
    color: #ccc;
    padding: 1.5rem 0;
    text-align: center;
    width: 100%;
    font-size: 0.85rem; /* men?? text */
    font-weight: 300;   /* tenk? p?smo */
}