* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    /* Sage Green, White, Yellow, Muted Red Color Palette */
    --primary-green: #87A878;
    --light-green: #A8C99C;
    --dark-green: #6B8E5F;
    --primary-red: #C7756D;
    --light-red: #D9918A;
    --primary-yellow: #E8C547;
    --light-yellow: #F5E6A8;
    --cream: #FFFEF7;
    --white: #FFFFFF;
    --text-dark: #3D5A3D;
    --text-medium: #4E4E4E;
    --text-light: #757575;
    --border-light: #E8F5E9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, #F1F8E9 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Desktop Horizontal, Mobile Sidebar */
header {
    background: linear-gradient(135deg, var(--white) 0%, #FAFAFA 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-green);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header h1 i {
    color: var(--primary-green);
    -webkit-text-fill-color: var(--primary-green);
}

.tagline {
    display: none; /* Will show in mobile sidebar */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--primary-green);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* Desktop Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

nav a i {
    margin-right: 0.4rem;
    font-size: 0.95rem;
}

nav a:hover {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 168, 120, 0.3);
}

/* Cuisine divider in nav */
nav li.cuisine-divider {
    display: flex;
    align-items: center;
    border-left: 2px solid var(--primary-green);
    margin-left: 0.5rem;
    padding-left: 0.5rem;
}

nav li.cuisine-divider span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-link {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(199, 117, 109, 0.3);
}

.admin-link:hover {
    background: linear-gradient(135deg, var(--light-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 117, 109, 0.4);
}

/* Search in Nav */
.nav-search-form {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    padding: 0.3rem;
    border-radius: 8px;
    border: 2px solid var(--border-light);
}

.nav-search-form input {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    width: 180px;
    background: transparent;
}

.nav-search-form input:focus {
    outline: none;
}

.nav-search-form button {
    background: var(--primary-green);
    border: none;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.nav-search-form button:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* Mobile Sidebar Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, #FAFAFA 100%);
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-green);
}

