* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Grotesk, sans-serif;
}

@font-face {
    font-family: Grotesk;
    src: url(CabinetGrotesk-Variable.ttf);
}

#navbar-placeholder {
    height: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background-color: #1C1C1C;
    position: relative;
    z-index: 1000;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1C1C1C;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.navbar.hidden {
    opacity: 0;
}

.navbar-logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo-container a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
}

.navbar-logo {
    height: 40px;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #FFA500;
}

.navbar-links a.active {
    color: #FFA500;
}

.contact-btn {
    background: linear-gradient(90deg,#FFD700, #EE476F);
    color: black;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
}

@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .hamburger {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 400px;
        background-color: #1C1C1C;
        flex-direction: column;
        padding: 80px 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .navbar-links.active {
        right: 0;
    }

    .contact-btn {
        display: none;
    }
}