:root {
    --primary: #2C3E50;
    --secondary: #27AE60;
    --accent: #E67E22;
    --light: #F8F9FA;
    --dark: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--dark);
    line-height: 1.6;
    background-color: #ffffff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
}

section {
    padding: 100px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--secondary);
    margin-top: 10px;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flex-child {
    flex: 1;
    min-width: 300px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stock-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Able-Me Specifieke Logo Styling */
.product-header-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.able-me-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

#home {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #219653;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #d35400;
}

#over-ons {
    background: var(--light);
    max-width: 100%;
}

.over-container {
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.product-highlight {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    background: #fdfdfd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

#contact {
    background: var(--primary);
    color: white;
    max-width: 100%;
}

#contact h2 {
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 30px;
    background: #22313F;
    color: #bdc3c7;
    font-size: 14px;
}

@media (max-width: 592px) {
    .hero-content h1 { font-size: 40px; }
    .stock-image { height: 280px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    nav.active { display: flex; }
    nav a { margin: 15px 0; width: 100%; text-align: center; }
    #home { padding-top: 100px; }
    .hero-content h1 { font-size: 32px; }
    .flex-container { flex-direction: column-reverse; gap: 30px; }
    .product-highlight .flex-container { flex-direction: column; }
}
