* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    overflow-x: hidden;
}


/* Navbar */
.navbar {
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: #ffffff;
    z-index: 999;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    padding: 0 5%;
    height: 75px;
    position: relative;
}

.logo img {
    width: 180px;
}

.navbar nav a {
    position: relative;
    text-decoration: none;
    color: #505050;
    letter-spacing: 2px;
    margin-left: 25px;
    transition: color 0.3s ease;
    padding-bottom: 25px;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #cd7510;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #cd7510;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    transform: scaleX(1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 10000;
    background-color: #ffffff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
    padding: 20px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown-content.show {
    display: block !important;
}

.dropdown.active .dropbtn .arrow {
    transform: rotate(180deg) !important;
    top: -1px;
}

.dropdown-content a:hover {
    color: #cd7510 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover::after,
.dropdown-content a:hover::before {
    display: none !important;
}

.dropdown-content a {
    color: #333333;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    margin: 0;
    padding-right: 16px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.navbar nav .dropdown-content a {
    border-bottom: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

.navbar nav .dropdown-content a::after,
.navbar nav .dropdown-content a::before,
.navbar nav .dropdown-content a:hover::after,
.navbar nav .dropdown-content a:active::after,
.navbar nav .dropdown-content a:focus::after {
    display: none !important;
    content: "" !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: none !important;
    transform: none !important;
}

@media (min-width: 769px) {
    .dropdown-content {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 50%;
        margin-top: 25px;
        padding: 20px 0 0;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }
}


/* Slider */
.slider-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 975;
    height: auto;
    max-height: calc(100vh - 80px);
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    z-index: 10;
    pointer-events: none;
}

.banner-overlay img {
    width: 100%;
    height: auto;
}

.scroll-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: jump 2s infinite;
}

.scroll-down img {
    color: white;
    width: 50px;
    height: 50px;
}

@keyframes jump {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-5px);
    }

    60% {
        transform: translateX(-50%) translateY(-2px);
    }
}

.home-bg {
    background-image: url(../images/home/bg-all.webp);
    background-size: cover;
    background-position: center;
}

.intro-section {
    font-family: 'Noto Serif TC', serif;
    padding: 60px 20px 0px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 150px;
}

.intro-content {
    flex: 1;
    max-width: 600px;
    width: 100%;
}

.intro-title {
    font-size: 38px;
    color: #1e3682;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.intro-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #1e3682;
    margin: 20px 0 40px;
}

.intro-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}


/* Carousel */
.carousel-container {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    top: 50%;
    margin-top: -240px;
    left: 50%;
    margin-left: -160px;
    width: 320px;
    height: 480px;
    background-size: cover;
    background-position: center;
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.2);
    transform-origin: center center;
    cursor: pointer;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.8s ease,
        filter 0.8s ease;
    will-change: transform, opacity, filter;
}

.pos-center {
    z-index: 10;
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: brightness(1);
    pointer-events: auto;
}

.pos-right {
    z-index: 5;
    transform: translateX(130px) scale(0.85);
    opacity: 0.8;
    filter: brightness(0.3);
    pointer-events: auto;
}

.pos-left {
    z-index: 5;
    transform: translateX(-130px) scale(0.85);
    opacity: 0.8;
    filter: brightness(0.3);
    pointer-events: auto;
}

.pos-hidden {
    z-index: 1;
    transform: translateX(0) scale(0.6);
    opacity: 0;
    pointer-events: none;
}


/* Blessing */
.blessing-section {
    font-family: 'Noto Serif TC', serif;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.blessing-header {
    text-align: center;
    margin-bottom: 50px;
}

.blessing-header img {
    padding: auto 20px;
    width: 100%;
}

.blessing-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #1e3682;
    letter-spacing: 3px;
    padding-top: 20px;
}

