@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: #ffffff;
    background-color: var(--bs-light);
}

.color-theme-black {
    color: #3A3A3A;
    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: #4B2C6F;
    z-index: 9999;
}

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

/* Popping Button */
.open-btn {
    margin-top: 20px;
    padding: 4px 20px;
    font-size: 17px;
    border: none;
    border-radius: 40px;

    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: linear-gradient(135deg,#7B4A9E,#BFA3D6);
    color: white;
}

.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;
}

.scroll-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-down {
    height: 30px;
    width: 10px;
    position: absolute;
    border-radius: 50px;
    cursor: pointer;
}

.scroll-down::before,
.scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid #7B4A9E;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1s ease-in-out infinite;
}

.scroll-down::before {
    top: 30%;
    animation-delay: 0.3s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        top: 90%;
        opacity: 0;
    }
}

/* Elegant Purple Theme Overrides */
[data-bs-theme="dark"] {
    --bs-body-bg: #F8F7FA;
    --bs-body-color: #3A3A3A;
    --bs-dark: #EDE6F5;
    --bs-light: #F8F7FA;
    --bs-black: #F8F7FA;
    --bs-white: #3A3A3A;
    --bs-primary-bg: #EDE6F5;
}

[data-bs-theme="dark"] .bg-black {
    background-color: #F8F7FA !important;
}

[data-bs-theme="dark"] .bg-dark {
    background-color: #EDE6F5 !important;
}

[data-bs-theme="dark"] .text-light,
[data-bs-theme="dark"] .text-white {
    color: #4B2C6F !important;
}

[data-bs-theme="dark"] .bg-theme-dark {
    background-color: #EDE6F5 !important;
    color: #4B2C6F !important;
}

[data-bs-theme="dark"] .color-theme-black {
    background-color: #EDE6F5 !important;
    color: #F8F7FA !important;
}

[data-bs-theme="dark"] .btn-outline-light {
    --bs-btn-color: #7B4A9E;
    --bs-btn-border-color: #7B4A9E;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #7B4A9E;
    --bs-btn-hover-border-color: #7B4A9E;
}

[data-bs-theme="dark"] .border-light {
    border-color: #7B4A9E !important;
}

[data-bs-theme="dark"] .navbar {
    border-color: #7B4A9E !important;
}

[data-bs-theme="dark"] .navbar .nav-link {
    color: #4B2C6F !important;
}

[data-bs-theme="dark"] .navbar .nav-link.active,
[data-bs-theme="dark"] .navbar .nav-link:hover {
    color: #7B4A9E !important;
}