/* General Body Styling */
body {
    background-color: #000000; /* Black background for terminal feel */
    color: #33FF33; /* Bright green terminal text */
    font-family: 'Courier New', Courier, monospace; /* Monospace font for that terminal look */
    padding: 20px;
    padding-top: 70px;
    margin: 0;
}

/* Terminal Container */
.terminal {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Header Styling */
h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

/* Intro Text */
p {
    font-size: 24px;
    margin: 0;
}

/* Terminal Commands */
.commands {
    margin-top: 40px;
}

.commands p {
    font-size: 18px;
    margin-bottom: 10px;
}

.commands ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 20px;
}

.commands ul li {
    margin-bottom: 10px;
}

.commands ul li a {
    color: #33FF33; /* Terminal green links */
    text-decoration: none; /* Remove underline from links */
}

.commands ul li a:hover {
    text-decoration: underline; /* Add underline on hover for a slight effect */
}

/* Blinking Cursor Effect */
.blink-cursor {
    display: inline-block;
    font-size: 24px;
    margin-left: 5px;
    animation: blink 1s step-start infinite;
}

/* Style the "About Me" heading */
h2 {
    color: #33FF33; /* Terminal green */
    font-family: 'Courier New', Courier, monospace; /* Keep the terminal look */
    font-size: 48px;
}

/* Ensure the card body text is black for readability */
.card-body p, .card-body h5 {
    font-family: 'Courier New', Courier, monospace;
    padding: 10px; /* Match the aesthetic */
}
/* Reduce padding and margin for smaller card size */
.card {
    height: auto; /* Let the card adjust its height dynamically based on content */
    padding: 10px; /* Reduce padding */
    margin-bottom: 20px; /* Reduce bottom margin between cards */
    border-radius: 8px; /* Slight border radius for clean look */
    background-color: #000000 !important; /* Black background for the card */
    color: #33FF33 !important; /* Green text inside the card */
    border: 1px solid #33FF33;
}

/* Reduce image size */
.card-img-top {
    height: auto; /* Adjust height as needed */
    width: 100%;
    object-fit: cover;
    border-radius: 8px /* Ensures the image covers the space without distortion */
}

/* Adjust text size and margin */
.card-text {
    font-size: 16px; /* Smaller font size to reduce overall size */
    line-height: 1.4; /* Maintain readability */
    color: #33FF33 !important;
}

/* Adjust card title */
.card-title {
    font-size: 18px; /* Slightly reduce title size */
    color: #33FF33 !important;
}

.project-section {
    margin-bottom: 30px;
}

/* Code snippet styling */
pre {
    background-color: #1a1a1a;
    color: #33FF33;
    padding: 10px;
    border-radius: 5px;
}

/* Navbar customization */
.navbar {
    background-color: #000000 !important; /* Black background */
}

.navbar .nav-link, .navbar .navbar-brand {
    color: #33FF33 !important; /* Green text */
}

.navbar .dropdown-menu {
    background-color: #000000; /* Black dropdown menu */
}

.navbar .dropdown-item {
    color: #33FF33 !important; /* Green dropdown item */
}

.navbar .dropdown-item:hover {
    background-color: #1a1a1a !important; /* Slightly lighter black hover effect */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2851, 255, 51, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}