@font-face {
    font-family: 'basis33.regular';
    src: url('basis33.regular.ttf') format('truetype');
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff69b4;
    --switch-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'basis33.regular', 'Courier New', Courier, monospace;
    font-size: 16px;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
    text-rendering: pixelated;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

/* Mascot */
.mascot-container img {
    image-rendering: pixelated;
    width: 180px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    margin-top: 100px;
    /* Base position moved lower */
}

/* Title Wings */
.title-wings img {
    image-rendering: pixelated;
    width: 280px;
    /* Larger as it is the title */
    height: auto;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}

.nav-btn:hover {
    transform: scale(1.2) !important;
}

.nav-btn img {
    image-rendering: pixelated;
    width: 140px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

/* Stagger button floats */
#projects-btn img {
    animation-delay: 0.2s;
}

#info-btn img {
    animation-delay: 0.4s;
}

#contact-btn img {
    animation-delay: 0.6s;
}

/* Content List (Expandable) */
.content-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s;
    opacity: 0;
    margin-top: 1rem;
    width: 800px;
    /* Wider shared area to prevent wrapping */
    font-size: 24px;
    text-align: center;
}

.content-list.active {
    max-height: 500px;
    opacity: 1;
    padding: 10px;
}

/* Project Entry Styling */
.project-entry a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.project-entry a:hover {
    transform: scale(1.02);
    color: #00FF00;
}

.project-img {
    width: 250px;
    /* Bigger image */
    height: auto;
}

.project-title {
    text-align: left;
}

/* Info Section Styling */
.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.info-img {
    width: 120px;
    height: auto;
    transition: transform 0.2s;
}

.info-img:hover {
    transform: scale(1.05);
}

.content-list ul {
    list-style: none;
}

.content-list li {
    margin-bottom: 5px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .nav-buttons {
        flex-direction: column;
    }
}