/**
 * Ne Pişirsem - Özel Stiller
 */

/* Cook Hero Section */
.cook-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cook-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 0;
}

.cook-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cook-logo-container {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 50%;
    padding: 1.5rem;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

.cook-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.cook-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4), 0 0 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.cook-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4), 0 0 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.cook-buttons {
    margin-bottom: 2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text-small {
    font-size: 0.625rem;
    font-weight: 500;
}

.btn-text-large {
    font-size: 1.25rem;
    font-weight: 700;
}

.cook-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Features Section */
.cook-features {
    padding: 4rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Recipes Section */
.cook-recipes {
    padding: 4rem 0;
    background: var(--bg-color);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recipe-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.recipe-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.recipe-placeholder {
    font-size: 5rem;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.recipe-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.recipe-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Categories Section */
.cook-categories {
    padding: 4rem 0;
    background: var(--bg-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    transition: transform 0.2s, background 0.2s;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-4px);
    background: var(--primary-color);
    color: white;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.category-name {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* CTA Section */
.cook-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-download-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #333;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.btn-download-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.btn-download-large .btn-text-small {
    font-size: 0.75rem;
}

.btn-download-large .btn-text-large {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cook-title {
        font-size: 2rem;
    }
    
    .cook-subtitle {
        font-size: 1rem;
    }
    
    .cook-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-download,
    .btn-download-large {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-text {
        align-items: center;
    }
}

/* Dark mode adjustments */
[data-theme="dark"] .cook-hero {
    background: linear-gradient(135deg, #922b21 0%, #a04000 100%);
}

[data-theme="dark"] .cook-hero::before {
    background: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .stat-number {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    color: #f1f5f9;
}

[data-theme="dark"] .stat-label {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    color: #e2e8f0;
}

[data-theme="dark"] .cook-title {
    text-shadow: 3px 3px 8px rgba(0,0,0,0.6), 0 0 15px rgba(0,0,0,0.4);
    color: #f1f5f9;
}

[data-theme="dark"] .cook-subtitle {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6), 0 0 10px rgba(0,0,0,0.4);
    color: #e2e8f0;
}

[data-theme="dark"] .cook-logo-container {
    background: #1e293b;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

[data-theme="dark"] .cook-features,
[data-theme="dark"] .cook-categories {
    background: var(--bg-white);
}

[data-theme="dark"] .cook-recipes {
    background: var(--bg-color);
}

[data-theme="dark"] .cook-cta {
    background: linear-gradient(135deg, #9d174d 0%, #c026d3 100%);
}
