/* assets/css/main.css */

body {
    font-family: 'Cairo', sans-serif;
    background-color: #0d0805;
    color: #ffffff;
    overflow: hidden;
}

.font-amiri {
    font-family: 'Amiri', serif;
}

/* حركة الأبواب ببطء وفخامة سينمائية */
.door-left, .door-right {
    transition: transform 2.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.door-open-left {
    transform: translateX(-100%);
}

.door-open-right {
    transform: translateX(100%);
}

/* ختم الشمع */
.seal-glow {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), inset 0 0 15px rgba(0,0,0,0.5);
}

.seal-crack {
    animation: crack 0.5s ease-out forwards;
}

@keyframes crack {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.15); filter: brightness(1.8); }
    100% { transform: scale(0.8); opacity: 0; }
}

/* شاشة الترحيب خلف الباب والظهور التدريجي */
#screen-welcome {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 2.5s ease-out, transform 2.5s ease-out;
}

#screen-welcome.reveal {
    opacity: 1;
    transform: scale(1);
}