/* Search Systems Styles */
.search-systems {
    margin: 3rem auto;
    text-align: center;
    max-width: 1200px;
    padding: 0 1.5rem;
}

.search-systems h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.search-systems h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b6b;
}

.search-options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.search-option-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    width: 100%;
    max-width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.search-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.search-option-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1.2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-option-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.search-option-card p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-search-option {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-search-option:hover {
    background-color: #ff5252;
}

/* Explorer Search Tabs */
.explorer-search-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.explorer-tab {
    padding: 0.6rem 1rem;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.explorer-tab:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-options-container {
        flex-direction: column;
        align-items: center;
    }
    
    .search-option-card {
        max-width: 100%;
    }
}

/* Enhanced hero section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    margin-bottom: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.btn-search {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-search:hover {
    background-color: #ff5252;
}

.advanced-search-link {
    text-align: right;
    margin-top: 0.5rem;
}

.advanced-search-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.advanced-search-link a:hover {
    color: white;
    text-decoration: underline;
}

/* Enhance the chef and premium sections */
.become-chef, .premium-promo {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 1.5rem;
}

.chef-promo {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.premium-content {
    background: linear-gradient(135deg, #5b68d6, #8e44ad);
    color: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.premium-features li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}

.btn-primary, .btn-premium {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background-color: #ff5252;
}

.btn-premium {
    background-color: white;
    color: #8e44ad;
}

.btn-premium:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}