/* ==========================================
   خلفية متحركة: قوس قزح + دخان + تعتيم نهائي
========================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow-x: hidden;

    /* خلفية أولية قوس قزح */
    background: linear-gradient(
        120deg,
        #ffffff,
        #ffbebe,
        #ff8cf5,
        #8f8cff,
        #5ee1ff,
        #5fff93,
        #fff95e,
        #ffb85e
    );
    background-size: 400% 400%;
    animation: rainbowToBlack 22s ease-in-out forwards;
}

/* حركة قوس قزح + التعتيم النهائي */
@keyframes rainbowToBlack {
    0% {
        background-position: 0% 50%;
        filter: brightness(1.3);
    }

    30% {
        background-position: 100% 50%;
        filter: brightness(1.1);
    }

    60% {
        background-position: 50% 0%;
        filter: brightness(0.6);
    }

    80% {
        background-position: 50% 100%;
        filter: brightness(0.3);
    }

    100% {
        background: #000000;
        filter: brightness(0.1);
    }
}

/* ==========================================
   دخان متحرك أمام الخلفية
========================================== */
.smoke-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.22;
    background: url('https://i.imgur.com/O7P3I5T.png');
    animation: smokeMove 18s infinite linear;
    z-index: 0;
}

@keyframes smokeMove {
    0%   { transform: translateX(-50px) translateY(0px) scale(1); }
    50%  { transform: translateX(50px) translateY(-20px) scale(1.05); }
    100% { transform: translateX(-50px) translateY(0px) scale(1); }
}

/* ==========================================
   ارفع جميع عناصر الصفحة فوق الدخان
========================================== */
body > * {
    position: relative;
    z-index: 10;
}/* ============================
   GLOBAL STYLES
============================ */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1c0f0f, #351f44, #2d1a10);
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow-x: hidden;
}

/* تأثير الثلج */
.weather-effect span {
    position: fixed;
    top: -10px;
    background: white;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall 6s linear infinite;
}

@keyframes fall {
    0% { transform: translateY(0px); }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* HEADER */
.fd-header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

.fd-logo {
    height: 55px;
}

.fd-title {
    font-size: 22px;
    font-weight: bold;
}

.fd-subtitle {
    font-size: 12px;
    opacity: 0.7;
}

.fd-top-btn {
    padding: 8px 15px;
    border: 1px solid #d4a550;
    color: #d4a550;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.fd-top-btn:hover {
    background: #d4a550;
    color: #000;
}

/* HERO SECTION */
.fd-hero {
    margin-top: 140px;
    padding: 40px;
}

.glow-gold {
    color: #ffe8b6;
    text-shadow: 0px 0px 10px rgba(255,225,160,0.7);
}

.fd-btn-primary {
    background: #d4a550;
    color: #000;
    padding: 12px 25px;
    border-radius: 10px;
    display: inline-block;
    margin-right: 10px;
    margin-top: 20px;
    font-size: 15px;
}

.fd-btn-secondary {
    border: 1px solid #d4a550;
    padding: 12px 25px;
    color: #d4a550;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 15px;
}

/* GRID – WHY SECTION */
.fd-info-section {
    padding: 40px;
}

.fd-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    margin-top: 25px;
}

.fd-info-card {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 20px;
}

/* COUNTRY GRID */
.country-card {
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 12px;
    display: inline-block;
    margin: 7px;
}

/* CTA */
.fd-cta-band {
    padding: 40px;
    text-align: center;
    background: rgba(0,0,0,0.23);
}

/* FOOTER */
.fd-footer {
    text-align: center;
    padding: 35px 0;
    background: black;
}

.footer-logo {
    height: 70px;
}