.mobile-nav-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-nav {
    background: var(--primary-red);
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.close-nav:hover {
    background: var(--light-red);
    transform: rotate(90deg);
}

.mobile-nav-tagline {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 0.5rem;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.mobile-nav a:hover {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--white);
    transform: translateX(5px);
}

.mobile-nav .admin-link {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    margin-top: 1rem;
    font-weight: 600;
}

.mobile-nav-search {
    margin-bottom: 2rem;
}

.mobile-nav-search form {
    display: flex;
    gap: 0.5rem;
}

.mobile-nav-search input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.mobile-nav-search button {
    background: var(--primary-green);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-search button:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

.nav-overlay.active {
    display: block;
}

/* Main */
main {
    padding: 2rem 0 4rem;
}

/* Left Sidebar Filter */
.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.left-sidebar {
    position: sticky;
    top: 120px;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 2px solid var(--border-light);
}

.left-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-green);
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    color: var(--text-medium);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-list a i {
    margin-right: 0.6rem;
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.filter-list a:hover,
.filter-list a.active {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--white);
    transform: translateX(4px);
}

.main-content {
    min-width: 0;
}

/* Mobile: Hide left sidebar, show in mobile menu */
@media (max-width: 968px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .left-sidebar {
        display: none;
    }
}

/* Hero Section - Compact */
.hero {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid var(--primary-green);
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.hero p {
    font-size: 0.9rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headings */
.featured h3, .about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* Recipe Grid - Smaller, Tighter Cards */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.recipe-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(135, 168, 120, 0.2);
    border-color: var(--primary-green);
}

.recipe-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover img {
    transform: scale(1.05);
}

.recipe-card-content {
    padding: 0.8rem 1rem;
}

.recipe-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.recipe-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.recipe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-category {
    background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
    color: var(--text-dark);
}

.badge-cuisine {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--white);
}

.excerpt {
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(135, 168, 120, 0.4);
}

.read-more i {
    font-size: 0.8rem;
}

/* Recipe Detail Page */
.recipe-detail {
    max-width: 1200px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
}

.recipe-detail h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.recipe-header {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.recipe-detail img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.recipe-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.recipe-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.recipe-detail h3 i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.recipe-detail p {
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.recipe-detail ul, .recipe-detail ol {
    padding-left: 1.5rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.recipe-detail ul li, .recipe-detail ol li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Mobile responsive for recipe detail */
@media (max-width: 968px) {
    .recipe-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .recipe-detail img {
        max-height: 250px;
    }

    .recipe-content-grid {
        grid-template-columns: 1fr;
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(135, 168, 120, 0.4);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--light-yellow), var(--primary-yellow));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(232, 197, 71, 0.4);
    border: 2px solid var(--primary-yellow);
    text-align: center;
    margin-top: 3rem;
}

.about h3 {
    background: linear-gradient(135deg, var(--text-dark), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about .admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Search Results & Category Pages */
.page-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.page-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.page-header p {
    color: var(--text-medium);
    font-size: 0.85rem;
}

/* Search Form */
.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 2rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    gap: 0.5rem;
    border: 2px solid var(--border-light);
}

.search-form input {
    flex: 1;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    background: transparent;
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* Admin Section */
.admin-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-green);
}

.admin-container h2 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 3px solid var(--primary-green);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.admin-container h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-top: 2.5rem;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.admin-form {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-form label {
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

.admin-form label strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(135, 168, 120, 0.1);
}

.admin-form textarea {
    min-height: 120px;
    resize: vertical;
}

.admin-form button {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-form button:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 168, 120, 0.4);
}

.current-image {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--border-light);
}

.current-image img {
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.recipe-list {
    background: var(--cream);
    padding: 1rem;
    border-radius: 12px;
    list-style: none;
    max-height: 500px;
    overflow-y: auto;
}

.recipe-list::-webkit-scrollbar {
    width: 8px;
}

.recipe-list::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 4px;
}

.recipe-list::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.recipe-list::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

.recipe-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.recipe-list li:hover {
    border-color: var(--primary-green);
    transform: translateX(4px);
}

.recipe-list .recipe-title {
    font-weight: 600;
    color: var(--text-dark);
}

.recipe-list .recipe-actions {
    display: flex;
    gap: 1rem;
}

.recipe-list a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.recipe-list a:hover {
    color: var(--dark-green);
    transform: scale(1.05);
}

.no-recipes {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-medium);
    background: var(--cream);
    border-radius: 12px;
    border: 2px dashed var(--border-light);
}

.no-recipes i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

/* Flashes */
.flashes {
    background: linear-gradient(135deg, var(--light-yellow), var(--primary-yellow));
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    list-style: none;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(232, 197, 71, 0.3);
}

.flashes li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.flashes i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* About Page Styles */
.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

.about-hero {
    text-align: center;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-radius: 8px;
    border: 1px solid var(--primary-green);
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.about-hero .subtitle {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
}

.about-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}

.about-section {
    margin-bottom: 1.5rem;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--primary-green);
}

.about-section p {
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.about-list li {
    padding: 0.4rem 0 0.4rem 2rem;
    position: relative;
    line-height: 1.5;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.about-list li:before {
    content: "🌿";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.about-list strong {
    color: var(--text-dark);
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--primary-green);
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.about-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-yellow), var(--primary-yellow));
    border-radius: 8px;
    border: 1px solid var(--primary-yellow);
}

.about-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.about-cta p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 168, 120, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-dark), #1A252F);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-green);
}

footer i {
    color: var(--primary-red);
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

footer p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive - Mobile */
@media (max-width: 968px) {
    /* Show mobile menu toggle */
    .menu-toggle {
        display: block;
    }

    /* Hide desktop nav */
    nav {
        display: none;
    }

    /* Show mobile nav when active */
    .mobile-nav {
        display: block;
    }

    .recipe-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    header .container {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .hero h2, .page-header h2 {
        font-size: 1.6rem;
    }

    .recipe-detail {
        padding: 1.5rem;
    }

    .recipe-detail h1 {
        font-size: 2rem;
    }

    .admin-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 100%;
        left: -100%;
    }

    .recipe-card h4 {
        font-size: 1rem;
    }

    .excerpt {
        font-size: 0.8rem;
    }

    header h1 {
        font-size: 1.3rem;
    }

    .recipe-detail h1 {
        font-size: 1.7rem;
    }

    .hero, .page-header {
        padding: 1.5rem 1rem;
    }
}