
:root {
    --soft-pink-blue: #a8d4e6;
    --soft-pink: #f4d7e0;
    --cream-white: #faf8f5;
    --light-gray: #e8e6e3;
    --mint-green: #b8dcd0;
    --warm-gold: #d4af37;
    --deep-charcoal: #2d2d2d;
    --soft-charcoal: #4a4a4a;
    --gradient-primary: linear-gradient(135deg, #a8d4e6 0%, #f4d7e0 100%);
    --gradient-button: linear-gradient(135deg, #a8d4e6 0%, #c9b8d4 50%, #f4d7e0 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--cream-white);
    color: var(--deep-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 네비게이션 바 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .korean {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    letter-spacing: -0.5px;
}

.logo-text .english {
    font-size: 0.7rem;
    color: var(--soft-charcoal);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--soft-charcoal);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-button);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--deep-charcoal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-lang:hover {
    border-color: var(--soft-pink-blue);
    background: rgba(168, 212, 230, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-charcoal);
    cursor: pointer;
}

/* 히어로 섹션 */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(250, 248, 245, 0.3) 50%,
        rgba(250, 248, 245, 0.7) 100%
    );
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--soft-charcoal);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-badge i {
    color: var(--warm-gold);
    margin-right: 0.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--deep-charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 40px rgba(255, 255, 255, 0.8);
}

.hero h1 span {
    font-weight: 700;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--soft-charcoal);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-subtitle span {
    margin: 0 0.5rem;
    color: var(--soft-pink-blue);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(168, 212, 230, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(168, 212, 230, 0.5);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--soft-charcoal);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* 인기 여행지 */
.destinations {
    padding: 8rem 5%;
    background: var(--cream-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(184, 220, 208, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--soft-charcoal);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--deep-charcoal);
    margin-bottom: 1rem;
}

.section-title span {
    font-weight: 600;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--soft-charcoal);
    max-width: 600px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.5s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    color: white;
}

.destination-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.destination-name-kr {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.destination-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destination-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* 테마 여행 */
.themes {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--cream-white) 0%, #f0f5f3 100%);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.theme-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.theme-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.theme-card:hover .theme-image img {
    transform: scale(1.1);
}

.theme-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.theme-content {
    padding: 1.8rem;
}

.theme-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 0.5rem;
}

.theme-desc {
    font-size: 0.9rem;
    color: var(--soft-charcoal);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.theme-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--soft-pink-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.theme-link:hover {
    gap: 0.8rem;
    color: var(--deep-charcoal);
}

/* 왜 우리를 선택해야 하는가 */
.why-us {
    padding: 8rem 5%;
    background: var(--cream-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1);
}

.why-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 0.8rem;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--soft-charcoal);
    line-height: 1.6;
}

/* CTA 배너 */
.cta-banner {
    padding: 6rem 5%;
    background: var(--gradient-button);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-banner .cta-button {
    background: white;
    color: var(--deep-charcoal);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-banner .cta-button:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* 푸터 */
footer {
    background: var(--deep-charcoal);
    color: white;
    padding: 5rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
    background: white;
    color: var(--deep-charcoal);
}

.footer-brand .logo-text .korean {
    color: white;
}

.footer-brand .logo-text .english {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-button);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--soft-pink-blue);
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* 모달 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--soft-charcoal);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--deep-charcoal);
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--deep-charcoal);
}

.modal-content p, .modal-content li {
    color: var(--soft-charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--deep-charcoal);
}

.modal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .destinations-grid,
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .destinations-grid,
    .themes-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
