/* ========================================
   Top Page Specific Styles
   ======================================== */

/* ========================================
   Loading Screen (Top Page Only)
   ======================================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #EFEFEF;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

#loading-screen.loaded {
    transform: translateY(-100%);
}

.loading-logo {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.loading-logo img {
    height: 60px;
}

.loading-bar-container {
    width: 300px;
    height: 2px;
    background: rgba(145, 122, 100, 0.2);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: #917A64;
    transition: width 0.3s ease;
}

.loading-text {
    margin-top: 20px;
    font-family: 'Shippori Mincho B1', serif;
    font-size: 14px;
    color: #917A64;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Prevent scroll during loading */
body.loading {
    overflow: hidden;
}