* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Статичен бекграунд */
    background-image: url('../img/bg-car.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    min-height: 100vh;
}

/* По-светъл слой за по-добра четимост */
.content-wrapper {
    background-color: rgba(255, 255, 255, 0.85); 
    min-height: 100vh;
    padding: 20px;
}

/* Навигация с топли цветове */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-bottom: 3px solid #e55a2b;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

.lang-switch a {
    font-size: 0.9rem;
    padding: 5px 10px;
}

/* Hero секция с топли акценти */
.hero-section {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
}

.hero-section h1 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 1.3rem;
    color: #555;
    margin: 20px 0;
    line-height: 1.6;
}

/* Бутон с топъл градиент */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-top: 20px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

/* Секция за коли */
#fleet {
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

#fleet h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Footer с по-топъл цвят */
footer {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    margin-top: 50px;
    color: #fff;
    font-weight: 500;
}

/* Адаптивност за мобилни устройства */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
}

/* Езиков превключвател в навигацията */
.lang-switch a {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-switch a.active {
    background: rgba(255,255,255,0.3);
    font-weight: bold;
    color: #fff;
}

.lang-switch a:hover {
    background: rgba(255,255,255,0.2);
    transform: none;
}

/* Адаптивност за мобилни */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .lang-switch {
        order: 3;
        width: 100%;
        text-align: center;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.3);
    }
}

/* ========== НАВИГАЦИЯ ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-bottom: 3px solid #e55a2b;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.logo a:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Езиков превключвател */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 20px;
}

.lang-switch .lang-icon {
    font-size: 1rem;
}

.lang-switch a {
    padding: 4px 8px;
    font-size: 0.85rem;
}

.lang-switch a.active {
    background: rgba(255,255,255,0.3);
    font-weight: bold;
}

.lang-switch .separator {
    color: rgba(255,255,255,0.5);
    margin: 0 3px;
}

/* Бутони за вход/изход в навигацията */
.btn-logout-nav {
    background: #d63031 !important;
    padding: 8px 18px !important;
}

.btn-logout-nav:hover {
    background: #e84118 !important;
}

.btn-login-nav {
    background: rgba(255,255,255,0.2) !important;
    padding: 8px 18px !important;
}

/* Адаптивност за мобилни */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .lang-switch {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* ========== БУТОН ЗА АДМИН ПАНЕЛ ========== */
.btn-admin-nav {
    background: rgba(255,255,255,0.25) !important;
    padding: 8px 18px !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    animation: pulse-admin 2s infinite;
}

.btn-admin-nav:hover {
    background: #fff !important;
    color: #ff6b35 !important;
    border-color: #fff !important;
}

/* Анимация за привличане на вниманието */
@keyframes pulse-admin {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ========== ОСТАНАЛИТЕ СТИЛОВЕ (запази ги) ========== */
.btn-logout-nav {
    background: #d63031 !important;
    padding: 8px 18px !important;
}

.btn-logout-nav:hover {
    background: #e84118 !important;
}

.btn-login-nav {
    background: rgba(255,255,255,0.2) !important;
    padding: 8px 18px !important;
}

/* Стил за валутния символ */
.currency-symbol {
    font-weight: bold;
    color: #ff6b35;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
}

.price-tag .currency-symbol {
    font-size: 1.4rem;
    margin-left: 5px;
}

/* ========== УНИФИЦИРАНИ БУТОНИ ========== */

/* Основен бутон (Primary) - за основни действия */
.btn,
.btn-primary,
.btn-book,
.btn-submit,
.btn-login {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn:hover,
.btn-primary:hover,
.btn-book:hover,
.btn-submit:hover,
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

/* Вторичен бутон (Secondary) - за второстепенни действия */
.btn-secondary,
.btn-details,
.btn-back,
.btn-cancel {
    display: inline-block;
    padding: 12px 30px;
    background: #f8f9fa;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-details:hover,
.btn-back:hover,
.btn-cancel:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    background: #fff;
}

/* Опасен бутон (Danger) - за изтриване/изход */
.btn-danger,
.btn-delete,
.btn-logout,
.btn-logout-nav {
    display: inline-block;
    padding: 12px 30px;
    background: #d63031;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover,
.btn-delete:hover,
.btn-logout:hover,
.btn-logout-nav:hover {
    background: #e84118;
    transform: translateY(-2px);
}

/* Успешен бутон (Success) - за редактиране/запазване */
.btn-success,
.btn-edit {
    display: inline-block;
    padding: 12px 30px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success:hover,
.btn-edit:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Бутон за навигация (Login/Admin) */
.btn-login-nav {
    background: rgba(255,255,255,0.2) !important;
    padding: 8px 18px !important;
}

.btn-admin-nav {
    background: rgba(255,255,255,0.25) !important;
    padding: 8px 18px !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
}

/* Малки бутони (за таблици) */
.btn-sm {
    padding: 6px 15px;
    font-size: 0.85rem;
}

/* Бутони в grid/flex контейнери */
.btn-full {
    width: 100%;
    display: block;
}

