/* Hide elements initially */
.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
}

/* Show elements */
.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s, visibility 1s;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-x: hidden; /* Hide horizontal scroll bars */
    overflow-y: auto; /* Allow vertical scroll */
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

.welcome-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px; /* Space above content */
}

.shell-box {
    width: 75%;
    font-size: 24px;
    position: relative;
    padding: 20px;
    border: 2px solid #0f0;
    border-radius: 10px;
    background-color: #222;
    box-sizing: border-box;
    color: #fff;
    text-align: left;
    margin-bottom: 20px; /* Space below shell box */
}

.typing {
    white-space: pre-wrap;
    overflow: hidden;
    display: inline-block;
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
    color: #0f0; /* Entire text green */
}

.typing .command {
    color: #0f0; /* Green for root commands */
}

.typing .text {
    color: #fff; /* White for text details */
}

#loading-text {
    font-size: 24px;
    color: #0f0;
    margin-top: 10px;
    display: none; /* Hide initially */
}

#loading-text.visible {
    display: block;
}

#loading-text .loading-dots {
    display: inline-block;
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    80%, 100% {
        opacity: 0;
    }
}

#ascii-art {
    font-size: 14px; /* Adjust size as needed */
    white-space: pre-wrap; /* Maintain formatting */
    color: #ffffff; /* Light gray color for ASCII art */
    margin: 20px 0;
    display: none; /* Hide initially */
}

#ascii-art.visible {
    display: block;
}

#logo-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
}

.logo-detail {
    display: flex;
    align-items: center;
    margin: 20px 0;
    background-color: #222;
    border: 2px solid #0f0;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
}

.logo {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    margin-right: 20px;
}

.details {
    color: #ffffff;
    text-align: left;
    flex: 1;
    line-height: 1.8;
}

.badge-container {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Space above the badges */
}

.badge-placeholder {
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
    background-color: #444; /* Placeholder background color */
    border: 2px solid #0f0;
    border-radius: 50%;
    margin: 0 10px; /* Space between badges */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0; /* Badge text color */
    font-size: 18px; /* Adjust text size as needed */
}

@media (max-width: 768px) {
    .logo-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .badge-container {
        flex-direction: column;
    }

    .badge-placeholder {
        margin: 10px 0; /* Space between badges in column layout */
    }
}
/* Logo Detail Boxes */
.logo-detail {
    display: flex;
    align-items: center;
    margin: 20px 0;
    background-color: #222;
    border: 2px solid #0f0;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect */
.logo-detail:hover {
    transform: scale(1.05); /* Slightly scale up the box */
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.5); /* Add a glowing shadow */
}

/* Badge Container */
.badge-container {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Space above the badges */
}

.badge-placeholder {
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
    background-color: #444; /* Placeholder background color */
    border: 2px solid #0f0;
    border-radius: 50%;
    margin: 0 10px; /* Space between badges */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0; /* Badge text color */
    font-size: 18px; /* Adjust text size as needed */
    transition: background-color 0.3s, transform 0.3s;
}

.badge-placeholder:hover {
    background-color: #0f0; /* Change background on hover */
    color: #222; /* Change text color on hover */
    transform: scale(1.1); /* Slightly scale up the badge */
}
/* General adjustments for a smaller design */
body {
    font-size: 14px; /* Smaller base font size */
    line-height: 1.4;
}

header {
    padding: 10px; /* Reduced padding */
}

.welcome-message {
    margin-top: 10px; /* Reduced margin */
}

.shell-box {
    margin-top: 60px;
    width: 85%; /* Reduced width */
    font-size: 18px; /* Smaller font size */
    padding: 20px; /* Reduced padding */
    border-width: 1px; /* Thinner border */
    border-radius: 8px; /* Slightly reduced border radius */
    margin-bottom: 15px; /* Reduced margin */
}

.typing {
    font-size: 18px; /* Smaller font size */
}

#loading-text {
    font-size: 18px; /* Smaller font size */
    margin-top: 5px; /* Reduced margin */
}

#ascii-art {
    font-size: 12px; /* Smaller ASCII art */
    margin: 10px 0; /* Reduced margin */
}

