/* ===================================
   웨딩센스 - 박람회 페이지 스타일 CSS
   style-expo.css
   =================================== */

/* ===================================
   Container Override for Expo Pages
   =================================== */
.expo-list-section .container,
.expo-hero-section .container {
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: var(--gradient-romantic);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    transform: rotate(45deg);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    justify-content: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--white);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* ===================================
   Region Info Section
   =================================== */
.region-info-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.region-banner {
    background: var(--white);
    border-radius: var(--radius-large);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.region-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-text);
}

.region-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.region-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.region-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.region-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-background);
    border-radius: var(--radius-medium);
    transition: var(--transition-base);
}

.region-features .feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(232, 180, 184, 0.05) 100%);
    transform: translateX(10px);
}

.region-features .feature-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.region-features .feature-item span {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

.region-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-image);
}

.region-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base);
}

.region-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   Expo Filter Section - 가로 레이아웃 디자인
   =================================== */
.expo-filter-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #fff5f7 0%, #fff 100%);
    border-bottom: none;
}

/* Filter Tags - 지역 필터 버튼 스타일 */
.filter-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.filter-tag {
    padding: 0.625rem 1.5rem;
    border: 2px solid #f0d4d7;
    background: #fff;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c6c6c;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    outline: none;
}

.filter-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(255, 107, 157, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 47, 82, 0.15);
}

.filter-tag.active {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffc0cb 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    font-weight: 700;
}

.filter-tag.active:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.filter-form {
    width: 100%;
}

.filter-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.08);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 1 auto;
    min-width: 0;
}

.filter-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8f2f52;
    white-space: nowrap;
    margin-bottom: 0;
    flex-shrink: 0;
}

.form-select {
    width: 160px;
    padding: 0.75rem 2rem 0.75rem 1rem;
    border: 1px solid #f0d4d7;
    border-radius: 12px;
    background-color: #fafafa;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff6b9d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 16px 12px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.form-select:hover {
    background-color: #fff;
    border-color: #e8b4b8;
}

.form-select:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
    background-color: #fff;
}

.form-select option {
    padding: 0.5rem;
    font-weight: 400;
}

.btn-filter {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffc0cb 100%);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
    min-height: 42px;
    flex-shrink: 0;
}

.btn-filter i {
    color: #fff !important;
    font-size: 1.1rem;
}

.btn-filter:hover {
    background: linear-gradient(135deg, #ff5a8d 0%, #ffadb9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    color: #fff !important;
}

.btn-filter:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
}

/* 태블릿 반응형 */
@media (max-width: 992px) {
    .filter-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .filter-group {
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    .btn-filter {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* 모바일 반응형 */
@media (max-width: 576px) {
    .expo-filter-section {
        padding: 1.5rem 0;
    }
    
    .filter-wrapper {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .filter-group {
        flex: 1 1 100%;
        justify-content: space-between;
    }
    
    .filter-label {
        font-size: 0.8rem;
    }
    
    .form-select {
        flex: 1;
        max-width: 65%;
    }
    
    .btn-filter {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Partners Section  
   =================================== */
.partners-section {
    padding: 5rem 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-background);
    border-radius: var(--radius-large);
    transition: var(--transition-base);
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    background: var(--white);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-round);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.partner-category {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(232, 180, 184, 0.05) 100%);
}

.cta-box {
    padding: 4rem;
    background: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: var(--gradient-romantic);
    opacity: 0.05;
    border-radius: var(--radius-round);
    transform: rotate(45deg);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    color: var(--color-text);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-background);
    border-radius: var(--radius-pill);
    font-weight: 500;
    color: var(--color-text);
}

.cta-feature i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* ===================================
   No Expo Message
   =================================== */
.no-expo-message {
    grid-column: 1 / -1;
    padding: 5rem 2rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-large);
    border: 2px dashed var(--color-border);
}

.no-expo-message h3 {
    color: var(--color-text);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.no-expo-message p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

/* ===================================
   Expo List Section
   =================================== */
.expo-list-section {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

.expo-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.expo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expo-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    position: relative;
}

.expo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary-light);
}

/* D-Day 기반 카드 강조 효과 */
.expo-card.dday-urgent-card {
    border: 2px solid #ff4757;
    background: linear-gradient(to bottom, #fff5f5 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.2);
    animation: urgent-pulse 2s ease-in-out infinite;
}

.expo-card.dday-soon-card {
    border: 2px solid #ff9f43;
    background: linear-gradient(to bottom, #fffaf0 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(255, 159, 67, 0.15);
}

.expo-card.dday-near-card {
    border: 2px solid #ffa502;
    background: linear-gradient(to bottom, #fffbf5 0%, #ffffff 100%);
    box-shadow: 0 3px 12px rgba(255, 165, 2, 0.1);
}

/* 긴급 카드 애니메이션 */
@keyframes urgent-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 71, 87, 0.4);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.2);
    }
}

