/* ===================================
   웨딩센스 - 인덱스 페이지 스타일 CSS
   style-index.css
   =================================== */

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 600px;
}

.hero-carousel {
    height: 100%;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8) 0%, rgba(196, 69, 105, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: center;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

/* Swiper Customization */
.hero-carousel .swiper-pagination {
    bottom: 30px;
}

.hero-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.6;
    transition: var(--transition-base);
}

.hero-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-carousel .swiper-button-next::after,
.hero-carousel .swiper-button-prev::after {
    font-size: 1.5rem;
}

/* ===================================
   Quick Links Section
   =================================== */
.quick-links-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

/* ===================================
   Upcoming Expos Section
   =================================== */
.upcoming-expos-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.upcoming-expos-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.03) 0%, transparent 50%);
    animation: floating 8s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.expo-timeline {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.timeline-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-romantic);
}

.timeline-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.timeline-date {
    min-width: 140px;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--gradient-romantic);
    color: var(--white);
    text-align: center;
    position: relative;
}

.timeline-date::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--primary-color);
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.date-year {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

.timeline-content {
    flex: 1;
    padding: 2rem 2.5rem;
    position: relative;
}

.expo-badge {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: linear-gradient(135deg, #ff6b9d, #e8b4b8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.expo-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.expo-location i {
    color: var(--primary-color);
    font-size: 1rem;
}

.expo-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-tag {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(232, 180, 184, 0.1));
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.timeline-content .btn {
    background: var(--gradient-romantic);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.timeline-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #e55a89, #d1a0a4);
}

/* Responsive Styles for Timeline */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    
    .timeline-item::before {
        width: 100%;
        height: 4px;
    }
    
    .timeline-date {
        min-width: unset;
        max-width: unset;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .timeline-date::after {
        display: none;
    }
    
    .date-day {
        font-size: 2rem;
    }
    
    .expo-badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
        margin-top: 0;
    }
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.features-grid {
    margin-top: 3rem;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 10;
}

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

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.95;
}

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

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}
