/* 색상 변수 정의 - 일관된 색상 사용을 위해 */
:root {
    /* --primary: #9b8f82; */
    --primary: #000000;
    --primary-light: #d4c9bc;
    --primary-lightest: #f8f6f2;
    --accent: #d4b08c;
    --text-dark: #555;
    --text-light: #777;
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-title: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-korean: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    --font-number: 'Montserrat', 'Noto Serif KR', 'Apple SD Gothic Neo', sans-serif;
    --font-body: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    --font-script: 'Nanum Pen Script', 'Apple SD Gothic Neo', cursive;
    --font-fancy: 'Parisienne', 'Times New Roman', cursive;
}

/* 폰트 페이스 정의를 제거하고 Google Fonts에서 불러온 폰트 사용 */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

/* 타이틀 폰트 스타일 */
.title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary);
    letter-spacing: 3px;
    font-family: var(--font-title);
    position: relative;
    display: inline-block;
}

.title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--primary-light);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 한글 폰트 스타일 */
.korean-name, .korean-main, .korean-info, .venue-name, .btn-text, .account-name {
    font-family: var(--font-korean);
    letter-spacing: 0.8px;
    font-weight: 300;
}

.korean-name {
    letter-spacing: 2px;
    font-weight: 400;
}

.korean-main {
    letter-spacing: 1px;
}

.korean-info {
    font-weight: 300;
}

/* 인사말 텍스트 */
.greeting-text {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 15px;
    line-height: 1.9;
    margin: 35px auto 0;
    max-width: 500px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: 0.7px;
    font-weight: 400;
}

.venue-name {
    letter-spacing: 1.2px;
    font-weight: 400;
}

.btn-text {
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: 'Noto Serif KR', serif;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--white);
}

