@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;300&family=Noto+Sans+TC:wght@100;300&display=swap');

/*=============== BASE ===============*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
  }
  html {
    scroll-behavior: smooth;
  }

body {
    width:100%;
    margin:0 auto;
    padding:0;
    font-family: "Poppins","Noto Sans TC","Noto Sans SC",Helvetica,Arial,"Microsoft JhengHei",sans-serif;
    font-weight: 500;
    font-style: normal;
}


h1, h2 {
    font-family: "amandine", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h5, h6 {
    font-weight: 400;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    letter-spacing:0.05em;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/********** loader wp **********/

/* ============ PRELOADER OVERLAY ============ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #182C33;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ============ LOADER CONTENT ============ */
.loader-content {
    text-align: center;
    width: 350px;
}

.loader-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

/* ============ PROGRESS BAR ============ */
.progress-bar-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #5d7a7b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgb(43, 61, 67), #64CDD1, #0F393D);
    background-size: 200% 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.progress-percent {
    display: inline-block;
    margin-top: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #5bacaf;
    letter-spacing: 1px;
}

/* ============ MAIN CONTENT ============ */
/*
#main-content {
    display: none;
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

#main-content.show {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}
*/
