/* --- TEA: Bamboo Style (Vertical Ribs) --- */
/* A vertical two-tone stripe that looks like bamboo segments or a sushi mat. 
   Visible even in very thin bars. */
.teabar {
    background-color: #556B2F; /* Sage Green */
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 5px,
        rgba(255, 255, 255, 0.15) 5px,
        rgba(255, 255, 255, 0.15) 7px
    );
    background-position: center;
    color: white;
}

/* --- COFFEE: Filter Mesh (Cross-Hatch) --- */
/* A tight diagonal cross pattern that mimics a coffee filter or jute bag texture. */
.coffeebar {
    background-color: #3E2723; /* Espresso Brown */
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.1) 0px,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 6px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.1) 0px,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 6px
        );
    background-position: center;
    color: white;
}

/* --- WINE: Modern Chic (Horizontal Lines) --- */
/* Clean horizontal pinstripes. A classic "Bar" look that feels premium and glossy. */
.winebar {
    background-color: #800020; /* Burgundy */
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.15) 1px, 
        transparent 1px
    );
    background-size: 100% 6px; /* Repeats every 6px vertically */
    background-position: center;
    color: white;
}

/* Keep the whitebar untouched */
.whitebar{
    background-color: rgb(255, 255, 255);
    background-repeat: repeat-x;
    background-position: center;
    z-index: 8000; 
}
.whitebar .nav--links{
    color: #0000007a;
}
.whitebar .meun_bar{
    box-shadow: 0 0 0 0;
    border: none;
}
.whitebar .nav--link:hover{
    text-shadow: #fff 1px 0 10px;
    color: rgb(0, 0, 0);
    border-radius: 0.5rem;
}
.meun_bar{
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(4px);
    height: 3rem;
    width: min(800px, 100%);
    display: flex;
    justify-content: center;
    padding: 0 5%;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    border-radius: 10px;
    margin: 0px auto;
    position: relative;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: AileronThin;
    z-index: 8000;
}

.nav--links{
    display: flex;
    gap: 4rem;
    height: 3rem;
    margin: 0;
    padding: 0;
    color: #ffffffd3;
}

.nav--link, .drop-down li {
    list-style: none;
    height: 100%;
    padding: 0.5rem 0.5rem;
    font-weight: 600;
    cursor: pointer;
    
}

.nav--links li a {
    position: relative;
    text-decoration: none;
    color: currentColor;
    
}
.nav--links li .nav--link a{
    font-size: min(16px, 14px);
}
.drop-down {
    position: relative;
    padding: 0.5rem 0;
    margin: 0.75rem -0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(50px);
    color: rgb(0, 0, 0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    font-size: 12px;
    display: none;
    width: 108px;
    font-weight: 100;
    font-family: AileronThin;
}
.drop-down li{
    margin: 2px 0;
}
.nav--link:hover{
    text-shadow: #fff 1px 0 10px;
    color: white;
    border-radius: 0.5rem;
}
.drop:hover .drop-down{
    display: block;
    
}
.nav--link .bx-chevron-down{
    font-size: 20px;
    position: relative;
    right: 4px;
    bottom: -4px;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out all;
}
.drop:hover .bx-chevron-down{
    transform: rotate(180deg);
}

.drop-down li a {
    display: flex;
    justify-content: start;
}
.drop-down li a::before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.39);
    transition: all .5s;
}
.drop-down li a:hover::before{
    width:100%;
}

@media only screen and (max-width: 430px) {
    .nav--links{
        display: flex;
        height: 3rem;
        gap: 1rem;
        margin: 0;
        padding: 0;
        color: #ffffffd3;
        font-size: 18px;
    }
    .nav--link .bx-chevron-down{
        display: none;
    }
    .drop-down {
        position: absolute;
        z-index: 8000 !important;
        padding: 0.5rem 0;
        margin: 0 -1em;
        margin-top: 0.8rem;
        background: linear-gradient( rgb(255, 255, 255), rgb(255, 255, 255));;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        color: rgb(0, 0, 0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0.5rem;
        font-size: 12px;
        display: none;
        width: fit-content;
    }
}