@font-face { 
    font-family: "pixer"; 
    src: url("/public/assets/fonts/PixerRegular.woff2") format("woff2"); 
    font-weight: normal; 
    font-style: normal; 
}

.navbar {
    font-family: "pixer";
    background: var(--primary);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: height 0.3s ease;
    overflow: hidden;
    height: 60px;
}

.navbar.expanded {
    height: 300px;
}

.navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    height: 60px;
}

.logo {
    letter-spacing: 2px;
    font-family: "pixer";
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between GIF and text */
}

.logo-gif {
    height: 45px; /* Adjust size as needed */
    width: auto;
    vertical-align: middle;
}

/* If you want the logo to be responsive */
@media (max-width: 768px) {
    .logo-gif {
        height: 30px;
    }
}

.hamburger {
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-menu {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.navbar.expanded .navbar-menu {
    opacity: 1;
    transform: translateY(0);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-left: 0px;
}

.nav-links button {
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 8px 0 8px 20px; /* add left padding to make space for the bar */
    position: relative;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: left;
    width: 100%; /* optional, fills container */
}

/* Hover effect: color change + slight padding shift */
.nav-links button:hover {
    color: #007bff;
    padding-left: 30px; /* shift text to right on hover */
}

/* Left bar */
.nav-links button::before {
    content: '';
    position: absolute;
    left: 0;           /* start at the left edge */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

/* Expand bar on hover */
.nav-links button:hover::before {
    width: 15px;
}


.social-icons {
    display: flex;
    gap: 25px;
    padding-left: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

/* Demo content */
.content {
    padding: 40px 20px;
    text-align: center;
}

.content h1 {
    color: #333;
    margin-bottom: 20px;
}

.content p {
    color: #666;
    line-height: 1.6;
}

