/**
 * Header Search Toggle Styles
 * Smooth slide animation for search bar
 *
 * @package Sierra_At_Tahoe
 */

/* Search container positioning and animation */
header .wp-block-search {
    position: relative;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin 0.3s ease-in-out;
    margin-top: 0;
    margin-bottom: 0;
}

/* Collapsed state - hidden */
header .wp-block-search.search-collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: none;
}

/* Expanded state - visible */
header .wp-block-search.search-expanded {
    max-height: 200px; /* Generous height to accommodate search input */
    opacity: 1;
    margin-top: 16px;
    margin-bottom: 0;
    pointer-events: auto;
}

/* Search form styling */
header .wp-block-search .wp-block-search__inside-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Search input styling */
header .wp-block-search input[type="search"] {
    flex: 1;
    padding: 14px 24px 14px 56px !important; /* Extra left padding for search icon */
    font-family: 'GT Standard Trial', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #142C2D !important;
    background: #FFFFFF !important;
    border: 2px solid #EEF5F3 !important;
    border-radius: 40px !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    width: 100% !important;
}

header .wp-block-search input[type="search"]:focus {
    border-color: #142C2D !important;
    box-shadow: 0 2px 12px rgba(20, 44, 45, 0.15) !important;
}

header .wp-block-search input[type="search"]::placeholder {
    color: rgba(20, 44, 45, 0.5) !important;
}

/* Search icon inside input */
header .wp-block-search .wp-block-search__inside-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M20.67 18.67h-1.05l-.37-.36a8.63 8.63 0 002.09-5.64 8.67 8.67 0 10-8.67 8.67 8.63 8.63 0 005.64-2.09l.36.37v1.05l6.67 6.65 1.98-1.98-6.65-6.67zm-8 0a6 6 0 116-6 5.99 5.99 0 01-6 6z' fill='%23142C2D'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 10;
}

/* Hide default submit button if present */
header .wp-block-search .wp-block-search__button {
    display: none;
}

/* Search icon in header - make it more obviously clickable */
header .wp-block-image img[alt="Search"] {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

header .wp-block-image img[alt="Search"]:hover {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header .wp-block-search input[type="search"] {
        padding: 12px 20px 12px 48px !important;
        font-size: 14px !important;
    }

    header .wp-block-search .wp-block-search__inside-wrapper::before {
        left: 16px;
        width: 18px;
        height: 18px;
    }
}
