/* Navigation Styles */
:root {
    --primary-color: #e08611;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --white: #ffffff;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
    margin: 0 10px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(224, 134, 17, 0.1);
}

.language-switch {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switch:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Social Media in Navigation */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 20px;
}

.navbar-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.navbar-social-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-social-link.facebook:hover {
    background: #3b5998;
}

.navbar-social-link.youtube:hover {
    background: #ff0000;
}

.navbar-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar-nav {
        background: var(--white);
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .navbar-social {
        justify-content: center;
        margin: 15px 0;
        gap: 20px;
    }
}

/* Ensure content doesn't overlap with fixed navbar */
.main-content {
    margin-top: 100px;
} 