.section {
    padding: 80px 25px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(212, 176, 140, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.divider {
    width: 40px;
    height: 1px;
    background-color: var(--primary-light);
    margin: 1px auto 30px;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.section.visible .divider::after {
    transform: scaleX(1);
}

.english {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 300;
    color: #b5a99a;
}

/* 헤더 섹션 */
.header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('./assert/optimized/KakaoTalk_20260307_091050743_07.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
    position: relative;
    width: 100%;
    min-height: 100vh;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    padding-top: 30%;
}

.main-title {
    font-family: 'Parisienne', cursive !important;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

/* 이름 스타일링 개선 */
.name-wrapper {
    margin: 30px 0;
    position: relative;
    width: 100%;
    max-width: 320px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.names {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.first-name, .second-name {
    display: inline-block;
    position: relative;
    transition: all 0.5s ease;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
    font-family: 'Nanum Pen Script', cursive !important;
    font-size: 54px;
    font-weight: 400;
    transform: rotate(-2deg);
    line-height: 1.3;
}

.first-name {
    transform: rotate(-3deg) translateY(-2px);
}

.second-name {
    transform: rotate(3deg) translateY(2px);
}

.first-name:hover {
    transform: rotate(-1deg) translateY(-4px) scale(1.1);
}

.second-name:hover {
    transform: rotate(1deg) translateY(-2px) scale(1.1);
}

.english-and {
    display: inline-block;
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 300;
    color: #fff;
    font-size: 28px;
    padding: 0 10px;
    margin: 0 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    position: relative;
}

.name-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.decoration-line {
    display: inline-block;
    height: 1px;
    width: 60px;
    background: linear-gradient(to var(--direction, right), transparent, rgba(255, 255, 255, 0.8) 50%, transparent);
    position: relative;
}

.decoration-line:first-child {
    --direction: right;
}

.decoration-line:last-child {
    --direction: left;
}

.decoration-heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    margin: 0 10px;
    position: relative;
    animation: pulse-light 2s infinite ease-in-out;
}

@keyframes pulse-light {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

/* 날짜 스타일 개선 */
.date-simple {
    font-size: 17px;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    font-weight: 300;
    font-family: var(--font-title);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
    animation: pulse 2s ease-in-out infinite;
}

.day-text, .time-text {
    font-family: var(--font-title);
    font-style: italic;
}

.time-text {
    font-family: var(--font-title);
    font-style: italic;
}

/* 숫자 스타일링 */
.date-year, .date-number, .address-number, .account-digits, .tel-number {
    font-family: var(--font-number);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* 애니메이션 정의 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.scroll-icon {
    position: absolute;
    bottom: 40px;
    font-size: 14px;
    opacity: 0.85;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* 인사말 섹션 */
.greeting {
    background-color: var(--white);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    padding: 80px 20px;
    letter-spacing: 0.5px;
}

.greeting p {
    max-width: 550px;
    margin: 0 auto;
    word-break: keep-all;
}

/* 신랑신부 정보 */
.couple-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.couple-names {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.groom, .bride {
    text-align: center;
    padding: 0 25px;
    transition: transform 0.4s ease;
}

.groom:hover, .bride:hover {
    transform: translateY(-5px);
}

.and-divider {
    margin: 0 5px;
    color: var(--primary-light);
    font-size: 14px;
    line-height: 1;
}

.person-name {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.person-eng-name {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 5px;
    color: var(--text-light);
    white-space: nowrap;
}

.parents {
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.8;
    color: var(--text-light);
    letter-spacing: 0.8px;
    white-space: nowrap;
    font-family: var(--font-body);
}

.child-relation {
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary);
    margin-top: 5px;
    letter-spacing: 0.8px;
    font-family: var(--font-body);
}

/* 날짜 및 장소 정보 */
.date-venue {
    background-color: var(--primary-lightest);
    box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.02),
                inset 0 -5px 5px -5px rgba(0, 0, 0, 0.02);
}

.date-venue .title {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--primary);
}

.map-container {
    max-width: 100%;
    height: auto;
    margin: 20px auto 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    /* border: 1px solid #f0ebe6; */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.map-container img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 버튼 */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.btn, .copy-btn {
    padding: 14px 22px;
    background-color: white;
    color: var(--primary) !important;
    border: 1px solid var(--primary-light);
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.btn:hover, .copy-btn:hover {
    background-color: var(--primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:active, .copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn svg, .copy-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.btn .btn-text, .copy-btn .btn-text {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 1px;
}

/* 복사 버튼 특별 스타일 */
.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #ffffff;
    color: var(--primary) !important;
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--primary-light);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    min-width: 80px;
    height: 36px;
    cursor: pointer;
    margin-top: 15px;
}

.copy-btn.copied {
    animation: pulse 0.5s;
    background-color: var(--primary);
    color: white !important;
}

.copy-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.copy-btn .btn-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.1s ease;
}

.copy-btn:hover svg,
.copy-btn:hover .btn-text {
    color: white !important;
}

.copy-btn:active svg,
.copy-btn:active .btn-text {
    color: white !important;
}

/* 링크 버튼 스타일 추가 */
a.btn {
    color: var(--primary) !important;
    text-decoration: none;
}

a.btn:hover {
    color: var(--white) !important;
}

a.btn:visited, a.btn:active {
    color: inherit;
}

/* 갤러리 섹션 */
.gallery-section {
    background-color: var(--white);
    padding: 80px 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img.loaded {
    opacity: 1;
    transform: scale(1);
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 로딩 인디케이터 스타일 */
.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; /* 기본적으로 표시 상태로 변경 */
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* 배경색 불투명도 증가 */
    z-index: 100; /* z-index 증가 */
    pointer-events: none; /* 로딩 인디케이터가 클릭을 방지하지 않도록 함 */
    /* 안드로이드 호환성을 위한 속성 추가 */
    -webkit-backface-visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.loading-spinner {
    width: 60px; /* 크기 증가 */
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.5); /* 더 두껍고 명확한 테두리 */
    border-radius: 50%;
    border-top: 6px solid #ffffff;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* 그림자 추가로 가시성 향상 */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Android 브라우저를 위한 추가 애니메이션 정의 */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

.swiper-zoom-container img.loaded {
    opacity: 1;
}

/* 이미지 로드 상태에 따른 스타일 */
.gallery-full-image {
    transition: opacity 0.3s ease;
}

/* 로딩 상태 버튼 추가 */
.swiper-slide-active .loading-indicator {
    z-index: 200; /* 활성 슬라이드의 로딩 인디케이터는 더 높은 z-index */
    /* 안드로이드 가시성 개선 */
    background-color: rgba(0, 0, 0, 0.6);
}

/* 모달이 열려있을 때 body 스타일 */
body.modal-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 0;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close::before,
.modal-close::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

.modal-close::before {
    transform: rotate(45deg);
}

.modal-close::after {
    transform: rotate(-45deg);
}

/* Swiper 스타일 */
.swiper {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    display: flex;
    align-items: center;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-zoom-container img {
    max-width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* 페이지네이션 스타일 */
.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    margin: 0 3px;
    border-radius: 50%;
}

.swiper-pagination-bullets {
    width: 90%;
    max-width: 500px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0 auto;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
    width: 8px;
    height: 8px;
}

/* 확대/축소 관련 스타일 */
.swiper-slide-zoomed .swiper-zoom-container {
    cursor: move;
}

.swiper-zoom-container {
    transition: transform 0.3s ease;
}

/* 로딩 최적화 */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.zoom-controls {
    position: absolute;
    bottom: 60px;
    right: 20px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.zoom-button {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.zoom-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.zoom-in:before,
.zoom-out:before,
.zoom-out:after,
.zoom-reset:before {
    content: '';
    position: absolute;
    background-color: white;
}

.zoom-in:before {
    width: 15px;
    height: 2px;
    border-radius: 1px;
}

.zoom-in:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    border-radius: 1px;
    background-color: white;
}

.zoom-out:before {
    width: 15px;
    height: 2px;
    border-radius: 1px;
}

.zoom-reset:before {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 2px;
    background: none;
}

/* 스와이퍼 탐색 버튼 스타일 */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* 계좌번호 섹션 */
.account-section {
    margin-top: 0;
    padding: 90px 25px;
    position: relative;
    background-color: var(--primary-lightest);
    border-top: 1px solid rgba(212, 176, 140, 0.05);
    border-bottom: 1px solid rgba(212, 176, 140, 0.05);
    overflow: hidden;
}

.account-section::before,
.account-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid var(--primary-light);
    opacity: 0.15;
    border-radius: 100%;
    z-index: 0;
}

.account-section::before {
    top: -100px;
    left: -100px;
}

.account-section::after {
    bottom: -100px;
    right: -100px;
}

.account-info {
    max-width: 520px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.account-item {
    background-color: var(--white);
    border-radius: 18px;
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.account-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.account-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-light), var(--accent));
    opacity: 0.6;
}

.account-name {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    font-family: var(--font-body);
}

.account-name::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--primary-light);
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.account-name .role {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 5px;
}

.account-number {
    font-family: var(--font-number);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    /* margin: 14px 0; */
    letter-spacing: 1.2px;
    word-spacing: 2px;
}

.account-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.account-holder {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: var(--font-body);
    letter-spacing: 0.7px;
}

/* 푸터 */
footer {
    padding: 50px 0 40px;
    margin-top: 0;
    text-align: center;
    background-color: var(--primary-lightest);
    border-top: 1px solid rgba(212, 176, 140, 0.05);
    box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.02);
}

.footer-decoration {
    margin-bottom: 25px;
}

.footer-decoration .decoration-line {
    height: 1px;
    width: 50px;
    background-color: #d4b08c;
    display: inline-block;
}

.footer-decoration .decoration-heart {
    margin: 0 15px;
    font-size: 16px;
    color: #d4b08c;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-names {
    font-family: var(--font-title);
    font-size: 26px;
    letter-spacing: 4px;
    color: #9c836a;
    /* margin-bottom: 10px; */
    font-weight: 300;
}

.korean-nicknames {
    font-family: var(--font-body);
    font-size: 22px;
    letter-spacing: 2px;
    color: #b9a89a;
    margin-bottom: 15px;
    /* margin-top: 5px; */
}

.footer-date {
    font-family: var(--font-number);
    font-size: 15px;
    letter-spacing: 2px;
    color: #9c836a;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-message {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 18px;
    color: #b9a89a;
    letter-spacing: 2px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .footer-names {
        font-size: 20px;
    }

    .korean-nicknames {
        font-size: 18px;
        letter-spacing: 1px;
        margin-bottom: 12px;
        /* margin-top: 3px; */
    }

    .footer-date {
        font-size: 12px;
    }

    .footer-message {
        font-size: 14px;
    }
}

/* 섹션 애니메이션 */
.animate-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 전화번호 및 계좌번호 스타일 재정의 */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.account-number, .info-content {
    color: #777;
    text-decoration: none;
    -webkit-text-fill-color: #777;
    cursor: default;
}

.tel-number {
    color: #777;
    text-decoration: none;
    -webkit-text-fill-color: #777;
    cursor: default;
}

/* 모바일 번호 자동 링크 방지 */
@media (hover: none) {
    a[href^="tel:"] {
        color: inherit !important;
        text-decoration: none !important;
    }

    .account-number, .info-content, .tel-number {
        color: #777 !important;
        text-decoration: none !important;
        -webkit-text-fill-color: #777 !important;
    }
}

/* 스크롤 방지 */
body.no-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* 달력 섹션 스타일 */
.calendar-section {
    background-color: var(--primary-lightest);
    padding: 80px 25px;
    box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.02),
                inset 0 -5px 5px -5px rgba(0, 0, 0, 0.02);
}

.calendar-container {
    width: 95%;
    max-width: 350px;
    margin: 0 auto;    /* 가운데 정렬 */
    /* margin: 20px auto 0; */
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 20px 15px;   /* 양옆에 살짝 여유를 줌 */
    /* padding: 15px; */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* 패딩이 너비에 포함되도록 설정 */
}

@media screen and (max-width: 340px) {
    .calendar-container {
        padding: 15px 10px;
    }
    .day {
        font-size: 0.8rem; /* 화면이 너무 작으면 글자 크기 축소 */
    }
}

.calendar-container:hover {
    transform: scale(1.02);
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-light), var(--accent));
}

.calendar-header {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.month-year {
    font-family: var(--font-title);
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 2px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* gap: 8px; */
    gap: 5px;            /* 칸 사이 간격 */
    text-align: center;
}


/* 시작 변경본*/
.weekday, .day {
    width: 100%;         /* 그리드 칸에 맞춤 */
    aspect-ratio: 1 / 1; /* 가로세로 1:1 비율 유지 (동그란 모양 잡기 좋음) */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;   /* 글자 크기를 rem 단위로 하면 가독성이 좋음 */
}
/* 종료 변경본*/

.day:hover:not(.empty):not(.wedding-day) {
    background-color: #f0ebe6;
    transform: translateY(-2px);
}

.day.wedding-day {
    border-radius: 50%;  /* 원형 강조 */
    transform: scale(1.1); /* 너무 크게 키우면 옆 칸과 겹치니 주의 */
    z-index: 1;

    background-color:rgb(248, 231, 214);
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    animation: wedding-day-pulse 2s infinite ease-in-out;
}

@keyframes wedding-day-pulse {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        transform: scale(1.15);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        transform: scale(1.2);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        transform: scale(1.15);
    }
}

.day.wedding-day::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    background-color: #eaa;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(252, 198, 198, 0.8);
}

@keyframes heartbeat {
    0% {
        transform: scale(1.15);
    }
    5% {
        transform: scale(1.2);
    }
    10% {
        transform: scale(1.15);
    }
    15% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.15);
    }
}

.day:first-child, .day:nth-child(8), .day:nth-child(15), .day:nth-child(22), .day:nth-child(29), .day:nth-child(36) {
    color: #d4a5a5;
}

.day.empty {
    visibility: hidden;
}

.wedding-time {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wedding-time-info {
    font-family: var(--font-title);
    font-size: 20px;
    color: #9b8f82;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
}

.wedding-time-detail {
    font-size: 14px;
    color: #777;
    font-weight: 300;
    letter-spacing: 0.8px;
    font-family: var(--font-body);
}

/* 홀짝 섹션 배경색 구분 - 좀 더 뚜렷한 구분을 위해 색상 대비 약간 강화 */
.section:nth-of-type(odd) {
    background-color: var(--primary-lightest);
    box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.02),
                inset 0 -5px 5px -5px rgba(0, 0, 0, 0.02);
}

/* 첫 번째 섹션은 테두리 제거 */
.section:first-of-type {
    border-top: none;
}

/* 짝수 섹션 스타일 */
.section:nth-of-type(even) {
    background-color: var(--white);
}

/* 계좌번호 영문 스타일 */
.account-bank {
    font-family: var(--font-title);
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 1.2px;
    font-style: italic;
    margin-bottom: 5px;
}

/* 섹션 타이틀 */
.section .title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: none;
    font-style: italic;
}

/* 헤더 타이틀은 기존 스타일 유지 */
.header .title {
    font-family: 'Parisienne', cursive;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* 헤더 메인 타이틀도 기존 스타일 유지 */
.header .main-title {
    font-family: 'Parisienne', cursive !important;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

/* 헤더 내 person-name 스타일 추가 */
.header-content .person-name {
    color: var(--white);
    font-size: 30px;
    margin: 0 8px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Nanum Myeongjo', serif;
}

.couple-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 40px auto;
    padding: 0 15px;
    max-width: 650px;
}

@media (max-width: 480px) {
    .groom, .bride {
        padding: 0 10px;
    }

    .and-divider {
        margin: 0 5px;
    }

    .person-eng-name {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .buttons {
        gap: 15px;
    }

    .btn, .copy-btn {
        padding: 12px 18px;
        font-size: 12px;
    }
}

.account-section .title {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: none;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.account-section .title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--primary-light);
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.account-section .title::before {
    content: '';
    font-size: 12px;
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    color: var(--primary-light);
    opacity: 0.8;
}

.account-section .divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
    margin: 10px auto 40px;
    position: relative;
    overflow: visible;
}

.account-section .divider::after {
    display: none;
}

/* 계좌번호 아코디언 스타일 */
.account-accordion {
    max-width: 500px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    background-color: var(--white);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background-color: white;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-light), var(--accent));
    opacity: 0.6;
}

