﻿/* Modern Navbar Styles */
.modern-navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 22px;
    color: #1f2937;
    transition: color 0.3s ease;
}

    .navbar-brand:hover {
        color: #CCAC0D;
    }

.logo-modern {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

    .logo-modern:hover {
        transform: scale(1.02);
        filter: drop-shadow(0 4px 8px rgba(204, 172, 13, 0.2));
    }

.nav-link {
    color: #374151;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover {
        color: #CCAC0D;
        background: rgba(204, 172, 13, 0.1);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #CCAC0D;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80%;
    }

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    color: #374151;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
}

    .dropdown-item:hover {
        color: #CCAC0D;
        background: rgba(204, 172, 13, 0.1);
    }

.language-links {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 15px;
    margin-left: 15px;
}

.language-link {
    color: #6b7280;
    font-weight: 600;
    padding: 6px 12px;
    margin: 0 2px;
    border-radius: 16px;
    transition: all 0.3s ease;
    font-size: 14px;
}

    .language-link:hover {
        color: #ffffff;
        background: #CCAC0D;
    }

    .language-link.active {
        color: #ffffff;
        background: #CCAC0D;
    }

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
}

    .navbar-toggler:focus {
        box-shadow: none;
        background: rgba(204, 172, 13, 0.1);
    }

/* Footer Styles */
.modern-footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.footer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .footer-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(204, 172, 13, 0.3);
    }

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0;
    display: block;
    border-radius: 4px;
}

    .footer-link:hover {
        color: #CCAC0D;
        padding-left: 8px;
    }

.social-link {
    color: #CCAC0D;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

    .social-link:hover {
        color: #ffffff;
        transform: translateY(-2px);
        border-color: transparent;
    }

    .social-link.facebook:hover {
        background: linear-gradient(135deg, #1877f2 0%, #3b5998 100%);
    }

    .social-link.instagram:hover {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .social-link.linkedin:hover {
        background: linear-gradient(135deg, #0077b5 0%, #004182 100%);
    }

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


.footer-title {
    color: #f9fafb;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #CCAC0D;
        border-radius: 2px;
    }

.footer-tagline {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    color: #9ca3af;
    font-size: 14px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .language-links {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        text-align: center;
    }

    .dropdown-menu {
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 5px;
    }

    .dropdown-item {
        background: rgba(255, 255, 255, 0.9);
        margin: 5px 0;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .logo-container {
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
}

.language-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #212529;
}

.language-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.navbar-language-flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
}

.dropdown-menu .language-dropdown-item.active {
    background-color: #f0f0f0 !important;
    color: #212529 !important;
    font-weight: bold;
}

    .dropdown-menu .language-dropdown-item.active:hover,
    .dropdown-menu .language-dropdown-item.active:focus {
        background-color: #f0f0f0 !important;
        color: #212529 !important;
    }

/* Add this to your CSS file */
.youtube-nav-link {
    margin-right: 15px; /* Adjust this value as needed */
}

    /* Optional: If you want it to look more like other nav links on hover/active */
    .youtube-nav-link .youtube {
        color: var(--bs-navbar-color); /* Inherit navbar text color */
        text-decoration: none;
        padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    }

        .youtube-nav-link .youtube:hover,
        .youtube-nav-link .youtube:focus {
            color: var(--bs-navbar-hover-color); /* Inherit navbar hover color */
        }