@font-face {
  font-family: 'Frutiger';
  src: url('../fonts/Frutiger LT Arabic 65 Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
    background:#04615C;
    background: url('../img/main-bg.png');
    background-position: center;
    background-size: cover;
  
    height: 100vh;
  font-family: 'Frutiger', sans-serif;
}
/* Loader container (fullscreen) */
#page-loader {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 97, 92, 0.9); /* match your theme */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Loader animation (you can customize this) */
.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.col-bg{
    background: rgba(255, 255, 255, 0.2);
    border: 6px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-align: center;
    color: white;


}
.lang-option {
    display: flex; /* To easily control spacing of image and text */
    align-items: center; /* Vertically align image and text */
}

.header-flag {
    width: 50px;
    height: 45px;
    object-fit: cover;
    border-radius: 0.7rem;
}
.kkia-img{
    width: 20%;
}
.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    color: white;
    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    color: white;
    width: 45px;
    padding: 0.5rem;
    margin-right: 0.8rem;
    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.back-btn:hover {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.8);
    color: white;
    transform: scale(1.1); /* Adds a slight zoom effect */
}


.col-bg:hover{
    transform: scale(1.05);
}
.lang-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Optional: makes entire area clickable */
}
/* .box{
    box-sizing: border-box;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    background-clip:padding-box;
  } */
  .weather-icon {
    width: 50px;
    height: auto;
    border: 0;
}

.temperature-overlay {
    position: absolute;
    top: -12px;
    right: -35px;
    color: #fff;
    padding: 2px 6px;
    font-size: 0.75rem;
    border-radius: 0.25rem;
}
.weather-icon-wrapper {
    position: relative;
    display: inline-block;
}

.weather-temp-badge {
    position: absolute;
    top: -10px;
    /* right: -5px; */
    background: none;
    color: #fff;
    font-size: 0.85rem;
    padding: 0;
    border: none;
    font-weight: normal;
    min-width: unset;
    text-align: right;
    z-index: 2;
    box-shadow: none;
    pointer-events: none;
}

.weather-icon,
.city-time,
.temperature-overlay {
    transition: all 0.3s ease-in-out;
}

.loading-placeholder {
    background-color: rgba(73, 149, 145, 0.9);
    border: 0;
    color: transparent;
    border-radius: 10px;
    display: inline-block;
    min-width: 50px; /* Adjust for time/temp width */
    min-height: 10px; /* Adjust for icon/text height */
    animation: pulse 0.5s infinite;
    height: 15px;
    
}

.loading-placeholder.weather-icon {
    width: 60px;
    height: 50px;
    background-color: rgba(73, 149, 145, 0.9);
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}