.accordion-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1.2px;
    margin: 0;
}

.accordion-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
    padding: 0 15px 0;
    margin-top: 0;
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* 충분히 큰 값으로 설정 */
    padding: 15px 15px 10px;
    margin-top: 5px;
    border-top: 1px solid rgba(155, 143, 130, 0.1);
    overflow-y: auto;
}

.accordion-content::-webkit-scrollbar {
    width: 4px;
}

.accordion-content::-webkit-scrollbar-track {
    background: transparent;
}

.accordion-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 6px;
}

/* 계좌번호 카드 스타일 수정 */
.accordion-content .account-item {
    background-color: var(--primary-lightest);
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: none;
    margin-top: 0;
}

.accordion-content .account-item::before {
    display: none;
}

.accordion-content .account-name {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.accordion-content .account-number {
    font-family: var(--font-number);
    font-size: 16px;
    letter-spacing: 1px;
    word-spacing: 1px;
}

/* 장소 및 교통 정보 스타일 */
.venue-details {
    background-color: var(--primary-lightest);
    border-radius: 8px;
    padding: 30px 20px;
    margin-top: 40px;
}

.venue-details .info-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary);
    letter-spacing: 1.5px;
}

.venue-contact {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--primary-light);
}

.venue-contact .venue-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.venue-contact p {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.transport-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.transport-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(155, 143, 130, 0.1);
}

