/* 공통 폰트 및 배경 */
:root {
    --primary-color: #2c3e50;
    --accent-color: #c0a16b; /* 골드 톤 */
    --text-color: #333;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-color);
    background-color: #fcfcfc;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* Hero Section (View Page) */
.hero-header {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-header .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

/* Timeline Styling */
.day-header {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 50px;
    color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
    border-left: 2px solid #e9ecef;
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
}

.timeline-marker {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #e9ecef;
}

.timeline-content {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-time {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.place-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
}

/* Admin Page Styling */
.admin-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}