/* Header Search Button Styles */
.search-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.search-btn .search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none !important;
    border-radius: 50%;
    color: var(--hotel-primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-btn .search-toggle:hover {
    background: var(--hotel-primary-color);
    color: #fff;
    transform: scale(1.05);
}

.search-btn .search-toggle svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.search-btn .search-toggle svg path { 
    stroke: #fff;
    fill: #fff;
}

/* Search Form Styles */
.search-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-form-overlay.active {
    display: flex;
}

.search-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.search-form-container .close-search {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.search-form-container .close-search:hover {
    color: var(--hotel-primary-color);
}

.search-form-container h3 {
    margin-bottom: 20px;
    color: var(--hotel-primary-color);
    text-align: center;
}

.search-form-container .search-form {
    display: flex;
    gap: 10px;
}

.search-form-container .search-form input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-form-container .search-form input[type="submit"] {
    padding: 12px 25px;
    background: var(--hotel-primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.search-form-container .search-form input[type="submit"]:hover {
    background: #8a7a4f;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .search-btn {
        margin-left: 10px;
    }
    
    .search-btn .search-toggle {
        width: 35px;
        height: 35px;
    }
    
    .search-form-container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .search-form-container .search-form {
        flex-direction: column;
    }
} 