/* Custom CSS for eatbeautifulfood.com - Food Theme */

/* Color Palette */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f9844a;
    --accent-color: #d2691e;
    --text-color: #333;
    --light-bg: #fff8f0;
    --card-bg: #fef9f5;
    --border-color: #f0f0f0;
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--light-bg), #fdf5e6);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.logo {
    height: unset !important;
    max-height: 70px;
    width: auto;
}

/* Navigation */
.nav-link {
    color: var(--accent-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

/* Food Category Icons */
.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Article Styles */
.article {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.article-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-title:hover {
    color: var(--primary-color);
}

.article-excerpt {
    color: #666;
    line-height: 1.8;
}

/* Recipe Styles */
.recipe-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.ingredients-list {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.ingredients-list h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.ingredients-list ul {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.ingredients-list li:before {
    content: "🥄";
    margin-right: 0.5rem;
}

/* Search Styles */
.search-box {
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #e55a2b;
}

/* Footer */
.footer {
    background: #333;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 0;
    }
    
    .article {
        padding: 1.5rem;
    }
    
    .search-box {
        margin: 0 1rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Food-specific styles */
.recipe-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.cooking-time {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.difficulty-level {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Nutrition info */
.nutrition-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.nutrition-info h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Special emphasis for food content */
.highlight-ingredient {
    background: linear-gradient(120deg, #fff3e0 0%, #fff3e0 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    padding: 0 0.2rem;
}

.chef-tip {
    background: var(--card-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.chef-tip:before {
    content: "👨‍🍳 Chef's Tip: ";
    font-weight: bold;
    color: var(--accent-color);
}