/* Navbar Styles */
.navbar {
    background-color: #552b2d;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 55px;
    z-index: 1000;
    border-bottom: 1px solid var(--accent);
    display: flex;
    align-items: center;
}

.navbar-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.navbar-logo {
    transition: transform 0.3s;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.navbar-links {
    display: flex;
    gap: 15px;
    margin: 0 auto;
}

.navbar-link {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-link:hover {
    background-color: rgba(139, 0, 0, 0.3);
    color: white;
}

.navbar-contacts {
    display: flex;
    gap: 10px;
    align-items: center;
}

.navbar-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: all 0.3s;
    padding: 5px;
}

.navbar-contact:hover {
    background-color: var(--light-accent);
    transform: scale(1.1);
}
