/* /assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #f1f5f9;
    --border-radius: 32px;
    --card-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --hover-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 70px; /* Space for mobile bottom nav */
}

/* Navbar */
.navbar {
    background-color: var(--card-bg) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}
.navbar-brand {
    font-weight: 900;
    color: var(--text-main) !important;
    font-size: 1.25rem;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}
.nav-link {
    font-weight: 600;
    color: var(--text-muted) !important;
    margin: 0 0.5rem;
    font-size: 0.875rem;
}
.nav-link:hover {
    color: var(--text-main) !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.025em;
}
.text-muted {
    color: var(--text-muted) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}
.btn-outline-primary {
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}
.btn-outline-primary:hover {
    background-color: var(--text-main);
    color: var(--card-bg);
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}
.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-3px);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}
.card-title {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background-color: var(--card-bg);
    border-radius: 48px;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: none;
}

/* Hero Heading */
.hero-section h1 {
    font-size: 4.5rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}
.hero-section .text-primary {
    color: var(--primary-color) !important;
}

/* Badges */
.badge {
    border-radius: 6px;
    padding: 0.4em 0.8em;
    font-weight: 600;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 1030;
    padding: 1rem 2rem;
    border-radius: 24px;
    gap: 2rem;
}
.mobile-nav-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mobile-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.mobile-nav-item.active {
    color: #818cf8; /* indigo-400 */
}
.mobile-nav-item:hover {
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 100px;
    }
    .navbar-collapse {
        background: var(--card-bg);
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--card-shadow);
        margin-top: 1rem;
    }
}

/* Forms */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
}
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}
