/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com/
 Description: Child theme di Hello Elementor
 Author: Americo Iacovizzi
 Author URI: https://example.com/
 Template: hello-elementor
 Version: 1.0.0
 Text Domain: hello-elementor-child
*/
.site-header .site-branding .site-logo img {
  width: 100px !important;
  max-width: 100px !important;
  height: 100px !important;
}

/* Container */
.site-language {
    position: relative;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* List */
#menu-language {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(6px);
}

/* Items */
#menu-language .lang-item {
    list-style: none;
}

/* Links */
#menu-language a {
    display: block;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 999px;
    transition: 
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover */
#menu-language a:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* Active language */
#menu-language .current-lang a {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobile friendly */
@media (max-width: 768px) {
    #menu-language a {
        padding: 6px 10px;
        font-size: 13px;
    }
}
