/* === [DESIGN REVAMP V2] MODERN & INTUITIVE DESIGN SYSTEM === */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Noto+Sans+KR:wght@400;500;700&display=swap');

:root {
    /* Palette: Professional, Calm, with a vibrant touch */
    --primary-color: #2c3e50; /* Deep Slate Blue */
    --secondary-color: #3498db; /* Bright, Engaging Blue */
    --accent-color: #1abc9c; /* Vibrant Teal/Turquoise */
    --highlight-bg: #ecf0f1; /* Soft Grey for backgrounds */
    --card-bg-color: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #bdc3c7;
    --danger-color: #e74c3c;

    /* Typography */
    --font-primary: 'Noto Sans KR', 'Poppins', sans-serif;
    --font-display: 'Poppins', sans-serif;

    /* Effects & Shadows */
    --shadow-sm: 0 2px 4px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 5px 15px rgba(44, 62, 80, 0.1);
    --shadow-lg: 0 10px 30px rgba(44, 62, 80, 0.12);
    --glow-primary: 0 0 15px rgba(52, 152, 219, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GLOBAL RESETS & STYLES === */
* { box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    margin: 0;
    background-color: var(--highlight-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: sticky; top: 0; z-index: 1000;
}

header h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 1px;
}
header h1 i { margin-right: 12px; color: var(--secondary-color); }

main { padding: 1.5rem; }

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === Custom Map Marker Style === */
.map-marker {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 32px !important;
    height: 32px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    border: 3px solid var(--card-bg-color);
    box-shadow: var(--shadow-lg);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
