:root {
    --primary-color: #D4AF37;
    --text-dark: #f3f4f6;
    --text-light: #fff;
    --bg-light: #121212;
    --card-bg: #1E1E1E;
    --border-color: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-tap-highlight-color: transparent;
}

.bg-anthracite {
    background-color: #121212 !important;
}

.bg-zinc-900 {
    background-color: #121212 !important;
}

.bg-zinc-800 {
    background-color: #1E1E1E !important;
}

.border-zinc-700, .border-zinc-800, .border-gray-700 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

html {
    scroll-behavior: smooth;
}

button, a {
    touch-action: manipulation;
}

/* Google Places Autocomplete Custom Styling */
.pac-container {
    background-color: #121212;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
    z-index: 9999 !important;
    max-width: 90vw;
}

.pac-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.pac-item-query {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.pac-icon {
    display: none;
}

.pac-matched {
    color: #D4AF37;
}
