
/* css/pages/home-page.css */

.library-portal-section { 
    padding: 100px 0 60px 0; 
    min-height: 80vh; 
    display: flex;
    flex-direction: column;
}

.library-portal-grid {
    display: block; /* Ensures vertical stacking of search and shelf */
    width: 100%;
    max-width: 1000px; /* Slightly wider to fit more books */
    margin: 0 auto;
    text-align: center;
}

.search-panel {
    margin-bottom: 60px;
}

.search-panel h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--primary-text);
    margin: 0 0 24px 0;
}

.search-panel p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto 48px auto;
}

/* Elegant Search Input */
.search-box { 
    position: relative; 
    max-width: 500px; 
    margin: 0 auto; 
}

.search-box input {
    width: 100%;
    padding: 16px 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    color: var(--primary-text);
    text-align: center;
    transition: border-color 0.3s;
    border-radius: 0;
}

.search-box input:focus {
    outline: none;
    border-bottom-color: var(--accent-blue);
}

.search-box input::placeholder {
    color: var(--subtle-text);
    font-style: italic;
}

.search-box svg {
    position: absolute; 
    right: 0; 
    top: 50%;
    transform: translateY(-50%); 
    color: var(--subtle-text);
    width: 18px;
    height: 18px;
}

.main-footer { 
    text-align: center; 
    padding: 60px 0; 
    font-size: 13px; 
    color: var(--subtle-text); 
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}