/**
 * Header Navigation Widget Styles
 */

.angie-header-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.angie-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    /* Default rounded style from image */
    border-radius: 50px; 
    padding: 10px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    direction: ltr; /* Ensure LTR structure: Left (icons) -> Center (Logo) -> Right (Menu) as per image request */
}

/* Force override if site is RTL but user wants this specific LTR layout from image */
/* Or, if the user requested "Right side menu" in Hebrew context, we should respect RTL. 
   The request said: 
   1. Logo Center
   2. Right side: Menu + Search
   3. Left side: 3 Icons
   
   In RTL (Hebrew): Right is start, Left is end.
   In LTR (English): Left is start, Right is end.
   
   The image shows: Icons (Left) --- Logo (Center) --- Search+Menu (Right)
   Let's align flex items accordingly.
*/

.angie-header-left,
.angie-header-right {
    display: flex;
    align-items: center;
    flex: 1; /* Equal space */
    gap: 15px;
}

.angie-header-left {
    justify-content: flex-start; /* Left side */
}

.angie-header-right {
    justify-content: flex-end; /* Right side */
}

.angie-header-center {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* Logo */
.angie-header-logo img {
    display: block;
    max-height: 50px;
    width: auto;
}

.angie-header-logo-text {
    font-family: "Cursive", sans-serif; /* Fallback cursive font */
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

/* Icons Common */
.angie-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.angie-header-icon i {
    font-size: 20px;
}

/* Circle Style */
.angie-header-icon.style-circle {
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.angie-header-icon.style-circle:hover {
    border-color: #000;
    background-color: #f9f9f9;
}

/* Menu Button */
.angie-header-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.angie-header-menu-btn:hover {
    border-color: #000;
    background-color: #f9f9f9;
}

.angie-header-menu-btn .menu-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.angie-header-menu-btn i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .angie-header-container {
        padding: 10px 15px;
        flex-wrap: wrap;
        border-radius: 0; /* Full width on mobile usually */
    }
    
    .angie-header-left {
        order: 2;
        justify-content: center;
        margin-top: 10px;
    }
    
    .angie-header-right {
        order: 3;
        justify-content: center;
        margin-top: 10px;
    }
    
    .angie-header-center {
        order: 1;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .menu-text {
        display: none; /* Hide text on mobile to save space */
    }
}
