/* Custom CSS for Ashwamedh Ayurveda */

/* Font styling */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.navbar-brand h4 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}

/* Navigation improvements */
.nav-link {
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    transform: translateY(-1px);
    color: #198754 !important;
}

.navbar-nav .nav-link i {
    margin-right: 5px;
}

/* Search bar styling */
.input-group .form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Button styling */
.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

.btn-outline-success {
    color: #198754;
    border-color: #198754;
}

.btn-outline-success:hover {
    background-color: #198754;
    border-color: #198754;
}

/* Badge styling */
.badge {
    font-size: 0.6rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer styling */
footer a:hover {
    color: #198754 !important;
    transition: color 0.3s ease;
}

/* Toast messages */
.toast {
    min-width: 300px;
}

/* Logo fallback styling */
.navbar-brand img {
    border-radius: 8px;
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #198754;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .navbar-brand h4 {
        font-size: 1.2rem;
    }
    
    .navbar-brand small {
        font-size: 0.7rem;
    }
    
    .input-group {
        width: 200px !important;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
    }
}

/* Ayurveda theme colors */
:root {
    --ayurveda-green: #198754;
    --ayurveda-dark-green: #146c43;
    --ayurveda-gold: #ffc107;
    --ayurveda-brown: #795548;
}
