/* 기본 스타일 설정 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0a0a2a;
    --secondary-color: #3a3ad9;
    --accent-color: #00c6ff;
    --light-color: #ffffff;
    --dark-color: #121212;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #777777;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn.primary {
    background-color: var(--accent-color);
    color: white;
}

.btn.primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn.secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn.secondary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn.outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* 헤더 영역 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--light-color);
    letter-spacing: 1px;
}

.logo img {
    max-height: 50px;
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(0px 0px 1px #ffffff) 
           drop-shadow(0px 0px 1px #ffffff);
}

.desktop-nav ul {
    display: flex;
}

.desktop-nav li {
    margin: 0 15px;
}

.desktop-nav a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
}

.language-selector select {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: inherit;
    cursor: pointer;
}

.language-selector select option {
    background-color: var(--primary-color);
    color: var(--light-color);
}



/* 히어로 섹션 */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 42, 0.3), rgba(10, 10, 42, 0.2));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 소개 섹션 */
.about {
    background-color: var(--light-color);
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.about-highlights {
    margin-top: 50px;
}

.highlight-video {
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #fff;
}

.highlight-video video {
    width: 100%;
    display: block;
    border-radius: 10px;
    background-color: #fff;
}

/* 전시관 섹션 */
.exhibitions {
    background-color: var(--gray-color);
}

.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.exhibition-item {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.exhibition-item:hover {
    transform: translateY(-10px);
}

.exhibition-video {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.exhibition-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 198, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.exhibition-item h3 {
    font-size: 1.8rem;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.exhibition-item p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.exhibition-details {
    padding: 0 20px;
    margin-bottom: 20px;
}

.exhibition-details h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.exhibition-details ul {
    margin-bottom: 20px;
}

.exhibition-details li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    line-height: 1.4;
}

.exhibition-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

.exhibition-note {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 20px;
    margin-bottom: 20px;
    font-style: italic;
}

.exhibition-item .btn {
    margin: auto 20px 20px;
    align-self: flex-start;
}

/* 전시관 섹션 - 탭 스타일 */
.exhibitions-main {
    width: 100%;
}

.exhibition-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 15px 25px;
    border: none;
    background-color: var(--gray-color);
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.exhibition-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.exhibition-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 전시관 헤더 */
.exhibition-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.exhibition-video-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #fff;
}

.exhibition-video-container video {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    background-color: #fff;
}

.exhibition-intro {
    padding: 20px;
}

.exhibition-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.exhibition-intro p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.exhibition-intro .exhibition-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

/* 전시관 세부 구성 */
.exhibition-details-container {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
}

.detail-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

.detail-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-5px);
}

.detail-image {
    width: 40%;
    min-height: 220px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-item:hover .detail-image img {
    transform: scale(1.1);
}

.detail-content {
    width: 60%;
    padding: 20px;
}

.detail-content h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.detail-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 티켓 섹션 */
.tickets {
    background-color: var(--light-color);
}

.ticket-section-title {
    text-align: center;
    margin-bottom: 30px;
}

.ticket-section-title h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.ticket-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* PC에서 4개까지 보이도록 최대 너비 제한 */
@media (min-width: 1200px) {
    .ticket-options {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 패키지 입장권은 2개만 보이도록 설정 */
    .ticket-options-packages {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

.ticket-card {
    background-color: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-10px);
}

.ticket-card.featured {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.ticket-card.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    transform: scale(1.05);
}

.ticket-card.featured:hover, .ticket-card.premium:hover {
    transform: translateY(-10px);
}

.ticket-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.ticket-card .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 20px;
}

.price-list {
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ticket-card.featured .price-item, .ticket-card.premium .price-item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.person-type {
    font-weight: 500;
}

.price {
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ticket-card.featured .price, .ticket-card.premium .price {
    color: white;
}

.original-price {
    text-decoration: line-through;
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
}

.discount-price {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 3px;
}

.discount-badge {
    display: inline-block;
    margin-left: 5px;
    padding: 2px 5px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 5px;
    font-size: 0.8rem;
    vertical-align: middle;
}

.ticket-card.featured .discount-badge, .ticket-card.premium .discount-badge {
    background-color: white;
    color: var(--primary-color);
}

.ticket-benefits {
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.ticket-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.ticket-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.ticket-card.featured li::before, .ticket-card.premium li::before {
    color: white;
}

.ticket-card .btn {
    margin-top: auto;
}

.ticket-notice {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.ticket-notice p {
    margin-bottom: 10px;
}

.ticket-notice p:last-child {
    margin-bottom: 0;
}

/* 관람 안내 섹션 */
.visit {
    background-color: #f8f9fa;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.info-card p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card .note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.visit-map {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.visit-map:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.visit-notes {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.visit-notes h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.visit-notes h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.visit-notes ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.visit-notes li {
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.visit-notes li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* 뉴스 섹션 */
.news {
    padding: 60px 0;
    background-color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.news-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
    position: relative;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-item:hover .read-more {
    color: var(--primary-color);
}

.news-item:hover .read-more i {
    transform: translateX(5px);
}

/* 푸터 영역 */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0;
    text-align: left;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
}

.newsletter button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 비디오 컨트롤러 스타일 커스터마이징 */
video::-webkit-media-controls {
    background-color: transparent;
}

video::-webkit-media-controls-fullscreen-button {
    opacity: 1;
}

video::-webkit-media-controls-play-button {
    opacity: 1;
}

video::-webkit-media-controls-timeline {
    opacity: 1;
}

video::-webkit-media-controls-volume-slider {
    opacity: 1;
}

/* 시간과 공간의 초월 섹션 */
.transcendence {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.transcendence h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.transcendence-gallery {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-main {
    flex: 1;
}

.gallery-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transition: opacity 0.3s ease;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .transcendence-gallery {
        flex-direction: column;
    }
    
    .gallery-main {
        margin-bottom: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

/* 로그인 및 프로필 스타일 */
.login-btn {
    margin-right: 0;
}

.login-btn a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 198, 255, 0.3);
}

.login-btn a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(58, 58, 217, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.login-btn a i {
    font-size: 14px;
}

.login-btn a span {
    font-size: 14px;
    font-weight: 500;
}

/* 사용자 정보 스타일 */
.user-info {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.2);
}

.user-name {
    color: var(--light-color);
    font-weight: 500;
    margin-right: 8px;
    font-size: 14px;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 8px;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--light-color);
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: var(--gray-color);
    color: var(--accent-color);
}

.profile-btn {
    position: relative;
    margin-right: 15px;
    cursor: pointer;
}

.profile-image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image .profile-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25a5f7;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* 헤더 프로필 이니셜 스타일 - 작은 크기 */
header .profile-image .profile-initials {
    font-size: 14px;
}

/* 마이페이지와 예매내역 프로필 이니셜 스타일 - 큰 크기 */
.mypage-section .profile-image .profile-initials,
.booking-history-section .profile-image .profile-initials {
    font-size: 36px;
}

.profile-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.profile-btn.active .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-info {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.profile-name {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.profile-email {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    padding: 0;
    margin: 0;
}

.profile-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s;
}

.profile-menu li a:hover {
    background-color: #f5f5f5;
}

.profile-menu li:last-child {
    border-top: 1px solid #eee;
}

.profile-menu li:last-child a {
    color: #e74c3c;
}

/* PC 전용 스타일 - 모바일에서는 사용자 정보 숨기기 */
@media (max-width: 768px) {
    .user-info {
        display: none;
    }
    
    .user-dropdown {
        display: none;
    }
} 