/* 카드 헤더 색상 변경 */
.expo-card.dday-urgent-card .expo-card-header {
    background: linear-gradient(135deg, #ffe5e7 0%, #ffcdd1 100%);
}

.expo-card.dday-soon-card .expo-card-header {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.expo-card.dday-near-card .expo-card-header {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

/* 호버 효과 강화 */
.expo-card.dday-urgent-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.3);
}

.expo-card.dday-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(255, 159, 67, 0.25);
}

.expo-card.dday-near-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(255, 165, 2, 0.2);
}

.expo-card-header {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expo-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-medium);
    padding: 0.5rem 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.date-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.expo-status-badge {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-upcoming {
    background: var(--color-success-light);
    color: var(--color-success);
}

.status-ongoing {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.status-ended {
    background: var(--color-secondary-light);
    color: var(--color-secondary);
}

.expo-card-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.expo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.expo-card:hover .expo-card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.expo-card:hover .image-overlay {
    opacity: 1;
}

.btn-view-detail {
    padding: 0.5rem 1.5rem;
    background: var(--white);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.expo-card:hover .btn-view-detail {
    transform: translateY(0);
}

.expo-card-body {
    padding: 1.25rem;
}

.expo-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.3;
}

.expo-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.info-item i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.expo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.expo-description {
    margin-bottom: 0.75rem;
}

.expo-description p {
    color: var(--color-text-light);
    line-height: 1.4;
    margin: 0;
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-tag {
    padding: 0.25rem 0.5rem;
    background: var(--gradient-subtle);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}

.expo-card-footer {
    padding: 0.75rem 1.25rem;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.expo-price {
    color: var(--color-text-light);
}

.expo-price strong {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.expo-visitors {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.footer-actions {
    display: flex;
    gap: 1rem;
}

.btn-reserve {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-medium);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-reserve:hover {
    background: var(--gradient-primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.btn-share {
    padding: 0.75rem;
    background: var(--white);
    color: var(--color-text-light);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-medium);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-share:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-light);
}

/* No Expo Message */
.no-expo-message {
    grid-column: 1 / -1;
    padding: 3rem;
    background: var(--color-background);
    border-radius: var(--radius-large);
    text-align: center;
}

.no-expo-message h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.no-expo-message .btn {
    margin-top: 1.5rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-romantic);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L40 20 L30 35 L20 20 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    animation: float 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Partners Section
   =================================== */
.partners-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-round);
    overflow: hidden;
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.partner-category {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===================================
   Responsive Styles
   =================================== */

/* 대형 화면 (1200px 이상) - 4열 유지 */
@media (min-width: 1200px) {
    .expo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 중형 화면 (992px ~ 1199px) - 3열 */
@media (max-width: 1199px) and (min-width: 992px) {
    .expo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 태블릿 (768px ~ 991px) - 2열 */
@media (max-width: 991px) and (min-width: 769px) {
    .expo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
    .region-banner {
        padding: 2rem;
    }
    
    .region-title {
        font-size: 2rem;
    }
    
    .expo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
    }
}

/* ===================================
   Expo Timeline Section
   =================================== */
.expo-timeline {
    position: relative;
    padding: 3rem 0;
}

.expo-timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.expo-timeline-item:last-child {
    margin-bottom: 0;
}

.expo-timeline-item[data-aos="fade-left"] {
    flex-direction: row-reverse;
}

.timeline-date {
    flex-shrink: 0;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-large);
    text-align: center;
    min-width: 100px;
    box-shadow: var(--shadow-card);
}

.timeline-date .month {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.timeline-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.expo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.expo-details {
    margin-bottom: 1.5rem;
}

.expo-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.expo-details i {
    color: var(--color-primary);
    width: 20px;
}

.expo-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    padding: 0.375rem 0.875rem;
    background: var(--gradient-subtle);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Honeymoon Specific Styles */
.honeymoon-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.honeymoon-expo-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.destinations-section {
    padding: 5rem 0;
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.destination-price {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-medium);
    font-weight: 700;
    color: var(--color-primary);
}

.destination-content {
    padding: 1.5rem;
}

.destination-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.destination-desc {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.destination-features {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.destination-features i {
    color: var(--color-primary);
}

/* Special Offers Section */
.special-offers-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(232, 180, 184, 0.05) 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--radius-round);
}

.offer-icon i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.offer-desc {
    color: var(--color-text-light);
}

/* CTA Section */
.honeymoon-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Filter Section */
    .filter-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .btn-filter {
        width: 100%;
        justify-content: center;
    }
    
    /* Timeline */
    .expo-timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-date {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Expo Cards */
    .expo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expo-card-body {
        padding: 1rem;
    }
    
    .expo-title {
        font-size: 1rem;
    }
    
    /* Page Header */
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Continue with existing styles below */

/* D-Day 배지 스타일 */
.dday-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 12px;
    vertical-align: middle;
}

/* D-30일 이상 (일반) */
.dday-badge.dday-normal {
    background-color: #e8f5e9;
    color: #2e7d32;
}

/* D-14 ~ D-30 (가까워짐) */
.dday-badge.dday-near {
    background-color: #fff3e0;
    color: #ef6c00;
}

/* D-7 ~ D-14 (곧 시작) */
.dday-badge.dday-soon {
    background-color: #ffeaa7;
    color: #d63031;
    animation: pulse 2s infinite;
}

/* D-3 이내 (매우 임박) */
.dday-badge.dday-urgent {
    background-color: #ff4757;
    color: #ffffff;
    font-weight: bold;
    animation: blink 1s infinite;
}

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

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===================================
   Date Filter Tabs Section
   =================================== */
.date-filter-tabs-section {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.date-filter-tabs-section .container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

#date-filter-tabs {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    flex: 1;
}

/* 좌우 네비게이션 버튼 */
.date-tabs-nav {
    position: relative;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 102;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.date-tabs-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(143, 47, 82, 0.3);
}

.date-tabs-nav:hover i {
    color: #fff !important;
}

.date-tabs-nav.prev {
    order: -1;
}

.date-tabs-nav.next {
    order: 1;
}

.date-tabs-nav i {
    color: var(--color-primary);
    font-size: 16px;
}

.date-tabs-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* 모바일에서는 버튼 숨기기 (스와이프로 대체) */
@media (max-width: 768px) {
    .date-tabs-nav {
        display: none;
    }
}

#date-tabs-ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 100%;
    white-space: nowrap;
    gap: 0;
}

#date-tabs-ul li {
    flex: 0 0 auto;
    border-right: 1px solid #e0e0e0;
}

#date-tabs-ul li:first-child {
    border-left: 1px solid #e0e0e0;
}

#date-tabs-ul li a {
    display: inline-block;
    padding: 12px 20px;
    color: #6c6c6c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

#date-tabs-ul li a:hover {
    background: #f8f9fa;
    color: var(--color-primary);
}

#date-tabs-ul li.active a {
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 600;
}

#date-tabs-ul li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
}

/* 박람회 개수 표시 */
#date-tabs-ul .expo-count {
    color: #999;
    font-size: 12px;
    font-weight: normal;
    margin-left: 4px;
}

#date-tabs-ul li.active .expo-count {
    color: var(--color-primary);
}

/* 스크롤 가능 표시 (그라디언트) */
.date-filter-tabs-section::before,
.date-filter-tabs-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 101;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.date-filter-tabs-section::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.date-filter-tabs-section::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* 스크롤이 끝에 도달했을 때 그라디언트 숨기기 */
#date-filter-tabs.no-scroll-left ~ ::before {
    opacity: 0;
}

#date-filter-tabs.no-scroll-right ~ ::after {
    opacity: 0;
}

/* 드래그 중 커서 스타일 */
#date-filter-tabs.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    user-select: none;
}

#date-filter-tabs {
    cursor: grab;
    cursor: -webkit-grab;
}

/* 스크롤바 숨기기 */
#date-filter-tabs::-webkit-scrollbar {
    display: none;
}

#date-filter-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    #date-tabs-ul li a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .date-filter-tabs-section {
        position: relative;
        top: auto;
    }
}

/* 스크린 리더 접근성 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
