/* Modern Food Recipe Design */ :root { --primary-color: #D35400; --secondary-color: #E67E22; --accent-color: #F39C12; --text-color: #2C3E50; --text-light: #7F8C8D; --bg-color: #FDF2E9; --card-bg: #FFFFFF; --border-color: #F4E4D1; --shadow: 0 8px 25px rgba(211, 84, 0, 0.1); --shadow-hover: 0 15px 40px rgba(211, 84, 0, 0.2); --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%); --gradient-soft: linear-gradient(135deg, #FEF5E7 0%, #FCE4EC 100%); } body { background: var(--gradient-soft); font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; line-height: 1.6; color: var(--text-color); } .container { max-width: 1300px; margin: 0 auto; padding: 0 1.5rem; } /* Modern Food Hero Section */ .hero-section { background: var(--gradient-warm); color: white; padding: 5rem 0; position: relative; overflow: hidden; } .hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,'); opacity: 0.3; } .hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; } .hero-title { font-size: 3.8rem; font-weight: 800; margin-bottom: 1.5rem; text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); background: linear-gradient(45deg, #FFFFFF, #FFF2E6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.3rem; margin-bottom: 2.5rem; opacity: 0.95; font-weight: 300; } .hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; } .stat-item { text-align: center; } .stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: var(--accent-color); } .stat-label { font-size: 0.9rem; opacity: 0.8; } /* Modern Search & Filter Bar */ .search-filter-bar { background: var(--card-bg); box-shadow: var(--shadow); border-radius: 24px; padding: 2.5rem; margin: -4rem auto 4rem; position: relative; z-index: 3; max-width: 1100px; border: 1px solid var(--border-color); } .search-container { position: relative; margin-bottom: 2rem; } .search-input { position: relative; display: flex; align-items: center; background: var(--bg-color); border-radius: 60px; padding: 1rem 2rem; border: 3px solid transparent; transition: all 0.4s ease; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } .search-input:focus-within { border-color: var(--primary-color); background: white; box-shadow: 0 0 0 6px rgba(211, 84, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05); transform: translateY(-2px); } .search-input i { color: var(--primary-color); margin-right: 1.2rem; font-size: 1.2rem; } .search-input input { border: none; background: none; outline: none; flex: 1; font-size: 1.1rem; color: var(--text-color); font-weight: 500; } .search-input input::placeholder { color: var(--text-light); font-weight: 400; } .search-btn { background: var(--gradient-warm); color: white; border: none; padding: 1rem 2.5rem; border-radius: 30px; margin-left: 1rem; cursor: pointer; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3); } .search-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(211, 84, 0, 0.4); } /* Filter Tabs */ .filter-tabs { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between; } .category-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; } .category-pill { background: var(--bg-color); color: var(--text-color); padding: 0.5rem 1.2rem; border-radius: 25px; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; border: 2px solid transparent; } .category-pill:hover, .category-pill.active { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white; transform: translateY(-2px); box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3); } .sort-dropdown { position: relative; } .sort-btn { background: var(--bg-color); border: 2px solid var(--border-color); padding: 0.5rem 1rem; border-radius: 10px; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; color: var(--text-color); font-weight: 500; } .sort-dropdown-content { position: absolute; top: 100%; right: 0; background: white; box-shadow: var(--shadow); border-radius: 10px; padding: 0.5rem 0; min-width: 180px; z-index: 10; display: none; } .sort-dropdown:hover .sort-dropdown-content { display: block; } .sort-option { display: block; padding: 0.75rem 1rem; color: var(--text-color); text-decoration: none; transition: background 0.3s ease; } .sort-option:hover, .sort-option.active { background: var(--bg-color); color: var(--primary-color); } /* Results Header */ .results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding: 0 1rem; } .results-count { font-size: 1.1rem; color: var(--text-light); } .results-count strong { color: var(--primary-color); font-weight: 600; } .view-toggle { display: flex; gap: 0.5rem; } .view-btn { width: 40px; height: 40px; border: 2px solid var(--border-color); background: white; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.3s ease; } .view-btn:hover, .view-btn.active { border-color: var(--primary-color); background: var(--primary-color); color: white; } /* Modern Recipe Grid */ .recipes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 2.5rem; margin-bottom: 4rem; } .recipe-card { background: var(--card-bg); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; border: 1px solid var(--border-color); } .recipe-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-hover); } .recipe-image { position: relative; height: 260px; overflow: hidden; background: var(--gradient-warm); } .recipe-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .recipe-card:hover .recipe-image img { transform: scale(1.15); } .recipe-image.no-image { display: flex; align-items: center; justify-content: center; color: white; font-size: 3.5rem; background: var(--gradient-warm); } .recipe-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.4s ease; } .recipe-card:hover .recipe-overlay { opacity: 1; } .view-recipe { background: white; color: var(--primary-color); padding: 1rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1rem; transform: translateY(20px); transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); } .recipe-card:hover .view-recipe { transform: translateY(0); } .recipe-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255, 255, 255, 0.95); color: var(--primary-color); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; backdrop-filter: blur(10px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } .recipe-content { padding: 2rem; } .recipe-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.3; color: var(--text-color); } .recipe-title a { color: inherit; text-decoration: none; transition: color 0.3s ease; } .recipe-title a:hover { color: var(--primary-color); } .recipe-description { color: var(--text-light); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.7; font-weight: 400; } .recipe-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border-color); } .recipe-author { display: flex; align-items: center; gap: 0.75rem; color: var(--text-light); font-size: 0.95rem; font-weight: 500; } .recipe-author i { color: var(--primary-color); } .recipe-time { display: flex; align-items: center; gap: 0.5rem; color: var(--text-light); font-size: 0.9rem; background: var(--bg-color); padding: 0.5rem 1rem; border-radius: 15px; } .recipe-time i { color: var(--accent-color); } .recipe-stats { display: flex; justify-content: space-between; align-items: center; } .recipe-stats-left { display: flex; gap: 1.5rem; } .stat { display: flex; align-items: center; gap: 0.5rem; color: var(--text-light); font-size: 0.9rem; font-weight: 600; } .stat i { color: var(--primary-color); font-size: 1rem; } .recipe-category-tag { background: var(--gradient-warm); color: white; padding: 0.5rem 1.2rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 3px 10px rgba(211, 84, 0, 0.2); } .recipe-category-tag:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(211, 84, 0, 0.3); } /* List View */ .recipes-list { display: none; } .recipes-list.active { display: block; } .recipe-list-item { background: var(--card-bg); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow); display: flex; gap: 1.5rem; transition: all 0.3s ease; } .recipe-list-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); } .recipe-list-image { width: 120px; height: 120px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--accent-color), var(--secondary-color)); } .recipe-list-image img { width: 100%; height: 100%; object-fit: cover; } .recipe-list-content { flex: 1; } /* No Results */ .no-results { text-align: center; padding: 5rem 2rem; color: var(--text-light); background: var(--card-bg); border-radius: 20px; box-shadow: var(--shadow); } .no-results-icon { font-size: 5rem; color: var(--accent-color); margin-bottom: 2rem; } .no-results h3 { color: var(--text-color); margin-bottom: 1.5rem; font-size: 1.5rem; } /* Modern Pagination */ .pagination { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin: 4rem 0; } .pagination a, .pagination span { padding: 1rem 1.25rem; background: var(--card-bg); color: var(--text-color); text-decoration: none; border-radius: 12px; border: 2px solid var(--border-color); transition: all 0.3s ease; font-weight: 600; } .pagination a:hover, .pagination a.active { background: var(--gradient-warm); color: white; border-color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(211, 84, 0, 0.3); } .pagination-btn { padding: 1rem 2rem !important; font-weight: 700; } /* Responsive Design */ @media (max-width: 768px) { .hero-title { font-size: 2.8rem; } .search-filter-bar { margin: -3rem 1rem 3rem; padding: 2rem; } .recipes-grid { grid-template-columns: 1fr; gap: 2rem; } .recipe-content { padding: 1.5rem; } .recipe-meta { flex-direction: column; align-items: flex-start; gap: 1rem; } } @media (max-width: 480px) { .hero-title { font-size: 2.2rem; } .search-input { flex-direction: column; gap: 1rem; } .search-btn { margin-left: 0; width: 100%; } }

Lezzetli Kahve Tarifleri

Dünyadan en özel kahve tariflerini keşfedin ve kendi mutfağınızda hazırlayın

Tümü (1) Espresso Tarifleri

Tüm Tarifler

1 tarif bulundu