/* Garage Kings Locations Frontend Styles */

.gk-locations-container {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* Filters */
.gk-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.gk-filter-select,
.gk-filter-input {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

/* Grid Layout */
.gk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Card Styling */
.gk-card {
    background-color: #b30000; /* Deep red background */
    border: 1px solid #ffcccc; /* Subtle border */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    box-sizing: border-box;
}

.gk-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.gk-card-header {
    margin-bottom: 20px;
}

.gk-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    line-height: 1.1;
}

.gk-region {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.gk-card-body {
    margin-top: auto;
}

.gk-phone {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    margin: 0 0 15px 0;
}

.gk-btn {
    display: inline-block;
    background-color: #dfa732; /* Yellow/Gold */
    color: #000000;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.gk-btn:hover {
    background-color: #f0b740;
    color: #000000;
}

.gk-no-results {
    font-size: 18px;
    color: #666;
    text-align: center;
    grid-column: 1 / -1;
}