.blessing-content {
    color: #1e3682;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.blessing-label {
    writing-mode: vertical-rl;
    border: 1px solid #1e3682;
    padding: 20px 10px;
    font-size: 20px;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-lights-title {
    font-family: 'Noto Serif TC', serif;
    padding: 80px 10% 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.group-lights-header {
    text-align: center;
    margin-bottom: 20px;
}

.group-lights-header img {
    padding: auto 20px;
    width: 100%;
}


.list-column {
    flex: 1;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-column li {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.list-column li:last-child {
    margin-bottom: 0;
}


/* Lights */
.lights-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 60px 20px 100px;
}

.lights-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-card {
    max-width: 800px;
    width: 100%;
}

.sub-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 100%;
    width: 100%;
    padding: 0 10%;
}

.sub-card {
    flex: 1;
    width: 100%;
    max-width: 800px;
}

/* .price-badge {
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 15px;
    background: #fef8d5;
    padding: 8px 15px;
    box-shadow: 3px 5px 2px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: left;
} */

.light-card-title-yellow {
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
    font-size: 34px;
    color: #cd7510;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
}

.price-yellow {
    font-size: 24px;
    color: #cd7510;
    letter-spacing: 0;
    margin: 0 5px;
}

.light-card-title-blue {
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
    font-size: 34px;
    color: #2c5ea2;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
}

.price-blue {
    font-size: 24px;
    color: #2c5ea2;
    letter-spacing: 0;
    margin: 0 5px;
}

.light-card-title-green {
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
    font-size: 34px;
    color: #428c57;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
}

.price-green {
    font-size: 24px;
    color: #428c57;
    letter-spacing: 0;
    margin: 0 5px;
}


.light-card-img {
    max-width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
}

.light-card-body {
    padding: 20px 40px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.light-card-subtitle {
    font-size: 26px;
    font-weight: 400 !important;
    margin-bottom: 20px;
    text-align: center;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background-color: #e59a43;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 16px;
    letter-spacing: 2px;
    clip-path: polygon(8px 0,
            100% 0,
            100% calc(100% - 8px),
            calc(100% - 8px) 100%,
            0 100%,
            0 8px);
    display: inline-block;
    text-align: center;
}

.light-card-text {
    font-size: 18px;
    line-height: 2;
    width: 100%;
}

.light-card-text p {
    margin-bottom: 10px;
}

.light-card-text ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.light-card-text ul li::before {
    content: "・";
    color: #555;
    font-weight: bold;
    margin-right: 5px;
}

.action-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.special-offer-text {
    padding: 0 40px;
    color: #d09a09;
    font-size: 18px;
    line-height: 1.5;
}

.special-offer-text .diamond {
    position: relative;
    top: -2px;
    font-size: 10px;
    margin-right: 4px;
}

.normal-text {
    padding: 0 40px;
    font-size: 18px;
}

.link-red {
    font-family: 'Noto Serif TC', serif;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: #ce1313;
    text-decoration: none;
    padding-bottom: 4px;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.link-red:hover {
    transform: translateX(5px);
}

.link-red::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 158%;
    height: 1px;
    background-color: currentColor;
}

.link-red::after {
    content: '';
    position: absolute;
    left: 157%;
    bottom: 4px;
    width: 15px;
    height: 1px;
    background-color: currentColor;
    transform-origin: bottom left;
    transform: rotate(-135deg);
}

.intro-link-blue {
    font-family: 'Noto Serif TC', serif;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: #254e9c;
    text-decoration: none;
    padding-bottom: 4px;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.intro-link-blue:hover {
    transform: translateX(5px);
}

.intro-link-blue::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 158%;
    height: 1px;
    background-color: currentColor;
}

.intro-link-blue::after {
    content: '';
    position: absolute;
    left: 157%;
    bottom: 4px;
    width: 15px;
    height: 1px;
    background-color: currentColor;
    transform-origin: bottom left;
    transform: rotate(-135deg);
}

.light-card-text .intro-link-blue {
    line-height: 1.5;
}

.intro-link-green {
    font-family: 'Noto Serif TC', serif;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: #428c57;
    text-decoration: none;
    padding-bottom: 4px;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.intro-link-green:hover {
    transform: translateX(5px);
}

.intro-link-green::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px !important;
    width: 158%;
    height: 1px;
    background-color: currentColor;
}

.intro-link-green::after {
    content: '';
    position: absolute;
    left: 157%;
    bottom: 6px !important;
    width: 15px;
    height: 1px;
    background-color: currentColor;
    transform-origin: bottom left;
    transform: rotate(-135deg);
}


.intro-link-grey {
    font-family: 'Noto Serif TC', serif;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: #858585;
    text-decoration: none;
    padding-bottom: 4px;
    margin-left: 6px;
    transition: all 0.3s ease;
    text-indent: 0;
}

.intro-link-grey:hover {
    transform: translateX(5px);
}


.intro-link-grey::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 146%;
    height: 1px;
    background-color: currentColor;
    display: block;
}

.intro-link-grey::after {
    content: '';
    position: absolute;
    right: -17px;
    bottom: 6px;
    width: 15px;
    height: 1px;
    background-color: currentColor;
    transform-origin: right center;
    transform: rotate(45deg);
    display: block;
}

.register-btn-red {
    display: block;
    background-color: #de5656;
    color: white;
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 12px 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 5px;
    text-decoration: none;
    transition: all 0.3s;
    margin: 40px auto;
}

.register-btn-red:hover {
    background-color: #a73f3f;
    transform: translateY(-2px);
}

.register-btn-blue {
    display: block;
    background-color: #61a8df;
    color: white;
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 12px 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 5px;
    text-decoration: none;
    transition: all 0.3s;
    margin: 40px auto;
}

.register-btn-blue:hover {
    background-color: #1280d4;
    transform: translateY(-2px);
}

.register-btn-green {
    display: block;
    background-color: #8ec777;
    color: white;
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 12px 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 40px auto;
}

.register-btn-green:hover {
    background-color: #5c814d;
    transform: translateY(-2px);
}


/* Ceremony */
.ceremony-section {
    padding: 50px 20px;
}

.ceremony-card {
    position: relative;
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #ffffffd0;
    border: 3px solid #ffffff;
    border-radius: 16px;
    box-shadow: 1px 4px 20px #54ddff42;
    padding: 50px;
    margin: 50px auto 50px 10%;
    max-width: 900px;
    width: 90%;
}

.ceremony-title-img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.ceremony-card-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 36px;
    color: #374c6f;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 4px;
}

.ceremony-card-subtitle {
    font-family: 'Noto Serif TC', serif;
    text-align: center;
    font-size: 20px;
    color: #374c6f;
    line-height: 1.5;
    margin: 20px 0 30px 0;
    font-weight: bold;
}

.ceremony-card-subtitle p {
    font-family: 'Noto Serif TC', serif;
    margin: 5px 0;
}

.ceremony-card-subtitle p:first-child {
    font-size: 28px;
}


.countdown-container {
    font-family: 'Noto Serif TC', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.countdown-label {
    border: 1px solid #d09a09;
    color: #d09a09;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}

.countdown-display {
    font-size: 28px;
    color: #d09a09;
    font-weight: bold;
}

.time-num {
    font-size: 50px;
    margin: 0 5px;
    display: inline-block;
    min-width: 70px;
    text-align: center;
}

.period-text {
    text-align: center;
    font-size: 18px;
    color: #374c6f;
    margin-bottom: 10px;
}

.ceremony-text {
    text-align: center;
    margin: 30px 0 20px 0;
    font-size: 16px;
    line-height: 1.8;
}

.instructions {
    color: #505050;
    padding-top: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.instructions-list {
    list-style-type: none;
}

.instructions-list li {
    position: relative;
    padding-left: 20px;
}

/* 自訂菱形列表符號 */
.instructions-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 5px;
}

.instructions-footer {
    text-align: center;
    margin-top: 30px;
}

.fb-link {
    color: #3b5998;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.fb-link:hover {
    color: #2d4373;
}



/* Temple */
.temple-section {
    font-family: 'Noto Serif TC', serif;
    padding: 80px 20px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.temple-header {
    text-align: center;
    margin-bottom: 60px;
}

.temple-cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0 5%;
    z-index: 2;
}

.temple-card {
    background-color: #ffffffc0;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 30px 30px 30px 0;
    flex: 1;
    margin-left: 60px;
    box-sizing: border-box;
}

.temple-circle-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: -60px;
    margin-right: 25px;
    flex-shrink: 0;
}

.temple-card-content {
    flex: 1;
}

.temple-card-content p {
    color: #202020;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 2px;
}

.card-gold-title {
    color: #d09a09;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
}


/* Reasons */
.reasons-container {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reasons-header {
    text-align: center;
    margin: 80px auto 60px;
    width: 100%;
}

.reasons-intro {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #505152;
    margin: 30px auto 10px;
    max-width: 900px;
    width: 100%;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
    margin-top: 50px;
    z-index: 2;
}

.reason-card:nth-child(2) {
    margin-top: -40px;
    height: 400px;
}

.reason-card:nth-child(5) {
    margin-top: 40px;
    height: 400px;
}

.reason-card {
    font-family: 'Noto Serif TC', serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: 320px;
    display: flex;
    flex-direction: column;
}

.reason-card-img-top {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.reason-card-img-top img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reason-card-bottom {
    height: 130px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #ffffff;
    text-align: center;
}

.reason-card:nth-child(3n+2) .reason-card-bottom {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #ffffff;
    text-align: center;
}

.reason-card-title {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Noto Serif TC', serif;
    margin-bottom: 10px;
    text-shadow:
        -1px -1px 5px rgba(0, 0, 0, 0.5),
        1px -1px 5px rgba(0, 0, 0, 0.5),
        -1px 1px 5px rgba(0, 0, 0, 0.5),
        1px 1px 5px rgba(0, 0, 0, 0.5);
}

.reason-card-divider {
    width: 80%;
    margin: 0 auto 10px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.reason-card-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow:
        -1px -1px 5px rgba(0, 0, 0, 0.5),
        1px -1px 5px rgba(0, 0, 0, 0.5),
        -1px 1px 5px rgba(0, 0, 0, 0.5),
        1px 1px 5px rgba(0, 0, 0, 0.5);
}

.reasons-footer {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #505152;
    line-height: 1.8;
    letter-spacing: 2px;
    max-width: 1000px;
    width: 100%;
}


/* FAQ */
.faq-section {
    font-family: 'Noto Serif TC', serif;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 140px;
    align-self: flex-start;
}

.faq-title-img {
    display: block;
    max-width: 100%;
    margin-bottom: 25px;
}

.faq-main-title {
    color: #d09a09;
    font-size: 28px;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-family: 'Noto Serif TC', serif;
    border-bottom: 2px solid #d09a09;
    padding-bottom: 15px;
}

.faq-container {
    border-top: 1px solid #d09a09;
}

.faq-item {
    border-bottom: 1px solid #d09a09;
    padding: 0 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    color: #d09a09;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #a3722a;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: 100;
    transform: scaleX(1.5);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.faq-answer {
    overflow: hidden;
    transition: height 1s cubic-bezier(0.25, 1, 0.5, 1);
    height: 0;
    box-sizing: border-box;
}

.faq-answer p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    padding-bottom: 25px;
    box-sizing: border-box;
}

.faq-item.active .faq-icon {
    transform: scaleX(1.5) rotate(180deg);
}


/* Footer */
.footer {
    background-color: #e2e6e5;
    padding: 60px 20px 50px;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col p {
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.col-title {
    margin-left: -7px;
    margin-bottom: 12px !important;
}

.footer-bottom {
    width: 100%;
}

.notes-content p {
    margin: 0 0 8px 0;
    line-height: 1.8;
}

.download-link {
    color: #a3722a;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.download-link:hover {
    color: #c19b40;
    opacity: 0.8;
}

.indent-text {
    padding-left: 15px;
}

.copyright-info {
    margin-top: 40px;
    line-height: 1.8;
}



/* Background Text Parallax*/
.parallax-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.parallax-bg-text-left {
    position: absolute;
    left: calc(50% - 800px);
    top: 100px;
    width: 300px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.parallax-bg-text-right {
    position: absolute;
    left: auto;
    right: calc(50% - 800px);
    top: 200px;
    width: 300px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.parallax-bg-text-left-2 {
    position: absolute;
    left: calc(50% - 800px);
    top: 0;
    width: 300px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.parallax-bg-text-right-2 {
    position: absolute;
    right: calc(50% - 900px);
    top: 200px;
    width: 300px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.parallax-bg-text-left-3 {
    position: absolute;
    left: calc(50% - 850px);
    bottom: 400px;
    width: 300px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.parallax-bg-text-right-3 {
    position: absolute;
    right: calc(50% - 900px);
    bottom: 400px;
    width: 300px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.parallax-wrapper .lights-card {
    position: relative;
    z-index: 1;
}

.parallax-text-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.3;
    will-change: transform;
}



/* Fade In Animation */
[data-animation] {
    opacity: 0;
    transition: opacity 1.8s ease-out, transform 1.8s ease-out
}

[data-animation=slide-in-left] {
    transform: translateX(-50px)
}

[data-animation=slide-in-right] {
    transform: translateX(50px)
}

.is-visible[data-animation=fade-in],
.is-visible[data-animation=slide-in-left],
.is-visible[data-animation=slide-in-right] {
    opacity: 1 !important;
    transform: translateX(0)
}

@media (max-width:768px) {
    [data-animation] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }

}


@media (max-width: 768px) {

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 10px 20px;
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .navbar .logo {
        padding-bottom: 0;
    }

    .navbar .logo img {
        width: 150px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 20px;
        height: 15px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #4b4b4b;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .navbar nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 1000;
        overflow-x: hidden;
    }

    .navbar nav.active {
        display: flex;
    }

    .navbar nav a {
        margin: 0;
        padding: 10px 20px;
        font-size: 16px;
        color: #000000;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }

    .navbar nav a::after {
        display: none;
    }

    .dropdown {
        display: block;
        width: 100%;
    }

    .dropbtn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px !important;
        margin: 0 !important;
        width: 100%;
        color: #000000 !important;
        box-sizing: border-box;
    }

    .dropdown-content {
        display: none !important;
        position: static !important;
        width: 100% !important;
        margin-top: 0 !important;
        padding: 0 !important;
        background-color: #fcfcfc !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
    }

    .dropdown-content.show {
        display: block !important;
    }

    .dropdown-content a {
        padding: 14px 20px 14px 40px !important;
        font-size: 15px;
        color: #333333 !important;
        text-align: left;
    }

    .dropdown .arrow {
        display: inline-block;
        position: relative;
        width: 8px;
        height: 8px;
        border-right: 2px solid #9c9c9c;
        border-bottom: 2px solid #9c9c9c;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-right: 4px;
        top: -2px;
    }

    .dropdown.active .dropbtn .arrow {
        transform: rotate(-135deg) !important;
        top: 2px;
    }


    .banner-overlay {
        width: 50%;
    }

    .scroll-down img {
        color: white;
        width: 30px;
        height: 30px;
    }

    /* Intro */
    .intro-section {
        height: auto !important;
        min-height: 100%;
        overflow: hidden;
    }

    .intro-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        height: auto !important;
    }

    .intro-title img {
        width: 100%;
    }

    .intro-subtitle {
        font-size: 22px;
    }

    /* Carousel */
    .carousel-container {
        width: calc(100% - 40px);
        max-width: 280px;
        aspect-ratio: 2 / 3;
        height: 320px !important;
        margin: 0 auto;
        flex: none;
        flex-shrink: 0;
        overflow: visible;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .carousel-item {
        top: 0;
        left: 0;
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        height: 100%;
    }

    .pos-center {
        transform: translateX(0%) scale(1);
    }

    .pos-right {
        transform: translateX(25%) scale(0.85);
    }

    .pos-left {
        transform: translateX(-25%) scale(0.85);
    }

    .pos-hidden {
        transform: translateX(0%) scale(0.6);
    }

    /* Blessing */
    .blessing-section {
        padding: 60px 20px;
    }

    .blessing-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px;
    }

    .blessing-label {
        writing-mode: horizontal-tb;
        padding: 8px 15px;
        letter-spacing: 2px;
        margin: 0 auto;
    }

    .list-column li {
        font-size: 18px;
    }

    /* Lights */
    .lights-section {
        padding: 40px 20px 60px;
    }

    .main-card {
        max-width: 100%;
    }

    .sub-cards-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .sub-card {
        max-width: 100%;
    }

    .light-card-body {
        padding: 20px;
    }

    .light-card-subtitle {
        font-size: 20px;
    }

    .tag {
        font-size: 14px;
        padding: 5px 12px;
    }

    .special-offer-text,
    .normal-text {
        padding: 0 20px;
    }

    .price-badge {
        top: -30px;
        left: 10px;
        padding: 6px 12px;
    }

    .light-card-title-yellow,
    .light-card-title-blue,
    .light-card-title-green {
        font-size: 28px;
    }


    .price-yellow,
    .price-blue,
    .price-green {
        font-size: 18px;
    }


    /* Parallax Off */
    .parallax-bg-text-left,
    .parallax-bg-text-right,
    .parallax-bg-text-left-2,
    .parallax-bg-text-right-2,
    .parallax-bg-text-left-3,
    .parallax-bg-text-right-3 {
        display: none;
    }


    /* Ceremony */
    .ceremony-section {
        padding: 30px 15px;
    }

    .ceremony-card {
        margin: 20px auto;
        padding: 30px 20px;
        border-radius: 12px;
    }

    .ceremony-card-subtitle {
        font-size: 18px;
    }

    .ceremony-card-subtitle p {
        margin: 10px 0;
    }

    .ceremony-card-subtitle p:first-child {
        font-size: 24px;
    }

    .countdown-container {
        flex-direction: column;
    }

    .countdown-label {
        white-space: nowrap;
        padding: 5px 50px;
        letter-spacing: 5px;
    }

    .countdown-display {
        font-size: 16px;
    }

    .time-num {
        font-size: 30px;
        margin: 0 2px;
        min-width: 40px;
    }


    .instructions {
        font-size: 14px;
    }

    /* Temple */
    .temple-section {
        padding: 60px 20px;
    }

    .temple-header {
        margin-bottom: 100px;
    }

    .temple-cards-container {
        flex-direction: column;
        padding: 0;
        gap: 80px;
    }

    .temple-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
        padding: 30px 20px;
    }

    .temple-circle-img {
        width: 150px;
        height: 150px;
        margin-top: -80px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .card-gold-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .temple-card-content p {
        font-size: 16px;
        letter-spacing: 1px;
        text-align: justify;
    }

    /* Reasons */
    .reasons-container {
        margin-top: 40px;
    }

    .reasons-header {
        margin: 40px auto 20px;
    }

    .reasons-header-title {
        width: 100%;
    }

    .reasons-intro {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .reason-card:nth-child(2),
    .reason-card:nth-child(5) {
        margin-top: 0;
        height: 340px;
    }

    .reason-card:nth-child(3n+2) .reason-card-bottom {
        height: 150px;
    }

    .reasons-footer {
        font-size: 18px;
        letter-spacing: 1px;
    }

    /* FAQ */
    .faq-section {
        margin: 60px auto 80px;
        padding: 0 15px;
    }

    .faq-question {
        font-size: 18px;
        padding: 15px 0;
    }

    .faq-answer p {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 30px;
        font-size: 14px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .footer-col {
        min-width: unset;
    }

    .indent-text {
        padding-left: 0px;
    }

    /* Group titles */
    .group-lights-title {
        padding: 60px 20px 0;
    }

    .blessing-subtitle {
        font-size: 22px;
    }

    .mobile-noshow {
        display: none;
    }
}


/* Page Banner */
.page-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-banner-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.page-banner-text-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:768px) {
    .page-banner-text-img {
        position: absolute;
        top: -10px;
        width: 130%;
        height: 130%;
    }
}


/* Info Page Style */
.quick-links {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quick-links a {
    text-decoration: none;
    color: #000000;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: #cd7510;
}

.quick-links a.active {
    color: #cd7510;
    font-weight: bold;
}

@keyframes flameJump {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    40% {
        transform: translateY(-2px) scale(1.02);
        opacity: 0.8;
    }

    60% {
        transform: translateY(0) scale(0.98);
        opacity: 1;
    }

    80% {
        transform: translateY(-1px) scale(1);
        opacity: 0.95;
    }
}

.quick-links a.active::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("../images/info/icon-fire.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 2px;
    vertical-align: middle;
    margin-top: -3px;
    animation: flameJump 0.8s ease-in-out infinite;
}


.info-category-group {
    padding: 0 20px;
}

.info-section-title {
    position: relative;
    z-index: 998;
    /* background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 90%,
            rgba(255, 255, 255, 0) 100%); */
    background-color: #ffffff;
    font-family: 'Noto Serif TC', serif;
    text-align: center;
    padding: 50px 20px 30px;
    margin: 0 -20px;
}

.info-section-title img {
    max-width: 22%;
}

.info-section-title p {
    font-size: 20px;
    font-weight: bold;
    color: #1e3682;
    letter-spacing: 2px;
    padding: 20px 0;
}

.lamp-section:nth-of-type(odd) {
    background-image: url('../images/info/info-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.sticky-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 0 0 200px;
}

.image-col {
    flex: 1;
    position: sticky;
    top: 130px;
    margin-top: 20px;
}

.image-col img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.text-col {
    flex: 1.2;
    font-size: 18px;
    line-height: 1.8;
}

.text-col p,
.text-col ul {
    font-size: 18px;
}

.lamp-header {
    background-color: #ffffff;
    position: sticky;
    top: 120px;
    z-index: 10;
    margin: 0 -20px 15px 0;
    padding: 0 0 10px;
    box-shadow: 0 -60px 0 0 #ffffff;
}


.lamp-name-yellow {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    font-weight: bold;
    color: #cd7510;
    font-weight: bold;
    margin: 0 5px 0 0;
    letter-spacing: 2px;
}

.lamp-name-blue {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    font-weight: bold;
    color: #2c5ea2;
    font-weight: bold;
    margin: 0 5px 0 0;
    letter-spacing: 2px;
}

.lamp-name-green {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    font-weight: bold;
    color: #428c57;
    font-weight: bold;
    margin: 0 5px 0 0;
    letter-spacing: 2px;
}

.lamp-price-yellow {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    font-weight: bold;
    color: #cd7510;
}

.lamp-price-blue {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    font-weight: bold;
    color: #2c5ea2;
}

.lamp-price-green {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    font-weight: bold;
    color: #428c57;
}

.lamp-price-yellow .dollar-sign,
.lamp-price-blue .dollar-sign,
.lamp-price-green .dollar-sign {
    font-size: 24px !important;
    color: inherit;
    letter-spacing: 0;
    margin: 0 5px;
}



.lamp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.lamp-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cca052;
    padding: 4px 16px;
    font-size: 16px;
    letter-spacing: 1px;
    z-index: 1;
}

.lamp-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cca052;
    z-index: -1;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px, 10px 0,
            10px 1px,
            1px 10px,
            1px calc(100% - 1px),
            calc(100% - 10px) calc(100% - 1px),
            calc(100% - 1px) calc(100% - 10px),
            calc(100% - 1px) 1px,
            10px 1px);
}

.lamp-subtitle {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.place-bar {
    font-weight: bold;
    font-size: 20px;
    margin: 20px 0 10px;
}

.place-bar .diamond {
    font-size: 10px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.merit-bar {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    border-left: 4px solid;
    padding-left: 10px;
    margin: 30px 0 10px;
}

.member-bar {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    border-left: 4px solid;
    padding-left: 10px;
    margin: 30px 0 10px;
}

.lamp-list {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    line-height: 1.8;
    padding-left: 2em;
    text-indent: -2em;
}

.lamp-list-dot {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    line-height: 1.8;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.info-event-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


.info-event-list li {
    line-height: 1.8;
    padding-left: 2em;
    text-indent: -2em;
}

.info-link-red {
    color: #c60000;
    text-decoration: underline;
    font-size: 18px;
    margin-left: 40px;
    display: inline-block;
}

.info-link-red:hover {
    color: #901919;
}

.info-register-btn-red {
    display: block;
    width: 100%;
    background-color: #de5656;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 20px;
    letter-spacing: 8px;
    text-decoration: none;
    margin-top: 35px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.info-register-btn-red:hover {
    background-color: #940000;
}

.info-register-btn-blue {
    display: block;
    width: 100%;
    background-color: #61a8df;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 20px;
    letter-spacing: 8px;
    text-decoration: none;
    margin-top: 35px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.info-register-btn-blue:hover {
    background-color: #1280d4;
}

.info-register-btn-green {
    display: block;
    width: 100%;
    background-color: #8ec777;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 20px;
    letter-spacing: 8px;
    text-decoration: none;
    margin-top: 35px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.info-register-btn-green :hover {
    background-color: #5c814d;
}

@media (max-width: 768px) {

    .quick-links {
        position: sticky;
        top: 68px;
        padding: 9px 10px 8px;
        font-size: 16px;
        white-space: normal;
        overflow-x: visible;
        text-align: center;
        line-height: 1.8;
    }

    .quick-links a {
        margin: 0 5px;
        font-size: 16px;
        display: inline;
    }

    .info-bg {
        background-size: 160% auto;
    }

    .info-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('../images/info/info-bg.webp');
        background-size: contain;
        opacity: 0.3;
        z-index: 0;
    }

    .info-section-title {
        background: transparent;
        position: relative;
        top: 10px;
        padding: 20px 0 20px;
        margin: 0;
    }

    .info-section-title img {
        max-width: 90%;
    }

    .info-section-title p {
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 1.7;
    }

    .lamp-section:nth-of-type(odd) {
        background-size: 100% auto;
        background-position: center 25%;
    }

    .lamp-section:nth-of-type(even) {
        background-image: url('../images/info/info-bg.webp');
        background-size: 140% auto;
        background-position: 10% 30%;
        background-repeat: no-repeat;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .sticky-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 0 60px;
    }

    .image-col {
        position: relative;
        top: 0px;
    }

    .lamp-header {
        background-color: transparent;
        top: 0px;
        position: relative;
        flex-wrap: wrap;
        margin-bottom: 12px;
        padding: 0 0 10px;
        box-shadow: none;
    }

    .lamp-name-yellow,
    .lamp-name-blue,
    .lamp-name-green,
    .lamp-name {
        font-size: 28px;
    }

    .lamp-price-yellow,
    .lamp-price-blue,
    .lamp-price-green,
    .lamp-price {
        font-size: 28px;
    }

    .lamp-price-yellow .dollar-sign,
    .lamp-price-blue .dollar-sign,
    .lamp-price-green .dollar-sign,
    .lamp-price .dollar-sign {
        font-size: 18px;
    }

    .lamp-tags {
        gap: 8px;
        margin-bottom: 14px;
    }

    .lamp-tag {
        font-size: 14px;
        padding: 5px 12px;
    }

    .lamp-subtitle {
        font-size: 20px;
    }

    .place-bar,
    .merit-bar,
    .member-bar {
        margin: 25px 0 10px;
    }

    .info-event-list li {
        line-height: 1.8;
    }

    .info-register-btn {
        font-size: 20px;
        letter-spacing: 6px;
        margin-top: 28px;
    }
}


/* Merit Page */

.merit-quote {
    background-image: url('../images/merit/merit-bg-01-desktop.webp?v=02');
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: 120%;
    text-align: center;
    letter-spacing: 1px;
    padding: 100px 20px;
}

.merit-quote h1 {
    font-family: 'Noto Serif TC', serif;
    font-size: 23px;
    line-height: 1.8;
    font-weight: bold;
    color: #1e3682;
    margin-bottom: 20px;
}

.merit-quote p {
    font-family: 'Noto Serif TC', serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8;
    color: #202020;
}

.story-layout {
    padding: 60px 20px;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    color: #1e3682;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.wrap-img-left {
    float: left;
    width: 45%;
    max-width: 550px;
    margin-right: 40px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .target-section {
    background-image: url('../images/merit/merit-bg-02-desktop.webp');
    background-size: 80%;
    background-position: center;
    padding: 60px 20px;
    overflow: visible;
}

.target-container {
    max-width: 100%;
    margin: 0 auto;
} */

.target-container .target-title {
    font-family: 'Noto Serif TC', serif;
    text-align: center;
    color: #1e3682;
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 2px;
}

.target-section {
    position: relative;
    padding: 60px 20px;
}

.target-container {
    max-width: 100%;
    margin: 0 auto;
}

.target-bg-img {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 1600px;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}


.cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.living-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px 100px;
    box-shadow: 0 0 25px rgba(255, 204, 102, 0.4);
}

.underworld-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px 100px;
    box-shadow: 0 0 25px rgba(102, 204, 255, 0.4);
}

.living-subtitle {
    font-family: 'Noto Serif TC', serif;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: bold;
    color: #d58700;
}

.underworld-subtitle {
    font-family: 'Noto Serif TC', serif;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0575b5;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.benefit-list li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.merit-intro-bg {
    background-image: url('../images/merit/merit-bg-03.webp?v=02');
    background-position: 50% 0%;
    background-size: contain;
}

.introduction-section {
    padding: 60px 20px;
}

.introduction-container {
    max-width: 1400px;
    margin: 0 auto;
}

.introduction-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    color: #1e3682;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.8;
}

.introduction-content {
    overflow: hidden;
}

.introduction-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.wrap-img-right {
    float: right;
    width: 45%;
    margin-left: 40px;
    margin-bottom: 20px;
}

.story-title--mobile {
    display: none;
}

.story-title--desktop {
    display: block;
}



@media (max-width: 768px) {

    .merit-quote {
        background-image: url('../images/merit/merit-bg-01-mobile.webp?v=20260627');
        background-size: cover;
        background-position: 30% 90%;
        padding: 50px 20px 20px 20px;
    }

    .merit-quote h1,
    .merit-quote p {
        font-size: 18px;
    }

    .story-layout {
        padding: 40px 20px;
    }

    .story-title {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .wrap-img-left {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 24px 0;
    }

    .story-container p {
        margin-bottom: 20px;
    }


    .target-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/merit/merit-bg-02-mobile.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        z-index: -1;
        -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    }

    .target-bg-img {
        display: none;
    }

    .target-container .target-title {
        margin-bottom: 28px;
        font-size: 28px;
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .living-card,
    .underworld-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .benefit-list li {
        line-height: 1.5;
    }

    .introduction-section {
        padding: 20px 15px;
    }

    .introduction-title {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .wrap-img-right {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 24px 0;
    }

    .introduction-content p {
        margin-bottom: 20px;
    }

    .story-title--mobile {
        display: block;
    }

    .story-title--desktop {
        display: none;
    }


}


/* Dharma-assembly Page */

.dharma-assembly-bg {
    padding-bottom: 50px;
    background-image: url('../images/dharma-assembly/dharma-assembly-bg.webp?v=02');
    background-position: 50% 0%;
    background-size: contain;
}

.dharma-assembly-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.dharma-assembly-title {
    font-family: 'Noto Serif TC', serif;
    text-align: center;
    color: #1e3682;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.5;
}

.dharma-assembly-container h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 4px;
}

.dharma-assembly-container p {
    font-size: 18px;
    margin-bottom: 25px;
}

.dharma-assembly-img {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

.dharma-assembly-img img {
    width: 50%;
    height: auto;
    display: block;
}

.dharma-assembly-member-exclusive {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 80px;
    color: #b28200;
}

.dharma-assembly-action-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.assembly-regist-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
    background-color: #d09a09;
    color: #ffffff;
    padding: 6px 10px 6px 18px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.assembly-regist-btn:hover {
    background-color: #b99326;
}

.assembly-regist-btn span {
    margin-left: 4px;
    font-size: 16px;
    transform: scaleY(2);
    transform: scaleX(0.5);
}


.event-section-title {
    font-family: 'Noto Serif TC', serif;
    text-align: center;
    color: #1e3682;
    font-size: 34px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.event-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.event-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.event-card-img {
    width: 45%;
    height: auto;
    flex-shrink: 0;
    margin-top: 14px;
}

.event-card-content {
    flex-grow: 1;
    line-height: 1.8;
}

.event-card-content p {
    font-size: 18px;
}

.event-card-title {
    color: #1e3682;
    font-family: 'Noto Serif TC', serif;
    font-size: 34px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.event-card-date {
    font-size: 22px !important;
    margin-bottom: 20px !important;
}

.event-card-member {
    color: #b28200;
    font-size: 20px !important;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 30px;
}

.event-action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.event-card-title--mobile {
    display: none;
}

.event-card-title--desktop {
    display: block;
}



@media (max-width: 768px) {

    .dharma-assembly-container {
        padding: 28px 20px;
    }

    .dharma-assembly-title {
        font-size: 28px;
    }

    .dharma-assembly-container h2 {
        margin-bottom: 10px;
    }

    .dharma-assembly-img {
        flex-direction: column;
    }

    .dharma-assembly-img img {
        width: 100%;
    }

    .dharma-assembly-member-exclusive {
        margin-top: 40px;
        text-align: left;
    }

    .dharma-assembly-action-bar {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .event-section-title {
        font-size: 28px;
    }

    .event-container {
        padding: 24px 16px;
    }

    .event-card {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .event-card-img {
        width: 100%;
    }

    .event-card-title {
        margin-bottom: 0;
        font-size: 28px;
    }

    .event-card-date {
        font-size: 20px !important;
    }

    .event-card-title--mobile {
        display: block;
    }

    .event-card-title--desktop {
        display: none;
    }

    .event-action-bar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 0px;
    }


}