:root {
    --primary: #EF7B0A;
    --secondary: #2D4A71;
}

/* Only keep custom styles that override Bootstrap */
.site-header {
    border-bottom: 3px solid var(--primary);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary);
}

.header-logo:hover {
    color: var(--secondary);
    text-decoration: none;
}

.header-logo .logo {
    height: 150px;  /* Changed from 40px to 60px */
    width: auto;
    margin-right: 1rem;
}

.header-logo h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

/* Custom Navbar */
.custom-navbar {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2c44 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-navbar .nav-link {
    color: white !important;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.custom-navbar .nav-link i {
    margin-right: 6px;
}

/* Add mobile navbar styles */
.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(239, 123, 10, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-navbar .navbar-toggler {
    border-color: rgba(239, 123, 10, 0.5);
}

/* Ensure nav links are visible on mobile */
@media (max-width: 768px) {
    .custom-navbar .nav-link {
        color: white !important;
        padding: 1rem 1.5rem !important;
    }
    
    .custom-navbar .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Map Styles */
#map {
    height: 500px;
    border-radius: 4px;
}

.custom-popup .leaflet-popup-content-wrapper {
    max-height: 400px;
    border-radius: 8px;
}

.custom-popup img {
    max-width: 80px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-logo .logo {
        height: 45px;  /* Changed from 32px to 45px for mobile */
    }
    
    .header-logo h1 {
        font-size: 1.25rem;
    }

    #map {
        height: 300px;
    }
}
