/* Landing Page Styles */

/* Footer */
footer {
    text-align: center; 
    padding: 20px; 
    color: var(--text-muted); 
    font-size: 0.9rem;
}

/* Hero Section */
.landing-hero {
    min-height: 80vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(135deg, var(--bg-body) 0%, var(--bg-card) 100%); 
    text-align: center; 
    padding: 20px;
}
.hero-title {
    font-size: 3rem; 
    font-weight: 800; 
    background: linear-gradient(to right, var(--primary), var(--secondary)); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.2rem; 
    color: var(--text-muted); 
    max-width: 600px; 
    margin-bottom: 40px;
}

/* Search */
.search-container {
    position: relative; 
    width: 100%; 
    max-width: 600px;
}
.search-input {
    width: 100%; 
    padding: 20px 30px; 
    border-radius: 50px; 
    border: 2px solid var(--border-color); 
    font-size: 1.2rem; 
    outline: none; 
    transition: all 0.3s ease; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    background: var(--bg-card); 
    color: var(--text-main);
}
.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
#tenant-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.search-btn {
    position: absolute; 
    right: 10px; 
    top: 50%; 
    transform: translateY(-50%); 
    background: var(--primary); 
    color: white; 
    border: none; 
    padding: 12px 25px; 
    border-radius: 40px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: transform 0.2s;
}

.search-results-container {
    width: 100%; 
    max-width: 800px; 
    margin-top: 40px; 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 20px;
}

.loading-container {
    display: none; 
    margin-top: 40px;
}

/* Tenant Card */
.tenant-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}
.tenant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary);
}
.tenant-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--bg-body);
}
.tenant-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--text-main);
}
.tenant-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.spinner {
    width: 40px; height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
