/* Search Page Specific Styles */
.search-header {
    background: var(--navy-blue);
    padding: 4rem 5% 3rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.search-header-shape {
    position: absolute;
    top: -50px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.15;
}

.search-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.search-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 1rem;
}

.search-subtitle {
    color: #9CA3AF;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.search-icon-wrapper {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 0.5rem;
    font-family: inherit;
    color: var(--navy-blue);
    width: 100%;
}

.search-btn {
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Results Section */
.results-section {
    padding: 4rem 5%;
    background-color: var(--bg-light);
    min-height: 50vh;
}

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

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-title {
    color: var(--navy-blue);
    margin: 0;
    font-size: 1.5rem;
}

.results-count {
    color: var(--text-muted);
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-title {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-text {
    color: var(--text-muted);
}

.empty-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    font-weight: bold;
    text-decoration: none;
}

/* Place Card */
.place-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.place-image-wrapper {
    height: 180px;
    background-color: #E2E8F0;
    position: relative;
}

.place-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
}

.place-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    color: var(--navy-blue);
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.place-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.place-category {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.place-name {
    color: var(--navy-blue);
    margin: 0.5rem 0;
    font-size: 1.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.place-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.place-cta {
    margin-top: auto;
}

.place-btn {
    display: block;
    text-align: center;
    background: #F8FAFC;
    color: var(--navy-blue);
    border: 1px solid #E2E8F0;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.place-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

@media (max-width: 768px) {
    .search-title { font-size: 2.2rem; }
    .search-form { flex-direction: column; border-radius: 16px; background: transparent; box-shadow: none; gap: 10px; }
    .search-input { border-radius: 16px; background: var(--white); padding: 1rem; }
    .search-btn { width: 100%; padding: 1rem; }
    .search-icon-wrapper { display: none; }
}
