/* ============================================================
   KoalaGaming — Premium Gaming Website Styles
   Kleuren, layout, animaties en responsive design
   ============================================================ */

/* --- CSS Variabelen --- */
:root {
  --bg: #0d0d0d;
  --bg-secondary: #181818;
  --bg-card: #1a1a1a;
  --accent: #ff1f1f;
  --accent-hover: #ff4444;
  --accent-glow: rgba(255, 31, 31, 0.45);
  --accent-soft: rgba(255, 31, 31, 0.12);
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --glow: 0 0 24px var(--accent-glow);
  --glow-strong: 0 0 40px var(--accent-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 72px;
  --container: 1140px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* Logo's en productafbeeldingen: expliciete afmetingen */
.nav-logo img,
.loader-logo,
.hero-logo,
.footer-brand img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav-logo img {
  width: 42px;
  height: 42px;
}

.hero-logo {
  width: 170px;
  height: 170px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

strong {
  color: var(--accent);
  font-weight: 600;
}

/* --- Laadanimatie --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  margin: 0 auto 1.5rem;
  animation: loaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--accent-glow));
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 4px;
  animation: loaderFill 1.2s ease forwards;
  box-shadow: var(--glow);
}

.loader-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav-logo img {
  border-radius: 50%;
  transition: transform var(--transition), filter var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: var(--glow);
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Knoppen --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(255, 31, 31, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-strong);
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.glow-btn:hover::before {
  transform: translateX(100%);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn-disabled {
  background: var(--bg-secondary);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.7;
  width: 100%;
}

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}

/* Banner achtergrond in hero */
.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: bannerKenBurns 20s ease-in-out infinite alternate;
}

@keyframes bannerKenBurns {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.12) translateX(-1%); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0.85) 50%, rgba(13, 13, 13, 0.95) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 31, 31, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 31, 31, 0.08) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 31, 31, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 31, 31, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 10%;
  background: rgba(255, 31, 31, 0.15);
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  right: 10%;
  background: rgba(255, 31, 31, 0.1);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 640px;
  pointer-events: auto;
}

.hero-logo {
  margin: 0 0 1.5rem;
  filter: drop-shadow(0 0 30px var(--accent-glow));
  animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--text) 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.75rem;
  width: 100%;
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  width: 100%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.25rem;
  animation: bounceScroll 2s ease-in-out infinite;
  transition: color var(--transition);
  z-index: 3;
}

.hero-scroll:hover {
  color: var(--accent);
}

@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Secties algemeen --- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1.25rem;
  border-radius: 3px;
  box-shadow: var(--glow);
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Kaarten --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 31, 31, 0.25);
}

/* --- Over ons --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.discord-card {
  text-align: center;
}

.discord-card-header {
  margin-bottom: 1.25rem;
}

.discord-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 2rem;
  color: #5865f2;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.3);
  transition: transform var(--transition);
}

.discord-card:hover .discord-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.discord-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}

.discord-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.discord-stat i {
  color: var(--accent);
}

/* --- Events & Highlights --- */
.events {
  background: var(--bg-secondary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.highlight-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.highlight-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--accent);
  box-shadow: 0 0 24px rgba(255, 31, 31, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-flags {
  font-size: 1.75rem;
  gap: 0.35rem;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
  box-shadow: var(--glow);
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.events-cta {
  text-align: center;
}

.highlights-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.highlights-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* --- Apps --- */
.apps .app-card {
  max-width: 640px;
  margin: 0 auto;
}

.app-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-badge {
  background: var(--accent);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  box-shadow: var(--glow);
}

.app-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.app-features {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color var(--transition), transform var(--transition);
}

.app-features li:hover {
  border-color: rgba(255, 31, 31, 0.3);
  transform: translateX(6px);
  color: var(--text);
}

.feature-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* --- Shop --- */
.shop-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 31, 31, 0.1);
  border: 1px solid rgba(255, 31, 31, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: var(--accent-hover);
  box-shadow: 0 0 20px rgba(255, 31, 31, 0.15);
}

.shop-notice i {
  font-size: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-secondary);
  min-height: 200px;
}

.product-image img,
.product-image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.35s ease;
}

/* Sleutelhanger: alleen video, autoplay bij zichtbaar */
.product-video-wrap .product-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
  background: var(--bg-secondary);
  pointer-events: none;
}

.product-card:hover .product-image video {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: var(--glow);
}

.product-body {
  padding: 1.75rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.85rem 1.25rem;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 31, 31, 0.25);
  margin-bottom: 1.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.contact-email:hover {
  background: rgba(255, 31, 31, 0.2);
  box-shadow: var(--glow);
}

.contact-alt {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem !important;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}

.contact-list li:hover {
  transform: translateX(4px);
}

.contact-list i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-cta-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 2.5rem;
  color: #5865f2;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.25);
}

.contact-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* --- Reviews --- */
.reviews {
  background: var(--bg-secondary);
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #ffc107;
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.4));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.review-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #ffc107;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.review-text p {
  margin-bottom: 0.85rem;
}

.review-text p:last-child {
  margin-bottom: 0;
}

.reviews-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* --- Footer --- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copyright {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
  background: var(--bg-secondary);
}

.footer-copyright p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-copyright-sub {
  margin-top: 0.35rem;
  font-size: 0.72rem !important;
  opacity: 0.85;
}

/* --- Scroll naar boven --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
  box-shadow: var(--glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-strong);
}

/* --- Fade-in animaties bij scrollen --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay voor product cards */
.product-grid .fade-in:nth-child(2) {
  transition-delay: 0.15s;
}

.about-grid .fade-in:nth-child(2) {
  transition-delay: 0.15s;
}

/* --- Responsive: Tablet --- */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .contact-cta {
    padding: 2.5rem 2rem;
  }
}

/* --- Responsive: Mobiel --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(16px);
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.85rem;
  }

  .nav-link.active::after {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }

  .scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .shop-notice {
    flex-direction: column;
    text-align: center;
    font-size: 0.9rem;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero-banner-img {
    animation: none;
    transform: scale(1.05);
  }
}
