* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3436;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: #ff6b6b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

.hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    margin-top: 76px; /* Höhe der fixed Navigation */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: none;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}

.post-card {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.recipe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.recipe-filters {
    margin-bottom: 2rem;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-content {
    padding: 1rem;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
}

.recipe-detail {
    padding-top: 2rem;
}

.recipe-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.recipe-title {
    padding-right: 2rem;
}

.recipe-title h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 25px;
    font-size: 0.9rem;
}

.recipe-meta i {
    color: #ff6b6b;
}

.recipe-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.recipe-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.portions-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}

.portions-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #ff6b6b;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

#portions {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.3rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    display: flex;
    gap: 0.5rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.instructions-list {
    padding-left: 1.5rem;
}

.instructions-list li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.recipe-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-cards {
    padding: 4rem 0;
    background: #f9f9f9;
}

.info-cards .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card, .story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-card::before, .story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.info-card:hover::before, .story-card:hover::before {
    transform: scaleX(1);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.benefits {
    padding: 4rem 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit h3 {
    color: #333;
    margin-bottom: 1rem;
}

.newsletter {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    z-index: 1;
}

.newsletter .container {
    position: relative;
    z-index: 2;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.read-more {
    display: inline-block;
    color: #ff6b6b;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
}

.start-guide {
    padding: 6rem 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    margin: -3.5rem auto 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: 5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.features {
    padding: 6rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-stories {
    padding: 6rem 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.author {
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .info-cards .container {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        order: -1;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .feature-grid, .steps-grid {
        gap: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .newsletter-form {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .step, .info-card, .story-card {
        padding: 1.5rem;
    }
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

section:not(:first-child) {
    margin-top: -2rem; /* Negative margin für besseren Fluss */
}

/* Alternierende Hintergrundfarben für besseren visuellen Fluss */
section:nth-child(even):not(.hero):not(.newsletter) {
    background: #f8f9fa;
}

/* Smooth Scroll für bessere Navigation */
html {
    scroll-behavior: smooth;
}

/* Subtle animations for cards */
.info-card:hover, .story-card:hover, .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Subtiler Gradient-Overlay für Cards */
.info-card::after, .story-card::after, .step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-card:hover::after, .story-card:hover::after, .step:hover::after {
    opacity: 1;
}

p {
    color: #636e72;
    line-height: 1.8;
}

/* Rezepte-Seite Styles */
.page-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('images/recipes-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 76px;
}

.recipe-filters {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.search-box {
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.8rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 25px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #ff6b6b;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.recipe-image {
    position: relative;
    height: 200px;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.recipe-tags {
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f8f9fa;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    color: #666;
}

.recipe-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:not(:disabled):hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .filter-options {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Share und Print Buttons */
.recipe-actions {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn, .print-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn i, .print-btn i {
    font-size: 1.2rem;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-btn.email {
    background: #EA4335;
    color: white;
}

.print-btn {
    background: #6c757d;
    color: white;
}

.share-btn:hover, .print-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Print-spezifische Styles */
@media print {
    .recipe-actions,
    .portions-calculator,
    nav,
    footer {
        display: none !important;
    }

    .recipe-detail {
        padding: 0;
        margin: 0;
    }

    .recipe-content {
        page-break-inside: avoid;
    }

    .recipe-instructions {
        page-break-before: always;
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .recipe-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn, .print-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.recipe-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Filter Section */
.recipe-filters {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.filter-tag {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    background: #f8f9fa;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag.active {
    background: #ff6b6b;
    color: white;
}

/* Recipe Cards */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-image {
    position: relative;
    height: 200px;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}

/* Recipe Detail Styles */
.recipe-header-simple {
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-header-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.recipe-meta-simple {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
}

.recipe-main-image {
    margin-bottom: 2rem;
}

.recipe-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.recipe-short-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.portions-calculator {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.portions-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portions-control button {
    width: 30px;
    height: 30px;
    border: none;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    cursor: pointer;
}

.portions-control input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.3rem;
}

.ingredients-section, 
.preparation-section {
    margin-bottom: 3rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.preparation-steps {
    padding-left: 1.2rem;
}

.preparation-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.share-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.share-btn, .print-btn {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.share-btn:hover, .print-btn:hover {
    transform: translateY(-2px);
}

.whatsapp { background: #25D366; color: white; }
.telegram { background: #0088cc; color: white; }
.email { background: #EA4335; color: white; }
.print-btn { background: #6c757d; color: white; }

/* Footer Styles */
footer {
    background: #2d3436;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #dfe6e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #dfe6e9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Zurück-Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 25px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}

.back-button i {
    font-size: 0.9rem;
}

/* Ähnliche Rezepte Section */
.similar-recipes {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.similar-recipes h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #333;
}

.similar-recipes .recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .similar-recipes .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .back-button {
        margin-bottom: 1.5rem;
    }
}

/* Ernährungstipps Grid */
.nutrition-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/nutrition-hero.jpg');
    background-size: cover;
    background-position: center;
}

.nutrition-tips-grid {
    padding: 4rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-image {
    height: 200px;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tip-card:hover .tip-image img {
    transform: scale(1.05);
}

.tip-content {
    padding: 1.5rem;
}

.tip-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.tip-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tip-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Ernährungstipp Detail Seite */
.tip-detail {
    padding: 4rem 0;
}

.tip-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tip-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.tip-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.tip-main-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tip-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.tip-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.tip-text p {
    margin-bottom: 1.5rem;
}

/* Admin Bereich Styles */
.tip-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tips-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tips-table th,
.tips-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tips-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.tips-table .actions {
    display: flex;
    gap: 0.5rem;
}

.tips-table .btn-small {
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-header h1 {
        font-size: 2rem;
    }
    
    .tip-text {
        padding: 0 1rem;
    }
    
    .tip-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Filter Tags */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.filter-tag {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: #f8f9fa;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-tag:hover {
    background: #ff6b6b;
    color: white;
}

.filter-tag.active {
    background: #ff6b6b;
    color: white;
}

/* Share Buttons */
.share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.whatsapp { background: #25D366; color: white; }
.share-btn.telegram { background: #0088cc; color: white; }
.share-btn.email { background: #EA4335; color: white; }

/* Nutrition Plan Form Styles */
.nutrition-plan-form {
    max-width: 800px;
    margin: 2rem auto;
}

.form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.prompt-result {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.prompt-result pre {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    white-space: pre-wrap;
    font-size: 0.9rem;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Saved Plans Styles */
.saved-plans {
    margin-top: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.plan-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-goal {
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.plan-details {
    margin-bottom: 1.5rem;
}

.plan-actions {
    display: flex;
    gap: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
}

.close:hover {
    color: #ff6b6b;
}

/* Nutrition Plans CTA Section */
.nutrition-plans-cta {
    padding: 4rem 0;
    background: #f8f9fa;
}

.plans-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.plans-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

/* My Plans Page */
.my-plans {
    padding: 4rem 0;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.plan-status.pending {
    background: #fff3cd;
    color: #856404;
}

.plan-status.completed {
    background: #d4edda;
    color: #155724;
}

.plan-details {
    margin: 1.5rem 0;
}

.plan-details p {
    margin: 0.5rem 0;
}

.plan-actions {
    display: flex;
    gap: 1rem;
}

.plan-pending {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    color: #666;
}

.no-plans {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Value Proposition Styles */
.value-proposition {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-proposition h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

/* Login Message Styles */
.login-message {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    color: #28a745;
}

.guarantee i {
    font-size: 1.5rem;
}

/* Benefits Styles */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefit {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    color: #28a745;
    font-weight: 500;
} 