/* Navbar Styles */
.navbar {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-link:hover {
    background: rgba(217, 48, 37, 0.1);
    transform: scale(1.05);
}

.logo-link:active {
    transform: scale(0.95);
}

.logo-icon {
    height: 45px;
    width: auto;
    display: block;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        height: 35px;
    }
}