/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none; /* Initially hidden on desktop */
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.bottom-nav-item span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #f8bf02;
}

/* Responsive styles to show bottom nav on mobile */
@media (max-width: 768px) {
    .bottom-nav {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind bottom nav */
    body {
        padding-bottom: 65px;
    }
}

/* Language Switcher */
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.lang-btn.active {
    color: #f8bf02;
    font-weight: 600;
}

.lang-btn:hover:not(.active) {
    color: #fff;
}

.lang-separator {
    color: #666;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-bottom: 5px;
    }
    
    .top-right {
        flex-direction: column;
        gap: 5px;
    }
}

/* RTL Support for Amharic */
html[dir="rtl"] body {
    font-family: 'Noto Sans Ethiopic', 'Nyala', sans-serif;
}

html[dir="rtl"] .top-contact {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-item i {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] .footer-contact p i {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .book-btn {
    margin-left: 0;
    margin-right: 15px;
}

html[dir="rtl"] .footer-info h3::after,
html[dir="rtl"] .footer-links h3::after,
html[dir="rtl"] .footer-social h3::after,
html[dir="rtl"] .footer-newsletter h3::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer-links a {
    padding-left: 0;
    padding-right: 15px;
}

html[dir="rtl"] .footer-links a::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .feature-icon {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .car-feature i {
    margin-right: 0;
    margin-left: 5px;
}

html[dir="rtl"] .filter-label {
    margin-right: 0;
    margin-left: 10px;
}

/* Fix for input directions */
html[dir="rtl"] input,
html[dir="rtl"] textarea {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .newsletter-form button {
    border-radius: 4px 0 0 4px;
}

html[dir="rtl"] .newsletter-form input {
    border-radius: 0 4px 4px 0;
}

/* Mobile menu RTL adjustments */
@media (max-width: 768px) {
    html[dir="rtl"] .nav-links {
        flex-direction: column;
        align-items: flex-end;
    }
    
    html[dir="rtl"] .filter-group {
        flex-direction: row-reverse;
    }
} 