:root {
    --bs-body-bg: #0b0b0b;
    --bs-body-color: #f8f9fa;
    --primary-color: #0d6efd;
    --secondary-bg: #1a1a1a;
    --card-hover-bg: #212529;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    scroll-behavior: smooth;
}

/* Navbar Customization */
.navbar {
    background-color: rgba(11, 11, 11, 0.9) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    letter-spacing: 1px;
    font-size: 1.5rem;
}

/* Hero Section Styles */
.hero-section {
    min-height: 80vh;
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(13, 110, 253, 0.15) 0%, rgba(11, 11, 11, 0) 40%);
}

.hero-section h1 {
    letter-spacing: -2px;
}

.lead {
    font-weight: 300;
}

/* Project Cards Styles */
.project-card {
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    border-radius: 1rem;
    cursor: default;
}

.project-card:hover {
    transform: translateY(-8px);
    background-color: var(--card-hover-bg);
    border-color: var(--primary-color) !important;
}

.project-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Badge Styles */
.badge {
    padding: 0.6rem 1rem;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 2rem;
    background-color: var(--secondary-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e9ecef;
}

/* Buttons Styles */
.btn-primary {
    border-radius: 0.8rem;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
    transform: scale(1.02);
}

.btn-outline-light {
    border-radius: 0.8rem;
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Link Styles */
a {
    transition: color 0.3s ease;
    text-decoration: none;
}

.text-light:hover {
    color: var(--primary-color) !important;
}

/* Footer Section */
footer {
    padding: 3rem 0;
}

/* Section Spacing */
section {
    position: relative;
    overflow: hidden;
}

/* Small Device Adjustments */
@media (max-width: 768px) {
    .display-2 {
        font-size: 3rem;
    }
    .hero-section {
        padding: 60px 0;
    }
}
