:root {
    --color-primary: #54D4C5;
    --color-secondary: #FFC94D;
    --color-background: #FFF6F0;
    --color-text: #1E2D3D;
    --color-text-light: #666666;
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

.logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-image {
    width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(84, 212, 197, 0.2));
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    color: var(--color-text-light);
    font-size: 1.2rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #E8ECF0;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    color: var(--color-text);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(84, 212, 197, 0.2);
}

.search-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: white;
    background-color: var(--color-primary);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.search-button:hover {
    background-color: #48B5A8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(84, 212, 197, 0.3);
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(84, 212, 197, 0.2);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.result-container {
    margin-top: 2rem;
}

.result-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    font-size: 1.1rem;
    line-height: 1.8;
}

.error-message {
    color: #E74C3C;
    background-color: #FDEDED;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.1rem;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: white;
    margin-top: 3rem;
    width: 100%;
    box-shadow: var(--shadow-soft);
}

footer p {
    color: var(--color-text-light);
    font-size: 1rem;
}

.map-description {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 1rem 0;
    padding: 0 1rem;
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 1rem;
    }

    .search-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .search-button {
        width: 100%;
        padding: 1rem;
    }

    .result-content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }
}
