/* 
  Colors: 
  Dark Green: #0F4C36
  Gold: #D4AF37
  White: #FFFFFF
  Light Gray: #F8F9FA
  Text Dark: #212529
  Text Gray: #6C757D
*/

:root {
    --primary-color: #0F4C36;
    --primary-light: #166A4B;
    --primary-dark: #093322;
    --secondary-color: #D4AF37;
    --secondary-light: #E4C563;
    --text-main: #212529;
    --text-muted: #6c757d;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --transition: all 0.3s ease;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-white);
}

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

/* ========================================================================= */
/* Typography                                                                */
/* ========================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* ========================================================================= */
/* Buttons                                                                   */
/* ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-main);
}
.btn-primary:hover {
    background-color: #C39D2C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}
.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1EBE55;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp-outline {
    background-color: transparent;
    border-color: #25D366;
    color: #25D366;
}
.btn-whatsapp-outline:hover {
    background-color: #25D366;
    color: white;
}

.btn-block {
    width: 100%;
}

/* ========================================================================= */
/* Header                                                                    */
/* ========================================================================= */
.header {
    background-color: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 80px;
    display: flex;
    align-items: center;
}

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

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
    color: var(--primary-dark);
}

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

.nav-list a {
    font-weight: 500;
    color: var(--text-main);
}
.nav-list a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
}
.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-nav-list a {
    display: block;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
}
.mobile-nav-list a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* ========================================================================= */
/* Hero Section                                                              */
/* ========================================================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('../img/butcher_hero.png') center/cover no-repeat;
    margin-top: 80px; /* Offset for fixed header */
    color: var(--bg-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(9, 51, 34, 0.9) 0%, rgba(9, 51, 34, 0.7) 50%, rgba(9, 51, 34, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    color: var(--bg-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #E9ECEF;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.feature-item i {
    color: var(--secondary-color);
}

/* ========================================================================= */
/* USPs Section                                                              */
/* ========================================================================= */
.usps {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
}

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

.usp-card {
    text-align: center;
    padding: 20px;
}

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

.usp-card p {
    color: #E9ECEF;
    font-size: 0.95rem;
}

.usp-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255,255,255,0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.usp-icon i {
    width: 32px;
    height: 32px;
}

/* ========================================================================= */
/* Section Headers                                                           */
/* ========================================================================= */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}
.section-header p {
    color: var(--text-muted);
}

/* ========================================================================= */
/* Products                                                                  */
/* ========================================================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 24px;
}

.product-info h3 {
    color: var(--primary-color);
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-examples {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ========================================================================= */
/* Custom Grid Layouts                                                       */
/* ========================================================================= */
.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .custom-grid.reverse {
        grid-template-columns: 1fr;
    }
    .custom-grid.reverse > :first-child {
        order: 2;
    }
    .custom-grid.reverse > :last-child {
        order: 1;
    }
}

/* ========================================================================= */
/* Bestellen (Order)                                                         */
/* ========================================================================= */
.order-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-text h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.step-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.whatsapp-cta-box {
    background-color: rgba(37, 211, 102, 0.05);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid #25D366;
}
.whatsapp-cta-box p {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Form Styles */
.order-form-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.order-form-box h3 {
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DEE2E6;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 76, 54, 0.1);
    background-color: var(--bg-white);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ========================================================================= */
/* Over Ons                                                                  */
/* ========================================================================= */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    color: var(--bg-white);
    font-weight: 500;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-list {
    margin-top: 20px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-list i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* ========================================================================= */
/* Contact                                                                   */
/* ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
}

.info-card .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(15, 76, 54, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card h4 {
    margin-bottom: 8px;
}

.info-card p, .hours-list {
    color: var(--text-muted);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #E9ECEF;
    padding-bottom: 5px;
}
.hours-list li:last-child {
    border-bottom: none;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
}
.whatsapp-link:hover {
    text-decoration: underline;
}

.contact-map {
    min-height: 400px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================= */
/* Footer                                                                    */
/* ========================================================================= */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}
.footer-logo .logo-icon {
    background-color: var(--bg-white);
    color: var(--primary-color);
}
.footer-logo .logo-text {
    color: var(--bg-white);
}

.footer-brand p {
    color: #ADB5BD;
    max-width: 400px;
}

.footer-links h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ADB5BD;
    font-size: 0.9rem;
}

/* ========================================================================= */
/* Responsive Adjustments                                                    */
/* ========================================================================= */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

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

    .order-form-box {
        padding: 30px 20px;
    }
}
