/* Project: CCG Retail / MyKassa.be 
   Version: 2.0 (Modernized & UTF-8)
*/

/* 1. BASIS RESET & FONTS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

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

/* 2. HEADER & NAVIGATIE */
header {
    background: #ffffff;
    border-bottom: 4px solid #0056b3;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: #0056b3;
    text-transform: uppercase;
}

.logo small {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover, 
nav ul li a.active {
    color: #0056b3;
}

.cart-info {
    font-size: 13px;
    color: #888;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

/* 3. HERO SECTIES */
.hero-banner, .hero-be {
    background: #0056b3;
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.hero-banner h1, .hero-be h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-banner p, .hero-be p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* 4. CONTENT SECTIES */
.main-content {
    padding: 80px 0;
}

section {
    margin-bottom: 60px;
}

h2 {
    color: #0056b3;
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #ffcc00; /* Accent kleur geel */
}

h3 {
    margin: 25px 0 15px;
    font-size: 22px;
}

p {
    margin-bottom: 20px;
}

/* 5. GRIDS & KOLOMMEN */
.columns {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.col {
    flex: 1;
}

.card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

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

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

.item {
    background: #ffffff;
    padding: 30px;
    border-left: 5px solid #0056b3;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* 6. LIJSTEN */
ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    padding-left: 10px;
}

/* 7. BUTTONS */
.btn-primary, .btn-alt {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background: #0056b3;
    color: #fff;
}

.btn-primary:hover {
    background: #002d5e;
}

.btn-alt {
    background: #ffcc00;
    color: #333;
}

.btn-alt:hover {
    background: #e6b800;
}

/* 8. FORMULIEREN (Contact) */
.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-form-container {
    flex: 2;
}

.contact-info {
    flex: 1;
    background: #f4f4f4;
    padding: 40px;
    border-radius: 8px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* 9. FOOTER */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 20px;
}

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

.footer-col h4 {
    color: #ffcc00;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    opacity: 0.5;
}

/* 10. RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .columns, .contact-wrapper {
        flex-direction: column;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-banner h1, .hero-be h1 {
        font-size: 32px;
    }
    
    nav ul {
        gap: 15px;
    }
}