.transport-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transport-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--primary);
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.transport-title::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.transport-item p {
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .venue-details {
        padding: 25px 15px;
    }

    .transport-info {
        font-size: 14px;
    }

    .transport-title {
        font-size: 15px;
    }

    .transport-item p {
        font-size: 13px;
    }
}

/* 약도 및 찾아오시는 길 섹션 개선 */
.directions-container {
    max-width: 90%;
    margin: 35px auto 20px;
    padding: 0;
}

.directions-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.directions-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 60%);
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.directions-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 30%, var(--primary-light) 100%);
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.directions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.directions-card:hover::before {
    transform: scale(1.5) translateX(10px);
    opacity: 0.7;
}

.directions-card:hover::after {
    transform: scale(1.3) translateX(-10px);
    opacity: 0.7;
}

.directions-header {
    display: flex;
    align-items: center;
    padding: 25px 30px 22px;
    border-bottom: none;
    background-color: #ffffff;
    position: relative;
}

.directions-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background-color: rgba(155, 143, 130, 0.15);
}

.directions-icon {
    width: 32px;
    height: 32px;
    margin-right: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.venue-contact {
    flex-grow: 1;
}

.venue-contact .venue-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
    transform-origin: left center;
    transition: all 0.3s ease;
}

.directions-card:hover .venue-name {
    transform: scale(1.03);
    color: var(--primary-dark);
}

