/* 기본 폰트 및 배경 설정 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #fdfbf7; /* 한지 느낌의 미색 배경 */
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Noto Serif KR', serif;
}

/* 유틸리티 클래스 */
.text-temple-gold { color: #c5a059; }
.bg-temple-gold { background-color: #c5a059; }
.text-temple-green { color: #5d7155; }
.btn-hover { transition: transform 0.2s; }
.btn-hover:hover { transform: translateY(-2px); }

/* 네비게이션 바 */
nav {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    /* 네비게이션이 다른 요소에 가려지지 않도록 최상위로 올림 */
    z-index: 1000;
    position: fixed; /* Tailwind의 fixed 클래스가 없을 경우 대비 */
    width: 100%;
    top: 0;
}

/* 모바일 메뉴 애니메이션 */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 500px;
}

/* 스크롤 등장 애니메이션 */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 탭 버튼 스타일 */
.tab-btn.active {
    border-bottom: 2px solid #333;
    color: #000;
    font-weight: 700;
}
.tab-btn {
    color: #999;
    transition: all 0.3s;
}

/* 갤러리 이미지 호버 효과 */
.gallery-item {
    overflow: hidden;
    border-radius: 0.5rem;
}
.gallery-item img {
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* 로딩 인디케이터 */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #c5a059;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* 모달 및 라이트박스 (팝업) */
#modal-overlay, #lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 네비게이션(1000)보다 더 위에 뜨도록 설정 */
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
#modal-overlay { background: rgba(0, 0, 0, 0.5); }
#lightbox-overlay { background: rgba(0, 0, 0, 0.9); }
#modal-overlay.open, #lightbox-overlay.open { display: flex; }

/* 맨 위로 가기 버튼 */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
#scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* 아코디언 (Q&A) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-item.active .accordion-content {
    max-height: 500px;
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}