@import url('root.css');

 
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/image_assets_web/images.jpeg'); /* Set your background image */
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Blur effect */
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background_color);
    z-index: -1;
}


.content{
    display: flex;
    justify-content: center;
    background-color: transparent;
    height: 500px;
    width: 100%;
}

.contenr-menu-text{
    background-color: transparent;
    height: 100%;
    width: 50%;
    display: grid;
    justify-content: center;
    justify-items: center;
    align-content: center;
}
.lang-selector-a{
    background-color: transparent;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 50%;
    align-content: center;
}
.lang-tag-href-{
    font-family: 'Unisirwan Zak Bold';
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #2a4441a2;
    font-size: 25px;
 
    color: var(--textlangcolor);
    border: solid 1px rgba(255, 255, 255, 0.5);  
    text-align: center;
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 45px;
    padding-right: 45px;
    border-radius: 25px;
 
    margin-top: 30px;
}


.contenr-menu-text span{
    padding: 0px;
    margin: 0px;
}
.tag-m{
    color: var(--textlangcolor);
    font-size: 130px;
    position: relative;
    padding: 0px;
    margin: 0px;
    top: 50px;
    
    font-family: 'GeorgeRegular', sans-serif;
}
.tag-e{
    color: var(--textlangcolor);
    font-size: 130px;
    position: relative;
    left: 50px;
    padding: 0px;
    margin: 0px;
    font-family: 'GeorgeRegular', sans-serif;
    top: -11px;
}
.tag-n{
    color: var(--textlangcolor);
    font-size: 130px;
    position: relative;
    padding: 0px;
    margin: 0px;
    top: -73px;
    left: 3px;
    font-family: 'GeorgeRegular', sans-serif;
}
.tag-u{
    color: var(--textlangcolor);
    font-size: 130px;
    padding: 0px;
    margin: 0px;
    position: relative;
    top: -133px;
    left: 57px;
    font-family: 'GeorgeRegular', sans-serif;
    
}
 
 

/* Footer styling */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    
    background-color: transparent;
    color: white;
    display: grid;
    text-align: center;
   
}
 
.cafe-cavalli{
    position: relative;
    font-size: 40px;
 
    text-transform: capitalize;
    font-family: 'GeorgeRegular', sans-serif;
}
.cafe-rest{
    position: relative;
    font-size: 15px;
    text-transform: capitalize;
    font-family: 'GeorgeRegular', sans-serif;
}

.social_url{
    display: flex;
    justify-content: space-evenly;
    height: auto;
    background-color: transparent;
    bottom: 20px;
    position: relative;
    width: 100%;
}

.list_for_headers{
    position: absolute;
    top: 0px;
    height: 50px;
    padding: 5px;
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: flex-end;
}

.notification_btn{
   margin-right: 20px;
   margin-top: 10px;
    position: relative;
    background-color: transparent;
    height: 50px;
    width: 50px;
    outline: solid 0px;
    border: solid 0px;
}

.menu {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: #ff4d6d;
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 10;
}



.decorations {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-around;
    top: -100px;
    animation: dropDown 2s ease-out forwards;
}
.fanous-container {
    position: relative;
}
.fanous {
    width: 50px;
    height: 80px;
    position: relative;
    background: linear-gradient(to bottom, #ffd700, #b8860b);
    border-radius: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.fanous::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    width: 2px;
    height: 80px;
    background-color: #ffd700;
    transform: translateX(-50%);
}
.fanous::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    width: 15px;
    height: 15px;
    background-color: #b8860b;
    border-radius: 50%;
    transform: translateX(-50%);
}
.fanous-light {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgb(252 253 255), rgba(255, 223, 0, 0) 80%);
    border-radius: 50%;
    animation: lightGlow 2s infinite alternate;
}
.moon-container {
    position: relative;

    height: 100px;
}
.moon {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: -25px 10px 0px 0px #EFD19F; /* Direction changed to right */
}
@keyframes dropDown {
    0% { top: -100px; opacity: 0; }
    100% { top: 80px; opacity: 1; }
}
@keyframes lightGlow {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}
/* Heart container (No touch interference) */