.venue-contact p {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.directions-card:hover .venue-contact p {
    color: var(--text-darker);
}

.venue-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
}

.icon-btn-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #ffffff;
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--primary-light);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    min-width: 80px;
    height: 36px;
}

.icon-btn-with-text span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.icon-btn-with-text:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.icon-btn-with-text:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.1s ease;
}

.icon-btn-with-text:hover svg,
.icon-btn-with-text:hover span {
    color: white;
}

.icon-btn-with-text:active svg,
.icon-btn-with-text:active span {
    color: white;
}

.icon-btn-with-text svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.line6 {
    background-color: #b5500b;
}

.metro-station {
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
    color: var(--primary);
}

.metro-info {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.9;
}

.shuttle-info {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(212, 176, 140, 0.1), rgba(212, 176, 140, 0.05));
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: 15px;
    border-left: 3px solid rgba(212, 176, 140, 0.3);
    transition: all 0.3s ease;
    flex-direction: row;
    flex-wrap: nowrap;
}

.shuttle-info:hover {
    border-left-width: 5px;
    background: linear-gradient(to right, rgba(212, 176, 140, 0.15), rgba(212, 176, 140, 0.05));
    transform: translateX(3px);
}

.shuttle-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--primary);
    flex-shrink: 0;
}

.shuttle-info p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 버스 정보 */
.bus-stop {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.bus-stop::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary);
    font-size: 20px;
}

