/* ====================================================
   صفحة "قريباً" — coming-soon.css
   ==================================================== */
.coming-soon {
    min-height: 100vh;
    background: linear-gradient(145deg, #1A1812 0%, #2E2B1F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* نقاط زخرفية خلفية */
.coming-soon::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,146,10,.1) 0%, transparent 68%);
    pointer-events: none;
}
.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200,146,10,.07) 0%, transparent 68%);
    pointer-events: none;
}

.coming-soon-container {
    max-width: 680px;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* الرأس */
.coming-soon-header {
    margin-bottom: 56px;
}
.coming-soon-header .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(250,248,242,.06);
    backdrop-filter: blur(12px);
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid rgba(200,146,10,.22);
}
.coming-soon-header .logo-icon {
    width: 44px; height: 44px;
}
.coming-soon-header .logo-icon img {
    width: 100%; height: 100%; object-fit: contain;
}
.coming-soon-header .logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #FAF8F2;
}

/* الأيقونة */
.construction-icon {
    margin: 0 auto 40px;
    animation: floatIcon 3.2s ease-in-out infinite;
}
@keyframes floatIcon {
    0%,100% { transform: translateY(0);    }
    50%      { transform: translateY(-18px); }
}

/* العنوان */
.coming-soon-title {
    font-size: 52px;
    font-weight: 800;
    color: #FAF8F2;
    line-height: 1.22;
    margin-bottom: 32px;
}

/* زر العودة */
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C8920A;
    color: #1A1812;
    padding: 16px 38px;
    border-radius: 100px;
    font-family: 'Bahij', 'Cairo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    transition: all .3s ease;
    text-decoration: none;
}
.btn-back-home:hover {
    background: #E8B84A;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(200,146,10,.3);
}

/* خلفية متحركة */
.bg-shapes { position:absolute; inset:0; overflow:hidden; z-index:1; pointer-events:none; }
.shape { position:absolute; border-radius:50%; opacity:.07; }
.shape-1 {
    width:320px; height:320px;
    background: #C8920A;
    top:-100px; right:-80px;
    animation: floatIcon 7s ease-in-out infinite;
}
.shape-2 {
    width:220px; height:220px;
    background: #E8B84A;
    bottom:-60px; left:-60px;
    animation: floatIcon 9s ease-in-out infinite reverse;
}
.shape-3 {
    width:160px; height:160px;
    background: #C8920A;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    animation: logoPulse 5s ease-in-out infinite;
}
@keyframes logoPulse {
    0%,100% { transform:translate(-50%,-50%) scale(1);   }
    50%      { transform:translate(-50%,-50%) scale(1.15); }
}

/* تجاوبية */
@media (max-width: 600px) {
    .coming-soon-title { font-size: 34px; }
    .btn-back-home { font-size: 15px; padding: 14px 28px; }
}