#logo-details {
    max-width: 900px; /* Reduced max width */
}

.logo-detail {
    padding: 15px; /* Reduced padding */
    width: 100%; /* Full width */
    max-width: 900px; /* Adjusted max width */
    margin: 15px 0; /* Reduced margin */
}

.logo {
    width: 80px; /* Smaller logo size */
    height: 80px; /* Smaller logo size */
    margin-right: 15px; /* Reduced margin */
}

.details {
    line-height: 1.6; /* Adjust line height */
}

.badge-container {
    margin-top: 15px; /* Reduced margin */
}

.badge-placeholder {
    width: 60px; /* Smaller badge size */
    height: 60px; /* Smaller badge size */
    font-size: 16px; /* Smaller font size */
    margin: 0 8px; /* Reduced margin */
}
.badge-container {
    display: flex;
    justify-content: center;
    margin-top: 15px; /* Space above the badges */
}

.badge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; /* Adjust to match the size of the circle */
    height: 90px; /* Adjust to match the size of the circle */
    margin: 0 10px; /* Space between badges */
    border: 2px solid #0f0; /* Border color */
    border-radius: 60%; /* Circular container */
    overflow: hidden; /* Ensure images fit within the circle */
    text-decoration: none; /* Remove default link underline */
    transition: transform 0.3s ease; /* Smooth scaling effect */
}

.badge-image {
    width: 100%; /* Fill the circle */
    height: 100%; /* Fill the circle */
    object-fit: cover; /* Ensure image covers the circle */
    border-radius: 30%; /* Ensure image is circular */
}

.badge-link:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}
/* Back Button Styling */
.back-button {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.back-button:hover {
    background-color: #555;
}

/* Logo Styling */
.logo {
    border: 2px solid #333; /* Adjust border color as needed */
    border-radius: 5px;
    padding: 5px;
    max-width: 100%; /* Ensure logos are responsive */
    height: auto;
}

.badge-link {
    display: inline-block;
    margin: 10px;
}

.badge-image {
    border: 2px solid #333; /* Adjust border color as needed */
    border-radius: 3px;
    padding: 5px;
    max-width: 100px; /* Adjust size as needed */
    height: auto;
}
/* Back Button Styling */
.back-button {
    position: fixed;
    top: 100px;
    left: 10px;
    padding: 10px 20px;
    background-color: transparent; /* Transparent background */
    color: #00FF00; /* Green font color */
    text-decoration: none;
    border: 2px solid #00FF00; /* Green border */
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 12px; /* Smaller font size */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.back-button:hover {
    background-color: #00FF00; /* Green background on hover */
    color: #000; /* Black text color on hover */
}

/* Logo Styling */
.logo {
    border: 2px solid #00FF00; /* Green border */
    border-radius: 5px;
    padding: 5px;
    max-width: 100%; /* Ensure logos are responsive */
    height: auto;
    transition: border-color 0.3s; /* Smooth transition for border color */
}

.logo:hover {
    border-color: #8bfc8b; /* Darker green border on hover */
}

/* Badge Container */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Spacing between badges */
    align-items: center; /* Vertically align badges */
    justify-content: center; /* Center badges horizontally */
}

/* Badge Image Styling */
.badge-link {
    display: inline-block;
}

.badge-image {
    border: 0px solid #00FF00; /* Green border */
    border-radius: 1px;
    padding: 8px;
    max-width: 65px; /* Adjust size as needed */
    height: auto;
    transition: border-color 0.3s; /* Smooth transition for border color */
}

.badge-link:hover .badge-image {
    border-color: #00CC00; /* Darker green border on hover */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 4px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #000000; /* Track color */
}

::-webkit-scrollbar-thumb {
    background: #00FF00; /* Thumb color */
    border-radius: 2px; /* Rounded corners for thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #00CC00; /* Darker green on hover */
}
#menu-bar {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin: 0;
    width: 100%;
    background-color: #181616;
    padding: 3px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-link {
    color: #0f0;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 2px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #0f0;
    color: #000000;
}