.highlight {
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
    padding: 2px 8px;
    background-color: rgba(212, 176, 140, 0.15);
    border-radius: 4px;
    margin-right: 5px;
}

.bus-lines {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    padding-left: 20px;
    line-height: 1.5;
}

/* 자가용 정보 */
.route-item {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    background-color: rgba(235, 230, 225, 0.2);
    padding: 12px 15px 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.route-item:hover {
    background-color: rgba(235, 230, 225, 0.35);
    transform: translateX(3px);
}

.route-item::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: var(--primary);
}

.parking-info {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(212, 176, 140, 0.1), rgba(212, 176, 140, 0.05));
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: 18px;
    border-left: 3px solid rgba(212, 176, 140, 0.3);
    transition: all 0.3s ease;
    flex-direction: row;
    flex-wrap: nowrap;
}

.parking-info:hover {
    border-left-width: 5px;
    background: linear-gradient(to right, rgba(212, 176, 140, 0.15), rgba(212, 176, 140, 0.05));
    transform: translateX(3px);
}

.parking-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--primary);
    flex-shrink: 0;
}

.parking-info p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.venue-contact a {
    color: var(--text-dark);
    text-decoration: none;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .directions-container {
        max-width: 95%;
    }

    .directions-header {
        padding: 20px 22px;
    }

    .venue-contact .venue-name {
        font-size: 18px;
    }

    .tab-content {
        padding: 22px 20px;
    }

    .icon-btn-with-text {
        padding: 7px 14px;
        min-width: 75px;
        height: 34px;
    }

    .icon-btn-with-text span {
        font-size: 13px;
    }

    .copy-btn {
        padding: 7px 14px;
        min-width: 75px;
        height: 34px;
    }

    .copy-btn .btn-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .directions-header {
        padding: 18px 15px;
        flex-wrap: wrap;
    }

    .venue-contact {
        width: 100%;
        text-align: center;
    }

    .venue-buttons {
        margin-top: 12px;
        justify-content: center;
    }

    .icon-btn-with-text {
        padding: 6px 12px;
        min-width: 70px;
        height: 32px;
    }

    .icon-btn-with-text svg {
        width: 16px;
        height: 16px;
    }

    .icon-btn-with-text span {
        font-size: 12px;
    }

    .copy-btn {
        padding: 6px 12px;
        min-width: 70px;
        height: 32px;
    }

    .copy-btn svg {
        width: 16px;
        height: 16px;
    }

    .copy-btn .btn-text {
        font-size: 12px;
    }

    .venue-contact .venue-name {
        font-size: 17px;
    }

    .venue-contact p {
        font-size: 14px;
    }

    .tab {
        padding: 14px 5px;
    }

    .tab-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 6px;
    }

    .tab span {
        font-size: 13px;
    }

    .tab-content {
        padding: 18px 15px;
    }

    .metro-line {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        font-size: 13px;
    }

    .metro-station {
        font-size: 14px;
        margin-right: 8px;
    }

    .metro-info {
        font-size: 11x;
    }

    .transport-item-simple {
        padding: 12px;
        margin-bottom: 15px;
    }

    .shuttle-info, .parking-info {
        padding: 10px 12px;
        flex-direction: row;
        border-radius: 8px;
    }

    .shuttle-icon, .parking-icon {
        margin-right: 8px;
        margin-bottom: 0;
        width: 18px;
        height: 18px;
    }

    .shuttle-info p, .parking-info p {
        font-size: 12px;
    }

    .bus-stop {
        font-size: 14px;
    }

    .bus-lines {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .route-item {
        font-size: 13px;
        padding: 10px 10px 10px 25px;
        margin-bottom: 10px;
    }
}

