.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: 0.4s;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.logo img {
    width: 170px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
}

/* Tablet */

@media(max-width:992px) {

    .navbar {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #111;
        transition: 0.4s;
        padding: 40px;
    }

    .navbar.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
    }

    .hamburger {
        display: flex;
    }

    .header .btn {
        display: none;
    }
}

.active-link {
    color: var(--primary-gold) !important;
}

.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.studio-card,
.feature-card,
.service-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(40px);
}