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

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
    --accent-color: #f4f4f4;
    --text-color: #333;
    --light-gray: #e8e8e8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #a01628;
    transform: translateY(-2px);
}

.features-grid {
    padding: 80px 20px;
    background: var(--accent-color);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.menu-preview {
    padding: 80px 20px;
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

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

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-card h3 {
    padding: 20px 20px 10px;
    color: var(--secondary-color);
}

.menu-card p {
    padding: 0 20px;
    color: #666;
}

.price-tag {
    display: block;
    padding: 15px 20px 20px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.process-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.testimonials-section {
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.stars {
    color: #ffa500;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.customer-name {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
}

.admin-frame-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

.admin-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.admin-screenshot {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.admin-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.admin-features {
    list-style: none;
    margin-top: 20px;
}

.admin-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-features i {
    color: var(--primary-color);
}

.faq-section {
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item i {
    color: var(--primary-color);
}

.location-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-info h3 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: var(--primary-color);
}

.location-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.fun-facts-section {
    padding: 80px 20px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fact-card {
    text-align: center;
    padding: 30px;
    background: var(--accent-color);
    border-radius: 10px;
}

.fact-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.fact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-kvk {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 15px var(--shadow);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text a {
    color: var(--primary-color);
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn.decline {
    background: #666;
    color: var(--white);
}

.page-hero {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-story {
    padding: 80px 20px;
}

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

.story-text h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.mission-values {
    padding: 80px 20px;
    background: var(--accent-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.value-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.team-section {
    padding: 80px 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
}

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

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 10px;
    color: var(--secondary-color);
    font-size: 24px;
}

.member-role {
    padding: 0 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.member-bio {
    padding: 15px 20px 20px;
    line-height: 1.8;
}

.timeline-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    min-width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stats-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
}

.blog-listing {
    padding: 80px 20px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

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

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.post-content {
    padding: 25px;
}

.post-content h2 {
    margin-bottom: 15px;
}

.post-content h2 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.post-content h2 a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.post-meta i {
    color: var(--primary-color);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

.newsletter-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.newsletter-box h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #a01628;
}

.contact-section {
    padding: 80px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.contact-detail i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-detail h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-detail a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #a01628;
}

.map-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

.map-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.delivery-areas {
    padding: 80px 20px;
}

.delivery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.area-item {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.area-item i {
    color: var(--primary-color);
}

.delivery-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #666;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.modal-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.blog-post-single {
    padding: 0 0 60px;
}

.post-header-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.post-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-container {
    max-width: 900px;
    margin: -100px auto 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
    z-index: 1;
}

.post-meta-header {
    padding: 40px 50px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.post-category-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-meta-header h1 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-author-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
}

.post-author-info i {
    color: var(--primary-color);
}

.post-content-body {
    padding: 40px 50px;
    line-height: 1.9;
    font-size: 17px;
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.post-content-body h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.post-content-body h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.post-content-body p {
    margin-bottom: 20px;
}

.post-footer {
    padding: 30px 50px 40px;
    border-top: 1px solid var(--light-gray);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.post-tags i {
    color: var(--primary-color);
}

.post-tags a {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background 0.3s;
}

.post-tags a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.back-to-blog a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .feature-cards,
    .menu-gallery,
    .process-steps,
    .testimonials-grid,
    .admin-preview,
    .location-details,
    .story-content,
    .contact-wrapper,
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
    }

    .post-container {
        margin-top: -50px;
    }

    .post-meta-header,
    .post-content-body,
    .post-footer {
        padding: 30px 25px;
    }

    .post-meta-header h1 {
        font-size: 28px;
    }

    .post-content-body {
        font-size: 16px;
    }
}