/* 탭 네비게이션 개선 */
.transportation-tabs {
    display: flex;
    justify-content: space-around;
    padding: 0 5px;
    background-color: #fff;
    position: relative;
    border-bottom: 1px solid rgba(155, 143, 130, 0.1);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    width: 33.333%;
    cursor: pointer;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 176, 140, 0.08) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 0;
}

.tab.active {
    color: var(--primary);
    font-weight: 500;
}

.tab.active::before {
    width: 60%;
}

.tab.active::after {
    opacity: 1;
    transform: scale(1);
}

.tab:hover:not(.active)::before {
    width: 30%;
}

.tab:hover:not(.active)::after {
    opacity: 0.5;
    transform: scale(0.95);
}

.tab-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
    stroke: currentColor;
    transition: color 0.3s ease; /* 색상 변화만 적용되도록 수정 */
    position: relative;
    z-index: 1;
}

.tab.active .tab-icon {
    /* 확대/축소 효과 제거 */
    color: var(--primary);
}

.tab span {
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease; /* 색상 변화만 적용되도록 수정 */
    position: relative;
    z-index: 1;
}

.tab.active span {
    /* 확대/축소 및 이동 효과 제거 */
    color: var(--primary);
}

/* 탭 콘텐츠 개선 */
.tab-content {
    display: none;
    padding: 30px 30px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.transport-detail {
    text-align: left;
}

/* 지하철 정보 */
.transport-item-simple {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    background-color: rgba(235, 230, 225, 0.3);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.transport-item-simple:hover {
    background-color: rgba(235, 230, 225, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.06);
}

.metro-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-right: 15px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

/* 알림띠 스타일 */
.notice-banner {
    max-width: 88%;
    margin: 20px auto 40px;
    background-color: #FFF8F1;
    border: 1px solid #EADCCF;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(212, 176, 140, 0.15);
    font-family: var(--font-korean);
    z-index: 10;
}

.notice-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), #9B4B00);
}

.notice-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}

.notice-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin: 0 0 12px 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.notice-body {
    display: flex;
    align-items: center;
    width: 100%;
}

.notice-icon-container {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: rgba(155, 75, 0, 0.1);
    border-radius: 50%;
    margin-right: 14px;
}

.notice-message {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.notice-icon {
    stroke: #9B4B00;
    stroke-width: 2;
}

.notice-message strong {
    color: #9B4B00;
    font-weight: 700;
    border-bottom: 1px dotted #9B4B00;
    padding-bottom: 1px;
}

.notice-text strong {
    color: #9B4B00;
    font-weight: 700;
    border-bottom: 1px dotted #9B4B00;
    padding-bottom: 1px;
}

@media (max-width: 480px) {
    .notice-banner {
        max-width: 92%;
        margin: 15px auto 30px;
    }

    .notice-content {
        padding: 16px 18px;
    }

    .notice-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .notice-icon-container {
        width: 28px;
        height: 28px;
        margin-right: 12px;
    }

    .notice-message {
        font-size: 13px;
    }
}
