/* Algemene stijl */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #ffffff;
    min-height: 100vh;
}

/* Glass card for dark theme */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Fade-in animation for glass cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

/* Achtergrond pseudo-element */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) blur(4px) brightness(0.4);
  z-index: -1;
  opacity: 0.9;
  transition: background-image 0.8s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 4rem;
}

/* Secties naast elkaar */
.sections {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.section {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grote knoppen */
.large-btn {
    display: block;
    width: 80%;
    max-width: 350px;
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background-color: #1e1e1e;
    border-radius: 1rem;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.large-btn:hover {
    background-color: #ffffff;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

/* =============================== */
/* 🎨 Preview Sectie Styling */
/* =============================== */

.preview-container {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
}

.preview-wrapper {
    display: inline-block;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
}

.preview-wrapper:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(56, 221, 248, 0.4);
}

.preview-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Verwijderde caption */
.preview-caption {
    display: none;
}

/* Fade-in effect bij laden */
.preview-wrapper {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================== */
/* Responsiveness */
/* =============================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .large-btn {
        width: 100%;
    }

    .preview-wrapper {
        max-width: 260px;
    }

    .preview-img {
        height: 260px;
    }
}

/* ===============================
   Webshop titel
   =============================== */

.webshop-header {
  max-width: 420px;        /* maakt de doos smal */
  margin: 0 auto 3rem;     /* centreert horizontaal */
  padding: 1.2rem 2rem;   /* veel kleiner dan standaard */
}

.webshop-header h1 {
  font-size: 2rem;
  text-align: center;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}