/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FEFEFE;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2C1810;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2C1810;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #8B4513;
    color: white;
    border-color: #8B4513;
}

.btn-primary:hover {
    background-color: #A0522D;
    border-color: #A0522D;
}

.btn-secondary {
    background-color: transparent;
    color: #8B4513;
    border-color: #8B4513;
}

.btn-secondary:hover {
    background-color: #8B4513;
    color: white;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    color: #8B4513;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B4513;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8B4513;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #8B4513;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C1810;
    color: white;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-buttons button:hover {
    background-color: #A0522D;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F4E4BC 0%, #E8D5A3 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 span {
    color: #8B4513;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5D4037;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #FAFAFA;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Popular Recipes Section */
.popular-recipes {
    padding: 80px 0;
    background-color: #F9F9F9;
}

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

.recipe-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.recipe-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.recipe-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: #8B4513;
}

.recipe-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background-color: #2C1810;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #F4E4BC;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F4E4BC;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #CCCCCC;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A4A4A;
    color: #999;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2C1810;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #DDD;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F4E4BC 0%, #E8D5A3 100%);
    padding: 120px 0 60px;
    margin-top: 80px;
    text-align: center;
}

.page-header h1 {
    color: #2C1810;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #5D4037;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background-color: #F9F9F9;
}

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

.team-member {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-title {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-section {
    padding: 80px 0;
    background-color: white;
}

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

.mission-item {
    text-align: center;
    padding: 2rem;
}

.mission-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Services Page Styles */
.course-categories {
    padding: 80px 0;
    background-color: white;
}

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

.category-card {
    background-color: #FAFAFA;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.course-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.course-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

.course-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #E0E0E0;
}

.featured-courses {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.course-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.course-content {
    padding: 2rem;
}

.course-duration {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E0E0E0;
}

.course-level {
    background-color: #F4E4BC;
    color: #8B4513;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-features-section {
    padding: 80px 0;
    background-color: white;
}

.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

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

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-hours {
    color: #666;
    font-size: 0.9rem;
}

.opening-hours {
    background-color: #F9F9F9;
    padding: 2rem;
    border-radius: 10px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.day {
    font-weight: 600;
}

.time {
    color: #8B4513;
}

.contact-form-container {
    background-color: #FAFAFA;
    padding: 3rem;
    border-radius: 15px;
}

.contact-form-container h2 {
    text-align: left;
    margin-bottom: 2rem;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.location-map {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.map-placeholder {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-info {
    text-align: center;
    color: #666;
}

.map-info p {
    margin-bottom: 0.5rem;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F4E4BC 0%, #E8D5A3 100%);
    text-align: center;
    margin-top: 80px;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    color: #2C1810;
    margin-bottom: 1rem;
}

.thanks-section p {
    font-size: 1.2rem;
    color: #5D4037;
    margin-bottom: 2rem;
}

.thanks-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.info-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 20px;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links-large a:hover {
    color: #A0522D;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.quick-info {
    padding: 80px 0;
    background-color: white;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.quick-info-item {
    text-align: center;
    padding: 2rem;
}

.quick-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Testimonials Page Styles */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-card {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E0E0E0;
    color: #8B4513;
    font-weight: 600;
}

.stats-section {
    padding: 80px 0;
    background-color: #8B4513;
    color: white;
    text-align: center;
}

.stats-section h2 {
    color: white;
    margin-bottom: 3rem;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #F4E4BC;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #F4E4BC 0%, #E8D5A3 100%);
    text-align: center;
}

.testimonials-cta h2 {
    color: #2C1810;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: #5D4037;
    margin-bottom: 2rem;
}

/* Blog Page Styles */
.blog-search {
    padding: 40px 0;
    background-color: #F9F9F9;
}

.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #DDD;
    border-radius: 5px;
    font-size: 1rem;
}

.search-form button {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #A0522D;
}

.featured-recipe {
    padding: 80px 0;
    background-color: white;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: #FAFAFA;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-content {
    padding: 3rem;
}

.recipe-meta {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-posts {
    padding: 80px 0;
    background-color: #F9F9F9;
}

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

.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 2rem;
}

.blog-meta {
    color: #8B4513;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #A0522D;
}

.newsletter-cta {
    padding: 80px 0;
    background-color: #2C1810;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #CCCCCC;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #555;
    border-radius: 5px;
    background-color: #444;
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #AAA;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8B4513;
}

/* Recipe Page Styles */
.recipe-header {
    background: linear-gradient(135deg, #F4E4BC 0%, #E8D5A3 100%);
    padding: 100px 0 60px;
    margin-top: 80px;
}

.recipe-breadcrumb a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.recipe-breadcrumb a:hover {
    color: #A0522D;
}

.recipe-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.recipe-meta span {
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 600;
}

.recipe-rating {
    margin: 1.5rem 0;
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-star {
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.rating-star:hover,
.rating-star.active {
    opacity: 1;
}

.rating-star:not(.active) {
    opacity: 0.3;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.recipe-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.recipe-content {
    padding: 80px 0;
    background-color: white;
}

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

.recipe-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.recipe-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.recipe-description,
.recipe-ingredients,
.recipe-instructions,
.recipe-tips,
.recipe-serving,
.recipe-tradition {
    background-color: #FAFAFA;
    padding: 2.5rem;
    border-radius: 15px;
}

.recipe-description h2,
.recipe-ingredients h2,
.recipe-instructions h2,
.recipe-tips h2,
.recipe-serving h2,
.recipe-tradition h2 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: left;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.ingredients-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
    padding-left: 20px;
}

.ingredients-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

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

.recipe-ingredients h3 {
    color: #8B4513;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.instruction-step {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E0E0E0;
}

.instruction-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.instruction-step h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.instruction-step p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.recipe-tips ul,
.recipe-tradition ul {
    list-style: none;
    padding: 0;
}

.recipe-tips li,
.recipe-tradition li {
    margin-bottom: 1rem;
    padding-left: 0;
}

.recipe-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nutrition-info,
.safety-warning,
.ingredient-tips,
.bavarian-terms,
.related-recipes,
.chef-note {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 15px;
}

.nutrition-info h3,
.safety-warning h3,
.ingredient-tips h3,
.bavarian-terms h3,
.related-recipes h3,
.chef-note h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: left;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.nutrition-label {
    color: #666;
}

.nutrition-value {
    font-weight: 600;
    color: #8B4513;
}

.safety-warning {
    border-left: 4px solid #FF6B6B;
    background-color: #FFF5F5;
}

.safety-warning h3 {
    color: #E53E3E;
}

.safety-warning ul {
    list-style: none;
    padding: 0;
}

.safety-warning li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 20px;
}

.safety-warning li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.ingredient-tips ul,
.bavarian-terms ul {
    list-style: none;
    padding: 0;
}

.ingredient-tips li,
.bavarian-terms li {
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-item {
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    color: #8B4513;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.related-item:hover {
    background-color: #F4E4BC;
}

.chef-note {
    text-align: center;
    background: linear-gradient(135deg, #F4E4BC 0%, #E8D5A3 100%);
}

.chef-avatar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.chef-note p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #5D4037;
}

.chef-note p:last-child {
    font-style: normal;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .recipe-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 5px;
        min-width: 200px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid,
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}