:root {
    --primary-color: #FF6B6B;
    --secondary-color: #FFA07A;
    --background-color: #FFF5F5;
    --text-color: #4A4A4A;
    --shadow-color: rgba(255, 107, 107, 0.1);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 10px;
}

.controls {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px var(--shadow-color);
    margin-bottom: 20px;
}

select, button {
    padding: 12px 20px;
    border: 2px solid #FFE5E5;
    border-radius: 10px;
    font-size: 1em;
    background: white;
    color: var(--text-color);
    transition: all 0.3s ease;
}

select:focus, button:focus {
    outline: none;
    border-color: var(--primary-color);
}

button {
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

button:hover {
    background: #FF5252;
    transform: translateY(-2px);
}

#searchStatus {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.place-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
}

.place-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-color);
}

.place-item h3 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 1.3em;
}

.rating {
    color: #FFB100;
    margin-right: 15px;
}

.review-count {
    color: var(--secondary-color);
}

#map {
    height: 400px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.progress-bar {
    background: #FFE5E5;
    height: 8px;
    border-radius: 4px;
    margin: 10px 0;
    overflow: hidden;
}

.progress {
    background: var(--primary-color);
    height: 100%;
    transition: width 0.3s ease;
}

.type-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.type-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.type-btn.active {
    background: var(--primary-color);
    color: white;
}

.place-detail-info {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.place-photos {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.place-photos img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.opening-hours {
    margin: 15px 0;
}

.opening-hours ul {
    list-style: none;
    padding: 0;
}

.reviews .review {
    margin: 15px 0;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.nav-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .controls {
        flex-direction: column;
        gap: 10px;
    }

    select, button {
        width: 100%;
        margin: 5px 0;
    }
}

/* 기존 CSS에 추가 */
.today-hours {
    font-size: 1.1em;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.open-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
}

.open-status.open {
    background-color: #4CAF50;
    color: white;
}

.open-status.closed {
    background-color: #f44336;
    color: white;
}

.opening-hours {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.opening-hours h4 {
    margin: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.opening-hours i {
    font-size: 1.2em;
}