/* ===================================
   YEMEK TARİFLERİ WEB SİTESİ - ANA STİL DOSYASI
   Profesyonel, responsive ve animasyonlu tasarım
   =================================== */

/* === ROOT VARIABLES === */
:root {
    /* Renkler */
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent-color: #f77f00;
    --accent-hover: #d97706;
    
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 80px;
    --card-radius: 16px;
    --btn-radius: 8px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-color);
}

.logo-icon {
    font-size: 32px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0%, 90%, 100% { transform: rotate(0deg); }
    92%, 98% { transform: rotate(-10deg); }
    94%, 96% { transform: rotate(10deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn,
.favorites-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-base);
    position: relative;
}

.search-btn:hover,
.favorites-btn:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    transform: scale(1.1);
}

.favorites-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-color);
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--btn-radius);
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 14px;
}

.lang-switcher:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-search-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--btn-radius);
    font-size: 16px;
    transition: var(--transition-base);
}

.hero-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.hero-search-btn {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: var(--transition-base);
}

.hero-search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* === SECTIONS === */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* === FEATURED RECIPE CARD === */
.featured-recipe-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.featured-recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.featured-recipe-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.featured-recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-recipe-card:hover .featured-recipe-image img {
    transform: scale(1.1);
}

.recipe-badges {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    gap: 12px;
}

.badge-time,
.badge-difficulty {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

.featured-recipe-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-tertiary);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 16px;
    margin-bottom: 16px;
    width: fit-content;
}

.recipe-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.recipe-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.recipe-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.stat-icon {
    font-size: 20px;
}

/* === RECIPE GRID === */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* === RECIPE CARD === */
.recipe-card {
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    animation: fadeInUp 0.6s ease backwards;
}

.recipe-card:nth-child(1) { animation-delay: 0s; }
.recipe-card:nth-child(2) { animation-delay: 0.1s; }
.recipe-card:nth-child(3) { animation-delay: 0.2s; }
.recipe-card:nth-child(4) { animation-delay: 0.3s; }

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.recipe-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-card-image img {
    transform: scale(1.15) rotate(2deg);
}

.favorite-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.recipe-card:hover .favorite-icon {
    opacity: 1;
    transform: scale(1);
}

.favorite-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.favorite-icon.active {
    opacity: 1;
    background: var(--accent-color);
    color: white;
}

.quick-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.time-badge {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.recipe-card-content {
    padding: 24px;
}

.recipe-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0;
    color: var(--text-primary);
}

.recipe-card-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.recipe-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.view-recipe-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
}

.view-recipe-link:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* === CATEGORIES GRID === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    padding: 40px 24px;
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--primary-color);
    color: white;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
    transition: var(--transition-base);
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(10deg);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-count {
    font-size: 14px;
    color: var(--text-secondary);
}

.category-card:hover .category-count {
    color: rgba(255, 255, 255, 0.8);
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

/* === NEWSLETTER === */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--section-padding) 0;
    color: white;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 16px;
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: var(--transition-base);
}

.newsletter-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* === FOOTER === */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
}

/* === BROWSE PAGE === */
.page-header {
    background: var(--bg-secondary);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* === FILTERS === */
.filters-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    position: sticky;
    top: 81px;
    z-index: 100;
}

.filters-wrapper {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 16px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-search,
.filter-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--btn-radius);
    font-size: 15px;
    transition: var(--transition-base);
}

.filter-search:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.active-filters {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* === RECIPE PAGE === */
.recipe-hero {
    padding: 40px 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: var(--text-light);
}

.recipe-page-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 32px;
}

.recipe-meta {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.recipe-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
}

.author-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.author-name {
    font-weight: 700;
    font-size: 18px;
}

.recipe-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars-large {
    font-size: 20px;
}

.rating-details {
    font-size: 14px;
    color: var(--text-secondary);
}

.recipe-actions {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--btn-radius);
    font-weight: 600;
    transition: var(--transition-base);
}

.action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* === RECIPE IMAGE === */
.recipe-image-section {
    padding: 40px 0;
}

.recipe-main-image {
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow-xl);
}

.recipe-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === RECIPE CONTENT LAYOUT === */
.recipe-content {
    padding: var(--section-padding) 0;
}

.recipe-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

/* === SIDEBAR === */
.recipe-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.info-icon {
    font-size: 32px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.nutrition-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.nutrition-item:last-child {
    border-bottom: none;
}

.nutrition-label {
    color: var(--text-secondary);
}

.nutrition-value {
    font-weight: 700;
}

/* === MAIN CONTENT === */
.recipe-section {
    margin-bottom: 60px;
}

.section-title-recipe {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.recipe-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* === INGREDIENTS === */
.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ingredients-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: var(--transition-base);
}

.ingredients-list li:hover {
    background: var(--bg-tertiary);
}

.ingredient-checkbox {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.ingredient-checkbox:checked + label {
    text-decoration: line-through;
    opacity: 0.5;
}

.ingredients-list label {
    font-size: 16px;
    line-height: 1.6;
    cursor: pointer;
}

/* === INSTRUCTIONS === */
.instructions-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.instruction-step {
    display: flex;
    gap: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* === TIPS === */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-card {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition-base);
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tip-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === COMMENTS === */
.comments-section {
    border-top: 2px solid var(--border-color);
    padding-top: 60px;
}

.comment-form {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.comment-form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.rating-input {
    margin-bottom: 20px;
}

.rating-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.star-rating-input {
    display: flex;
    gap: 8px;
}

.star-btn {
    font-size: 32px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.star-btn:hover,
.star-btn.active {
    color: var(--accent-color);
    transform: scale(1.2);
}

.comment-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--btn-radius);
    font-family: inherit;
    font-size: 15px;
    resize: vertical;
    margin-bottom: 16px;
    transition: var(--transition-base);
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.comment {
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.comment-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author-info {
    flex: 1;
}

.comment-author {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.comment-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.comment-rating {
    color: var(--accent-color);
}

.comment-date {
    color: var(--text-secondary);
}

.comment-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.helpful-btn {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
}

.helpful-btn:hover {
    background: var(--primary-color);
    color: white;
}

.load-more-btn {
    display: block;
    margin: 0 auto;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--btn-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.results-count {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .recipe-layout {
        grid-template-columns: 1fr;
    }
    
    .recipe-sidebar {
        position: static;
    }
    
    .info-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .featured-recipe-card {
        grid-template-columns: 1fr;
    }
    
    .featured-recipe-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-search {
        flex-direction: column;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters-wrapper {
        grid-template-columns: 1fr;
    }
    
    .recipe-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .recipe-actions {
        margin-left: 0;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .recipe-main-image {
        height: 400px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .recipe-card-image {
        height: 200px;
    }
    
    .featured-recipe-content {
        padding: 32px 24px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .instruction-step {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* === ABOUT & CONTACT PAGE STYLES === */
/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .page-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero .page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

/* About Page Styles */
.about-content {
    padding: 6rem 0;
}

.about-section {
    margin-bottom: 6rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text {
    padding: 2rem 0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: var(--border-radius-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition-base);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 2rem 0;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-social-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* === RESPONSIVE STYLES FOR ABOUT & CONTACT === */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }
    
    .page-hero .page-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero .page-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .value-card,
    .contact-item,
    .faq-item {
        padding: 1.5rem;
    }
}

/* === ANIMATIONS === */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f0f0f0 4%, #e0e0e0 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .footer,
    .recipe-actions,
    .comments-section,
    .related-recipes {
        display: none;
    }
    
    .recipe-layout {
        display: block;
    }
}

