/* Target the entire site header */
header.site-header {
    background: transparent !important;
    border-bottom: none !important;
    padding: 1.5rem 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Glassy container for the navigation menu list */
header.site-header ul.menu,
.site-navigation ul.menu {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.2rem !important;
    padding: 0.6rem 1.8rem !important;
    background: rgba(16, 185, 129, 0.12) !important; /* Emerald Green Translucent */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    border-radius: 9999px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15) !important;
    list-style: none !important;
    margin: 0 !important;
}

/* Remove default bullet styling and list resets */
header.site-header ul.menu li,
.site-navigation ul.menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: inline-block !important;
}

/* Menu Items link style */
header.site-header ul.menu li a,
.site-navigation ul.menu li a {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 9999px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    display: block !important;
}

/* Hover & Active States */
header.site-header ul.menu li a:hover,
.site-navigation ul.menu li a:hover {
    background: rgba(16, 185, 129, 0.3) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Force Solid White styling for Title (Green Paradise CBD) */
.site-branding .site-title a,
.site-title a,
header.site-header .site-title a {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #ffffff !important;
    display: inline-block !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important; /* PC Font size - Slightly reduced */
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.5)) !important;
    white-space: nowrap !important;
}

/* Ensure no pseudo elements or backgrounds inject logo behind title/tagline */
.site-branding::before,
.site-branding::after,
header.site-header::before,
header.site-header::after {
    display: none !important;
    content: none !important;
}

/* Force Solid White styling for Tagline / Subtitle (Livraison postale partout en France) */
.site-branding .site-description,
.site-description,
header.site-header .site-description {
    color: #ffffff !important;
    font-size: 0.62rem !important; /* PC Font size - Slightly reduced */
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-top: 5px !important;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    white-space: nowrap !important;
}

/* Tablet adjustments */
@media screen and (max-width: 1024px) {
    .site-branding .site-title a,
    .site-title a,
    header.site-header .site-title a {
        font-size: 1.0rem !important; /* Tablet Font size */
    }
    .site-branding .site-description,
    .site-description,
    header.site-header .site-description {
        font-size: 0.58rem !important; /* Tablet Font size */
    }
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
    .site-branding .site-title a,
    .site-title a,
    header.site-header .site-title a {
        font-size: 0.85rem !important; /* Mobile Font size */
    }
    .site-branding .site-description,
    .site-description,
    header.site-header .site-description {
        font-size: 0.5rem !important; /* Mobile Font size */
    }
}
