body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", system-ui, sans-serif;

    background: #FCF6E9;
    background-image: url("../imgs/bkg.png");
    background-size: 100%;
    background-repeat: repeat;
    
    animation: moveBg 20s linear infinite;
}

body[dir="rtl"] {
    /* font-family: 'SimplifiedArabic', sans-serif !important; */
    font-family: 'gess', sans-serif !important;
    
}
body[dir="ltr"] {
    /* font-family: 'CabinCondensed', sans-serif; */
    font-family: 'gess', sans-serif !important;

}

body[dir="rtl"] {
    text-align: center;
}

body[dir="rtl"] .form-wrapper {
    /* flex-direction: row-reverse; */
}

body[dir="rtl"] input {
    text-align: right;
}

@keyframes moveBg {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1000px 1000px;
    }
}

.overlay {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    /* background: rgba(246, 241, 231, 0.9); */
    backdrop-filter: blur(4px);
}

.landing {
    text-align: center;
    max-width: 650px;
    width: 100%;
    color: #4b463f;
}

.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.lang-toggle button {
    background: #8b7f6a;
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
}


h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.description {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.wishlist {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-wrapper {
    display: flex;
    max-width: 520px;
    margin: 0 auto 30px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #c9c1b3;
    background: #ddd4bc;
}

.form-wrapper input {
    flex: 1;
    padding: 18px;
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    color: #4b463f;
}

.form-wrapper button {
    background: #8b7f6a;
    color: #fff;
    border: none;
    padding: 0 30px;
    font-size: 20px;
    cursor: pointer;
    
}

.animated-btn {
    padding: 12px 28px;
    font-size: 16px;
    border: none;
    /* border-radius: 18px; */
    cursor: pointer;
    background: linear-gradient(135deg, #00ff04, #1cff20);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover animation */
.animated-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
}

/* Click animation */
.animated-btn:active {
    transform: scale(0.95);
}

/* Pulse animation */
.animated-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}


.coming {
    font-size: 24px;
    margin-bottom: 20px;
}

.stores {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stores img {
    height: 55px;
}


@media (max-width: 500px) {
    h1 { font-size: 40px; }
    .description { font-size: 18px; }
    /* .form-wrapper { flex-direction: column; } */
    .form-wrapper button { padding: 14px; }
}

@font-face {
    font-family: 'CabinCondensed';
    src: url('../fonts/CabinCondensed-Regular.ttf') format('truetype');
    font-weight: 400; 
    font-style: normal;
}
@font-face {
    font-family: 'CabinCondensed';
    src: url('../fonts/CabinCondensed-Medium.ttf') format('truetype');
    font-weight: 500; 
    font-style: normal;
}
@font-face {
    font-family: 'CabinCondensed';
    src: url('../fonts/CabinCondensed-SemiBold.ttf') format('truetype');
    font-weight: 600; 
    font-style: normal;
}
@font-face {
    font-family: 'CabinCondensed';
    src: url('../fonts/CabinCondensed-Bold.ttf') format('truetype');
    font-weight: 700; 
    font-style: normal;
}

@font-face {
    font-family: 'SimplifiedArabic';
    src: url('../fonts/Simplified-Arabic.ttf') format('truetype');
    font-weight: 500; 
    font-style: normal;
}

@font-face {
    font-family: 'gess';
    src: url('../fonts/GE SS Two Bold.otf') format('opentype');
    font-weight: 500; 
    font-style: normal;
}