/* ===================================
   kenyér.hu - Stílusok (Barna színvilág)
   =================================== */

:root {
    --primary-color: #8b6f47;
    --secondary-color: #a0826d;
    --accent-color: #c9a57b;
    --text-dark: #303030;
    --text-light: #6b6b6b;
    --bg-light: #f8f8f8;
    --bg-wood: #8b6f47;
    --white: #ffffff;
    --overlay: rgba(48, 48, 48, 0.5);
    
    --font-heading: 'Satisfy', cursive;
    --font-body: 'Open Sans', sans-serif;
    --font-serif: 'Lora', serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: #8b6f47 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJklEQVQIW2NkYGD4z8DAwMgABXABRiYGKGBiYGBgZIACRiYGBgYABSwBAfStHzwAAAAASUVORK5CYII=');
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly tap targets */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(139, 111, 71, 0.2);
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.3;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

h1 { 
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 400;
}
h2 { 
    font-size: 2.8rem;
}
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

/* ===================================
   Layout
   =================================== */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===================================
   Header & Navigation
   =================================== */

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo a {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--primary-color);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.08);
    letter-spacing: 2px;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 500px;
    height: 60vh;
    max-height: 650px;
    background-image: url('../images/02/homepage-parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 48, 48, 0.6) 0%, rgba(48, 48, 48, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 90%;
    padding: 20px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 0;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(198, 117, 49, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(198, 117, 49, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===================================
   Sections
   =================================== */

.featured-section,
.about-preview {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.featured-section::before,
.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 100%);
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3.5rem;
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* ===================================
   Recipe Grid
   =================================== */

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recipe-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
    border: 3px solid transparent;
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.recipe-image {
    height: clamp(220px, 50vw, 300px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.recipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.recipe-card:hover .recipe-overlay {
    opacity: 1;
}

.recipe-info {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.recipe-date {
    color: var(--text-light);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

.recipe-info h3 {
    color: var(--text-dark);
    margin: 0.5rem 0 1rem;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-family: var(--font-serif);
    transition: var(--transition);
    font-weight: 600;
}

.recipe-card:hover .recipe-info h3 {
    color: var(--primary-color);
}

.recipe-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Recipe Grid Two Column - Responsive */
.recipe-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.recipe-card-circle {
    text-align: center;
    transition: transform 0.3s ease;
}

.recipe-card-circle:hover {
    transform: translateY(-5px);
}

.recipe-link {
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.recipe-image-circle {
    width: 100%;
    max-width: 305px;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 50%;
    margin: 0 auto 30px;
    background-size: cover;
    background-position: center;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.recipe-card-circle:hover .recipe-image-circle {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.35);
    border-color: var(--primary-color);
}

.recipe-info-center {
    text-align: center;
    padding: 0 15px;
}

.recipe-meta {
    display: block;
    margin-bottom: 12px;
}

.recipe-info-center .recipe-date {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.recipe-separator {
    color: #999;
    margin: 0 8px;
    font-weight: 300;
}

.recipe-info-center .recipe-category {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.recipe-info-center h3 {
    color: var(--text-dark);
    margin: 0 0 15px;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-family: var(--font-serif);
    transition: var(--transition);
    font-weight: 600;
    line-height: 1.3;
}

.recipe-card-circle:hover .recipe-info-center h3 {
    color: var(--primary-color);
}

.recipe-excerpt {
    color: #777;
    line-height: 1.8;
    margin: 0 0 15px;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: var(--transition);
}

.recipe-card-circle:hover .read-more {
    letter-spacing: 2px;
}

/* ===================================
   About Preview Section
   =================================== */

.about-preview {
    background: #f8f8f8;
    padding: 90px 0;
}

.about-content-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-text-left h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 3.2rem;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.about-text-left .subtitle {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
}

.about-text-left p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.3rem;
    font-size: 1rem;
}

.about-text-left p:last-child {
    margin-bottom: 0;
}

.about-image-right {
    position: relative;
}

.about-image-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.about-image-right img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.2),
        0 0 0 5px var(--primary-color),
        0 0 0 10px rgba(198, 117, 49, 0.3);
    transform: rotate(2deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Sticky Note (Ingredients)
   =================================== */

.sticky-note {
    background: linear-gradient(135deg, #fff9e6 0%, #fffaf0 50%, #fff8dc 100%);
    padding: 2.5rem 2rem;
    border-radius: 3px;
    box-shadow: 
        0 1px 3px rgba(0,0,0,0.12),
        0 1px 2px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: sticky;
    top: 100px;
    transform: rotate(-2deg);
    border: 1px solid rgba(200, 180, 140, 0.3);
    position: relative;
}

.sticky-note::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: rgba(255, 230, 180, 0.7);
    border-radius: 0 0 15px 15px;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 1px 2px rgba(0,0,0,0.1);
}

.sticky-note::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 120px;
    height: 20px;
    background: rgba(0,0,0,0.15);
    filter: blur(8px);
    transform: rotate(3deg);
    border-radius: 50%;
}

.sticky-note h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 400;
}

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

.sticky-note li {
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(198, 117, 49, 0.2);
    color: var(--text-dark);
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

.sticky-note li:last-child {
    border-bottom: none;
}

.sticky-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ===================================
   NEW RECIPE DETAIL PAGE (Mobile-First Design)
   =================================== */

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Image */
.recipe-hero {
    width: 100%;
    height: clamp(300px, 50vh, 500px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.recipe-hero-content {
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.recipe-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.recipe-hero h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-serif);
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Recipe Detail Section */
.recipe-detail-new {
    background: var(--white);
    padding: 3rem 0;
}

/* Meta Cards */
.recipe-meta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: -50px auto 2rem;
    position: relative;
    z-index: 10;
}

.meta-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.meta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
}

/* Meta icon styles - PNG icons */
.meta-icon-img {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-icon-png {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(139, 111, 71, 0.3));
    transition: transform 0.3s ease;
}

.meta-card:hover .meta-icon-png {
    transform: scale(1.1);
}

/* Keep old emoji icon for backwards compatibility */
.meta-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    font-family: var(--font-serif);
}

/* Recipe Intro */
.recipe-intro {
    background: linear-gradient(135deg, #fffaf5 0%, #fff4e6 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.recipe-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

/* Content Grid */
.recipe-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Ingredients Section */
.ingredients-section h2,
.instructions-section h2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary-color);
}

.section-icon {
    font-size: 2.2rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ingredients-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.ingredients-list li:hover {
    background: var(--bg-light);
    padding-left: 0.5rem;
}

.ingredient-check {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Instructions Section */
.instructions-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.instructions-list li {
    counter-increment: step-counter;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.instructions-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-serif);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
    flex-shrink: 0;
}

.step-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    padding-top: 0.7rem;
}

/* Share Section */
.recipe-share {
    background: linear-gradient(135deg, #f7f5f2 0%, #fffaf5 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-share h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.share-buttons-new {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn-new {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
}

.share-btn-new:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.share-btn-new.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.share-btn-new.pinterest {
    background: linear-gradient(135deg, #E60023, #BD081C);
}

.share-btn-new.email {
    background: linear-gradient(135deg, #7f8c8d, #5d6d7e);
}

/* Back Button */
.recipe-back {
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-5px);
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .recipe-content-grid {
        grid-template-columns: 380px 1fr;
        gap: 3rem;
    }
    
    .ingredients-section {
        order: 1;
    }
    
    .instructions-section {
        order: 2;
    }
    
    .recipe-meta-cards {
        margin: -80px auto 3rem;
    }
    
    .meta-card {
        padding: 2rem;
    }
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .recipe-hero {
        height: 350px;
    }
    
    .recipe-hero-content {
        padding: 1.5rem;
    }
    
    .recipe-category-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .recipe-detail-new {
        padding: 2rem 0;
    }
    
    .recipe-meta-cards {
        grid-template-columns: 1fr;
        margin: -40px 20px 2rem;
        gap: 0.8rem;
    }
    
    .meta-card {
        padding: 1rem;
    }
    
    .meta-icon {
        font-size: 1.5rem;
    }
    
    .recipe-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .recipe-intro p {
        font-size: 1rem;
    }
    
    .ingredients-section h2,
    .instructions-section h2 {
        font-size: 1.5rem;
    }
    
    .section-icon {
        font-size: 1.8rem;
    }
    
    .ingredients-list {
        padding: 1.5rem;
    }
    
    .ingredients-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    .instructions-list li {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-text {
        font-size: 0.95rem;
        padding-top: 0.5rem;
    }
    
    .recipe-share {
        padding: 1.5rem;
    }
    
    .recipe-share h3 {
        font-size: 1.2rem;
    }
    
    .share-btn-new {
        width: 50px;
        height: 50px;
    }
    
    .btn-back {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===================================
   Recipe Detail Page (OLD - Deprecated)
   =================================== */

.recipe-detail {
    padding: 3rem 0;
    background: var(--white);
}

.recipe-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f7f5f2 0%, #fffaf5 100%);
    border-radius: 10px;
}

.recipe-header h1 {
    color: var(--text-dark);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    font-family: var(--font-serif);
    font-weight: 600;
}

.recipe-meta {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    color: var(--text-light);
    font-size: 1rem;
    flex-wrap: wrap;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.recipe-main {
    background: var(--white);
}

.recipe-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.2),
        0 0 0 5px white,
        0 0 0 10px var(--primary-color);
}

.recipe-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fffaf5 0%, #fff9e6 100%);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
}

.recipe-instructions {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 10px;
}

.recipe-instructions h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.recipe-instructions ol {
    padding-left: 2rem;
    counter-reset: step-counter;
    list-style: none;
}

.recipe-instructions li {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-dark);
    position: relative;
    padding-left: 3rem;
    counter-increment: step-counter;
}

.recipe-instructions li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(198, 117, 49, 0.4);
}

/* ===================================
   Social Share Buttons
   =================================== */

.share-buttons {
    display: flex;
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f7f5f2 0%, #fffaf5 100%);
    border-radius: 10px;
    align-items: center;
    flex-wrap: wrap;
    border: 2px dashed var(--primary-color);
}

.share-buttons h3 {
    margin: 0;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #1557c0);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0c85d0);
}

.share-btn.pinterest {
    background: linear-gradient(135deg, #E60023, #bd001c);
}

.share-btn.email {
    background: linear-gradient(135deg, #666, #444);
}

/* ===================================
   Footer
   =================================== */

.main-footer {
    background: #3d2d23;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    margin-top: 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJklEQVQIW2NkYGD4z8DAwMgABXABRiYGKGBiYGBgZIACRiYGBgYABSwBAfStHzwAAAAASUVORK5CYII=');
    opacity: 0.15;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-section p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(139, 111, 71, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.social-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet & Medium Screens */
@media (max-width: 968px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .recipe-grid-two {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px 35px;
        padding: 50px 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }
    
    .about-content,
    .recipe-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile & Small Screens */@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .about-content,
    .recipe-content {
        grid-template-columns: 1fr;
    }
    
    .sticky-note {
        position: static;
        transform: rotate(0);
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 400px;
        height: 50vh;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    /* Receptek oldal mobilra optimalizálva */
    .recipe-grid,
    .recipe-grid-two {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 20px 0;
        margin-top: 1rem;
    }
    
    .recipe-card {
        border-width: 2px;
    }
    
    .recipe-card:hover {
        transform: translateY(-4px);
    }
    
    .recipe-image {
        height: 200px;
    }
    
    .recipe-info {
        padding: 1rem;
    }
    
    .recipe-info h3 {
        font-size: 1.3rem;
        margin: 0.4rem 0 0.8rem;
    }
    
    .recipe-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .recipe-date {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .recipe-overlay {
        display: none;
    }
    
    /* Főoldal kör receptek */
    .recipe-card-circle {
        max-width: 100%;
    }
    
    .recipe-image-circle {
        max-width: 280px;
        border-width: 5px;
    }
    
    .recipe-info-center {
        padding: 0 10px;
    }
    
    .recipe-meta {
        font-size: 0.7rem;
    }
    
    /* Recept detail oldal optimalizálás */
    .recipe-detail {
        padding: 2rem 0;
    }
    
    .recipe-header {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .recipe-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .recipe-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .recipe-meta span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .recipe-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recipe-featured-image {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .recipe-description {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .recipe-instructions h2 {
        font-size: 1.6rem;
        margin: 1.5rem 0 1rem;
    }
    
    .recipe-instructions ol {
        padding-left: 1.2rem;
    }
    
    .recipe-instructions li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
    
    .sticky-note {
        position: static;
        transform: rotate(0);
        margin-top: 1.5rem;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .sticky-note h3 {
        font-size: 1.3rem;
    }
    
    .sticky-note li {
        font-size: 0.9rem;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-left h2 {
        font-size: 2rem;
    }
    
    .featured-section,
    .about-preview {
        padding: 2.5rem 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===================================
   Admin Styles
   =================================== */

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

.admin-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.admin-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-nav a {
    padding: 0.8rem 1.5rem;
    background: var(--bg-light);
    border-radius: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--primary-color);
    color: white;
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.admin-table tr:hover {
    background: var(--bg-light);
}

.admin-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 200px;
    resize: vertical;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   HOMEPAGE - ABOUT SECTION
   ============================================ */

.home-about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fef9f6 100%);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text-block {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.about-text-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
}

.icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(139, 111, 71, 0.2));
    transition: transform 0.3s ease;
}

.about-text-block:hover .icon-large {
    transform: scale(1.1) rotate(5deg);
}

.about-text-block h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #303030;
    margin-bottom: 1rem;
}

.about-text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #8b6f47 0%, #6d5636 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.3);
    color: white;
}

.cta-section h3 {
    font-family: 'Satisfy', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: white;
    color: #8b6f47;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 6rem 0;
    background: white;
}

.features-section h2 {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #303030;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, #fef9f6 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #8b6f47;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 111, 71, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 3px 6px rgba(139, 111, 71, 0.3));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #303030;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Hero subtitle on homepage */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
    opacity: 0.95;
}

/* ============================================
   RESPONSIVE - HOMEPAGE
   ============================================ */

@media (max-width: 768px) {
    .home-about {
        padding: 4rem 0;
    }

    .about-intro {
        margin-bottom: 3rem;
    }

    .about-content-grid {
        gap: 2rem;
    }

    .about-text-block {
        padding: 2rem;
    }

    .icon-large {
        width: 60px;
        height: 60px;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline, .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .features-section {
        padding: 4rem 0;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .lead-text {
        font-size: 1.1rem;
    }

    .about-text-block h3 {
        font-size: 1.3rem;
    }

    .about-text-block p {
        font-size: 0.95rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* ===================================
   PAGE HERO (Rólunk, Kovász, Blog)
   =================================== */

.page-hero {
    width: 100%;
    height: clamp(250px, 40vh, 400px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-serif);
    margin: 0 0 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-page {
    padding: 4rem 0;
    background: var(--white);
}

.about-content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text-left {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-text-left p {
    margin-bottom: 1.5rem;
}

.about-text-left h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fffaf5 0%, #fff4e6 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 2rem 0;
}

.about-image-right {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image-right img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-right img:hover {
    transform: scale(1.05);
}

/* Desktop layout */
@media (min-width: 768px) {
    .about-content-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Mobile optimization */
@media (max-width: 600px) {
    .page-hero {
        height: 300px;
    }
    
    .about-page {
        padding: 2rem 0;
    }
    
    .about-text-left {
        font-size: 1rem;
    }
    
    .about-text-left h2 {
        font-size: 1.8rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        padding: 1rem;
    }
}
