/* ChantHub Styles - Minimal, Professional & Calm */

/* Base */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.text-primary {
    color: #5e72e4 !important;
}

/* Hero section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.gradient-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    padding: 5rem 0;
    width: 100%;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Categories */
.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.category-item:hover .category-icon {
    transform: scale(1.1);
}

/* Badge */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}

/* Custom button styles */
.btn-primary {
    background-color: #5e72e4;
    border-color: #5e72e4;
}

.btn-outline-primary {
    color: #5e72e4;
    border-color: #5e72e4;
}

.btn-outline-primary:hover {
    background-color: #5e72e4;
    border-color: #5e72e4;
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.nav-link.active {
    color: #5e72e4 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
}