/* 
   DA Hengelo - Stylesheet
   Responsive design voor desktop en mobiel
*/

/* ===== ALGEMENE STIJLEN ===== */
:root {
    --primary-color: #e6007e; /* DA roze */
    --secondary-color: #333333;
    --light-color: #ffffff;
    --dark-color: #222222;
    --gray-color: #f5f5f5;
    --border-color: #dddddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #333333;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

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

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn,
.secondary-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.primary-btn:hover,
.secondary-btn:hover {
    background-color: #c4006b;
    color: var(--light-color);
}

.center-btn {
    text-align: center;
    margin: 2rem 0;
}

/* Contact preview knop stijl */
.contact.btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    margin-top: 10px;
    margin-bottom: 50px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    text-align: center;
}

.contact.btn:hover {
    background-color: #c4006b;
    color: var(--light-color);
}

.contact-details .contact.btn {
    background: none;
    color: #ccc;
    padding: 0;
    margin: 0;
    border: none;
    font-weight: 600;
    border-radius: 0;
    transition: color 0.3s;
    display: inline;
}

.contact-details .contact.btn:hover {
    color: #fff;
    background: none;
}

/* Contactpagina verbeteringen */
.contact-info {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 32px 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 36px;
    gap: 18px;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2px;
    min-width: 40px;
    text-align: center;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.info-text p {
    margin-bottom: 4px;
    color: #333;
}

@media (max-width: 768px) {
    .contact-info {
        padding: 20px 0;
        box-shadow: none;
        background: none;
    }
    .info-item {
        margin-bottom: 24px;
    }
}

/* ===== HEADER ===== */
header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
}

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

.webshop-btn {
    background-color: var(--primary-color);
    color: var(--light-color) !important;
    padding: 8px 16px;
    border-radius: 4px;
}

.webshop-btn:hover {
    background-color: #c4006b;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    transition: opacity 0.3s;
    opacity: 0;
}
.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    /* background-image: url('images/hero-bg.png'); */
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ===== NIEUWE EIGENAREN SECTION ===== */
.nieuwe-eigenaren {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eigenaren-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.eigenaren-image {
    flex: 1;
}

.eigenaren-text {
    flex: 1;
}

/* ===== Over ons SECTION ===== */
.over-ons {
    padding: 80px 0;
}

.over-ons-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===== Over ons PAGE ===== */
.page-title {
    background-color: var(--gray-color);
    padding: 60px 0 30px;
    text-align: center;
}

.over-ons-page {
    padding: 60px 0;
}

.over-ons-page .over-ons-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.over-ons-page .over-ons-image {
    margin-bottom: 30px;
}

.over-ons-page .over-ons-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.over-ons-page .over-ons-text h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.over-ons-page .over-ons-text h2:first-child {
    margin-top: 0;
}

/* ===== ASSORTIMENT PREVIEW SECTION ===== */
.assortiment-preview {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.assortiment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.categories-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.category {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category h3 {
    font-size: 1.2rem;
}

/* ===== ASSORTIMENT PAGE ===== */
.assortiment-page {
    padding: 60px 0;
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.assortiment-note {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

/* ===== NATUURLIJK GENEZEN PAGE ===== */
.natuurlijk-page {
    padding: 60px 0;
}

.natuurlijk-content {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.natuurlijk-text {
    flex: 3;
}

.natuurlijk-image {
    flex: 2;
}

.natuurlijk-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.natuurlijk-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.bijzondere-producten {
    margin-top: 60px;
}

.producten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.product {
    background-color: var(--gray-color);
    padding: 20px;
    border-radius: 8px;
}

.advies {
    margin-top: 60px;
    text-align: center;
}

.advies .btn {
    margin-top: 20px;
}

/* ===== AANBIEDINGEN PREVIEW SECTION ===== */
.aanbiedingen-preview {
    padding: 80px 0;
}

.aanbiedingen-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== AANBIEDINGEN PAGE ===== */
.aanbiedingen-page {
    padding: 60px 0;
}

.aanbiedingen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.aanbieding {
    background-color: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.aanbieding-content {
    padding: 20px;
    text-align: center;
}

.aanbieding-korting {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.aanbieding-voorwaarden {
    font-size: 0.9rem;
    color: #666;
}

.folder, .nieuwsbrief-aanbieding {
    text-align: center;
    margin-top: 60px;
}

.nieuwsbrief-form {
    display: flex;
    max-width: 500px;
    margin: 20px auto 0;
    margin-bottom: 30px;
}

.nieuwsbrief-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
}

.nieuwsbrief-form button {
    border-radius: 0 4px 4px 0;
}

/* ===== CONTACT PREVIEW SECTION ===== */
.contact-preview {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.contact-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
}

.contact-details, .openingstijden {
    flex: 1;
    padding: 20px;
}

.tijden {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 60px 0;
}

.contact-content {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.contact-info {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 32px 24px;
}

.map-container {
    flex: 1;
    margin-top: 0;
}
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    .map-container {
        margin-top: 40px;
    }
}

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

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.info-text h3 {
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.map-container {
    margin-top: 60px;
}

.map {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

/* Fix: .contact-info mag op de contactpagina geen flex zijn */
.contact-page .contact-info {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    justify-content: unset;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
}

.footer-links ul li a:hover {
    color: var(--light-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
    border-radius: 0 4px 4px 0;
}

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

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    /* display: none;  <-- deze regel verwijderen! */
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow);
    transition: opacity 0.4s, visibility 0.4s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: #c4006b;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .categories-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .producten-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .aanbiedingen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: all 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .eigenaren-content {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-details, .openingstijden {
        width: 100%;
        padding: 20px 0;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .natuurlijk-content {
        flex-direction: column;
    }
    
    .producten-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .categories-preview {
        grid-template-columns: 1fr;
    }
    
    .categories {
        grid-template-columns: 1fr;
    }
    
    .producten-grid {
        grid-template-columns: 1fr;
    }
    
    .aanbiedingen-grid {
        grid-template-columns: 1fr;
    }
    
    .nieuwsbrief-form {
        flex-direction: column;
    }
    
    .nieuwsbrief-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .nieuwsbrief-form button {
        border-radius: 4px;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .footer-newsletter button {
        border-radius: 4px;
    }
}
.footer-contact a{
    color: #ccc;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
    background: none;
    text-decoration: none;
}

.nieuwsbrief-knop {
    margin-bottom: 40px;
}
