body {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    background-color: #181414;

    min-height: 100vh; 
    
    
}
html {
    scroll-behavior: smooth;
}
/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1a1a;
    padding: 5px;

    background-color: rgba(30, 26, 26, 0.8);
    

    position: relative; /* Ensure it is positioned above other elements */
    z-index: 10; /* Higher z-index to appear above the background */
}

.navbar-left img.logo,
.navbar-right .navigation li a {
    position: relative; /* Keeps them unaffected by parent's transparency */
    z-index: 1; /* Ensures they stay fully opaque */
}

.navbar-left {
    flex: 1;
}
.navbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-right: 50px; /* Matches the left margin of the logo */
}

.logo {
    height: auto;
    width: 5%;

    padding-left: 30px;
    padding-right: 100px;
}
.navigation {
    list-style-type: none;
    margin: 5;
    padding: 0;
}
.navigation li {
    display: inline-block;
    margin-right: 10px;
}
.navigation li a {
    text-decoration: none;
    color: #efefef;
}

/* Hamburger button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #efefef;
}

/* Main content */
/* Header */
.header-title{
    color: #efefef;
    text-align: center;
    padding: 50px;
    font-size: 2em;
}
.header-title-1{
    color: #efefef;
    text-align: center;
    padding-top: 50px;
    font-size: 2em;
    padding-bottom: 2px;
}
.header-title-2{
    color: #efefef;
    text-align: center;
    padding-top: 2px;
    font-size: 1.5em;
}
header, .content {
    flex: 1; 
}



/* Footer Styling */
footer {
    background-color: rgba(30, 26, 26, 0.8); /* Slight opacity for background */
    color: #efefef;
    text-align: center;
    padding: 20px 10px;
    margin-top: 50px;
    font-family: 'IBM Plex Mono', monospace;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-copywrite {
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adjust gap for spacing */
}

.footer-links a {
    color: #efefef;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8; /* Slightly faded by default */
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: '|'; /* Add a separator */
    color: #efefef; /* Same color as links */
    opacity: 0.5; /* Slightly faded separator */
    margin-left: 10px;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 1; /* Fully visible on hover */
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 20px; /* Increased gap between icons */
}

.footer-socials a img {
    width: 25px;
    height: 25px;
    opacity: 0.8; /* Slightly faded by default */
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-socials a img:hover {
    transform: scale(1.2);
    opacity: 1; /* Fully visible on hover */
    filter: brightness(1) invert(1); /* Keep them white but brighter */
}


/* Main content */
header, .content {
    grid-row: 2; /* Explicitly place content in the middle row */
    overflow-y: auto; /* Allow scrolling if content is taller than the viewport */
}

/* Optional styling for smooth scrolling content */
.content {
    padding: 20px;
}


/* PreOrder Button */
.preorder-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.preorder-button {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    color: #ffffff; /* Fully opaque white text */
    font-size: 1.2em;
    font-weight: bold;
    padding: 8px 20px;
    border: 1px solid #ffffff; /* White border */
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;

}

.preorder-button:hover {
    background: rgba(255, 255, 255, 0.3); /* Slightly less transparent on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.preorder-button:active {
    transform: scale(0.95); /* Slight shrink effect when clicked */
}

/* For smaller screens - hamburger menu */
@media (max-width: 768px) {
    .navigation {
        display: flex;
        flex-direction: column;
        background-color: #181414;
        position: absolute;
        top: 60px; /* Adjust based on navbar height */
        right: 10px;
        padding: 10px;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease; /* Smooth transition */
    }

    .navigation li {
        display: block;
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .navigation.show {
        max-height: 300px; /* Adjust based on expected menu height */
    }

    .logo {
        width: auto; /* Maintain aspect ratio */
        height: 50px; /* Set a fixed height that works well for small screens */
        padding-left: 20px; /* Adjust padding to fit smaller viewports */
    }
}



/*announcements*/
.announcement {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 15px;
    margin: 20px auto;
    border-radius: 8px; /* Rounded corners */
    width: 80%; /* Centered and responsive */
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    animation: fadeIn 1.5s ease-in-out; /* Smooth fade-in effect */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

