@import url("common.css");
@import url("animation.css");

* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
}

.font-esthetic {
    font-family: 'Sacramento', cursive !important;
}

.font-arabic {
    font-family: 'Noto Naskh Arabic', serif !important;
}

.img-center-crop {
    width: 14rem;
    height: 14rem;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.btn-music {
    bottom: 9vh;
    right: 2vh;
    z-index: 1055;
}

.btn-theme {
    bottom: 15vh;
    right: 2vh;
    z-index: 1055;
}

.loading-page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1056;
}

.color-theme-white {
    color: rgb(255, 255, 255);
    background-color: var(--bs-light);
}

.color-theme-black {
    color: rgb(0, 0, 0);
    background-color: var(--bs-dark);
}

section {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
}

.bg-cover-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(0.5turn, transparent, black 10%, black 90%, transparent);
}

 .loading-page {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    z-index: 9999;
}

/* Doors */
.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease-in-out;
    z-index: 2;
}

.left-door {
    left: 0;
    background-image: url('../assets/images/left_door.jpeg');
    transform-origin: left;
}

.right-door {
    right: 0;
    background-image: url('../assets/images/right_door.jpeg');
    transform-origin: right;
}

/* Open animation */
.open .left-door {
    transform: translateX(-100%);
}

.open .right-door {
    transform: translateX(100%);
}

/* Center content */
.center-content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Popping Button */
.open-btn {
    margin-top: 20px;
    padding: 4px 20px;
    font-size: 17px;
    border: none;
    border-radius: 40px;
    /* background: white;
    color: black; */
    /* cursor: pointer;
    animation: pop 1.5s infinite;
    transition: 0.3s; */

     /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    transition: all 0.3s ease;
    animation: pop 2s infinite;

    background: #394b33;
    color: #f6c263;
}

.open-btn:hover {
    transform: scale(1.1);
}

/* Pop Animation */
@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.open-btn {
    transition: opacity 0.3s ease, transform 0.3s ease;
}