.header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

/* Desktop Navigation */
.nav-buttons {
    display: flex;
    gap: 2rem;
}

.nav-btn {
    color: white;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.2em;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.nav-btn.active {
    color: white;
    font-weight: 500;
}

.nav-btn:hover {
    color: #c9baaa;
    transition: all 300ms ease-out;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #1b1b1b;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 150;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-btn {
    color: white;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.5em;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 0.5s ease forwards;
}

.mobile-nav-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav-btn:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-nav-btn:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-nav-btn:nth-child(5) {
    animation-delay: 0.5s;
}

.mobile-nav-btn.active {
    color: white;
    font-weight: 500;
}

.mobile-nav-btn:hover {
    color: #c9baaa;
    transform: scale(1.05);
}

.social-button {
    display: inline-block;
    background-color: white;
    border-radius: 50px;
    padding: 12px 25px;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-img {
    width: 40px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon:hover .social-img {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

@media(min-width: 768px) {
    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        z-index: 1;
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 140;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 576px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .nav-buttons {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .nav-btn {
        font-size: 13px;
    }
}

@media (max-width: 1080px) {
    footer {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

