/* style.css - Modern, immersive, gaming-inspired with pixel accents for vxncPCs */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root {
  --zoom-factor: 1;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 64px;
  --page-max-width: 1280px;
  --page-gutter: 16px;
  --bg: #181818;
  --surface: #343434;
  --card-bg: #343434;
  --text: #f4f4f4;
  --text-dark: #f4f4f4;
  --muted: #777777;
  --accent: #0077b6;
  --accent-glass: rgba(0, 119, 182, 0.3);
  --border-subtle: rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 16px rgba(0, 119, 182, 0.3); /* Increased glow for liveliness */
  --pixel-border: 2px solid var(--accent);
  --pixel-shadow: 4px 4px 0 rgba(0, 119, 182, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text-dark);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  background-image: linear-gradient(45deg, rgba(0, 119, 182, 0.08) 0%, transparent 20%, transparent 80%, rgba(0, 119, 182, 0.08) 100%); /* Slightly stronger gradient for liveliness */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--surface);
  z-index: 1200;
  border-bottom: var(--pixel-border);
}

.nav-container {
  height: 100%;
  width: calc(100% - 10px);
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
}

.logo img {
  max-height: calc(var(--header-height) * .65);
  width: auto;
  aspect-ratio: 69 / 10; /* Enforce the specified aspect ratio */
  image-rendering: pixelated; /* Preserve pixel art look */
  object-fit: contain; /* Ensure no distortion */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dropdown {
  position: relative;
}

.dropbtn {
  background: var(--accent-glass);
  backdrop-filter: blur(10px);
  border: var(--pixel-border);
  color: var(--text);
  font-size: 16px; /* Slightly larger for liveliness */
  font-weight: 600;
  cursor: pointer;
  padding: 12px 20px; /* Larger padding */
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--pixel-shadow);
}

.dropbtn:hover,
.dropbtn:focus,
.dropbtn.active {
  background: var(--accent);
  transform: scale(1.08); /* Increased scale for more pop */
  box-shadow: var(--shadow-glow), var(--pixel-shadow);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: var(--surface);
  min-width: 160px; /* Wider for better readability */
  box-shadow: var(--shadow-soft);
  border-radius: 4px;
  z-index: 1300;
}

.dropdown-content.active {
  display: block;
}

.dropdown-content a {
  display: block;
  color: var(--text);
  padding: 12px 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
  background: var(--accent);
  color: var(--text);
}

main {
  width: calc(100% - var(--page-gutter) * 2);
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 48px;
  flex: 1 0 auto;
}

.header-spacer {
  height: calc(var(--header-height) + 16px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smoother transition for liveliness */
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.welcome-container {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.welcome-card {
  background: linear-gradient(to bottom, var(--surface), var(--card-bg));
  color: var(--text);
  padding: 28px; /* Larger padding */
  border-radius: 4px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  border: var(--pixel-border);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.5s ease; /* Add fade in for liveliness */
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.welcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.welcome-card h2 {
  font-size: 32px; /* Larger for impact */
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.welcome-card p,
.welcome-card ul li {
  font-size: 16px; /* Larger text */
  color: var(--text);
  margin-bottom: 12px;
}

.welcome-card ul {
  list-style: none;
  padding-left: 20px;
}

.welcome-card ul li::before {
  content: "→";
  color: var(--accent);
  margin-right: 8px;
}

.welcome-card .btn {
  background: var(--accent);
  border: var(--pixel-border);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--pixel-shadow);
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.welcome-card .btn:hover {
  background: #005f8f; /* Darker accent for contrast */
  transform: scale(1.08);
  box-shadow: var(--shadow-glow), var(--pixel-shadow);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adaptive for modern feel */
  gap: 24px; /* More spacing */
  padding: 24px;
  justify-items: center;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--card-bg);
  color: var(--text);
  padding: 20px;
  border-radius: 4px;
  box-shadow: var(--shadow-soft), var(--pixel-shadow);
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* Longer transition for smooth pop */
  position: relative;
  width: 100%;
  max-width: 360px; /* Slightly wider */
  overflow: hidden;
  border: var(--pixel-border);
  animation: fadeIn 0.5s ease;
}

.product-card:hover,
.product-card:focus {
  transform: scale(1.08); /* Larger scale for more energy */
  box-shadow: var(--shadow-glow);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
  border: var(--pixel-border);
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05); /* Image zoom on hover for liveliness */
}

.product-card h3 {
  font-size: 24px; /* Larger title */
  color: var(--accent);
}

.product-card p {
  font-size: 16px;
  color: var(--muted);
}

.pc1-container {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1fr;
  gap: 28px; /* More spacing */
  margin: 28px auto;
  padding: 20px;
  max-width: 100%; /* Ensure no overflow */
  overflow: hidden; /* Prevent any overflow */
}

.pc1-left {
  text-align: center;
}

.pc1-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pc1-header h2 {
  font-size: 28px; /* Larger */
  font-weight: 700;
  color: var(--accent);
}

.pc1-header .price {
  font-size: 22px; /* Larger */
  font-weight: 600;
  color: var(--accent);
}

.slider {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--pixel-border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.slider:hover {
  box-shadow: var(--shadow-glow); /* Glow on hover for liveliness */
}

.slider img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  z-index: 1;
  display: block;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-glass);
  backdrop-filter: blur(10px);
  border: none;
  color: var(--text);
  font-size: 20px; /* Larger arrows */
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 3;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  box-shadow: var(--pixel-shadow);
}

.slider button:hover {
  transform: translateY(-50%) scale(1.1);
  background: var(--accent);
}

.slider .prev { left: 16px; }
.slider .next { right: 16px; }

@media (max-width: 480px) {
  .slider button { height: 40px; width: 40px; font-size: 18px; padding: 10px; }
  .slider .prev { left: 10px; }
  .slider .next { right: 10px; }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox.visible { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-glow);
  margin: 0;
}

.lightbox .close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 30px;
  background: transparent;
  color: #fff;
  border: none;
  z-index: 1700;
  cursor: pointer;
  padding: 6px 10px;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-glass);
  backdrop-filter: blur(10px);
  border: none;
  color: var(--text);
  font-size: 22px;
  border-radius: 50%;
  z-index: 1600;
  cursor: pointer;
  box-shadow: var(--pixel-shadow);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox .prev:hover,
.lightbox .next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

@media (max-width: 480px) {
  .lightbox .prev,
  .lightbox .next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox .prev { left: 10px; }
  .lightbox .next { right: 10px; }
  .lightbox .close { font-size: 26px; right: 18px; top: 14px; }
}

.pc1-right {
  display: flex;
  flex-direction: column;
  gap: 28px; /* More gap */
}

.pc1-specs-card {
  background: var(--card-bg);
  color: var(--text);
  padding: 24px; /* Larger padding */
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  border: var(--pixel-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.5s ease;
}

.pc1-specs-card h3 {
  font-size: 22px; /* Larger */
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.pc1-specs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 140px 1fr; /* Adjusted for better fit */
  gap: 12px 18px;
  align-items: center;
}

.pc1-specs-list li {
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pc1-specs-list li:last-child {
  border-bottom: none;
}

.pc1-specs-list li strong {
  color: var(--text);
  font-weight: 600;
  min-width: 140px;
}

.pc1-specs-card p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}

.pc1-benchmarks-btn {
  background: var(--accent-glass);
  border: var(--pixel-border);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--pixel-shadow);
  text-decoration: none;
  display: inline-block;
}

.pc1-benchmarks-btn:hover {
  background: var(--accent);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow), var(--pixel-shadow);
}

.pc1-contact-buttons {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap; /* Wrap on small screens */
}

.pc1-contact-buttons .btn {
  background: var(--accent);
  border: var(--pixel-border);
  color: var(--text);
  font-size: 18px; /* Larger for visibility */
  font-weight: 600;
  padding: 14px 28px; /* Larger padding */
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--pixel-shadow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* For icons */
  min-width: 120px; /* Prevent too small */
  text-align: center;
  justify-content: center;
}

.pc1-contact-buttons .btn:hover {
  background: #005f8f;
  transform: scale(1.1); /* Larger scale for pop */
  box-shadow: var(--shadow-glow), var(--pixel-shadow);
}

.contact-container {
  width: 90%;
  max-width: 800px;
  margin: 24px auto;
  padding: 24px;
  background: var(--card-bg);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  border: var(--pixel-border);
  animation: fadeIn 0.5s ease;
}

.contact-container h2 {
  font-size: 30px; /* Larger */
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; /* More spacing */
  margin-bottom: 24px;
}

.contact-info-item {
  background: var(--surface);
  padding: 16px;
  border-radius: 4px;
  transition: transform 0.3s ease;
  border: var(--pixel-border);
}

.contact-info-item:hover {
  transform: translateY(-4px); /* Stronger lift */
}

.contact-info-item h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08); /* Slightly brighter */
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text);
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: var(--shadow-glow);
}

.contact-form button {
  background: var(--accent);
  border: var(--pixel-border);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--pixel-shadow);
}

.contact-form button:hover:not(:disabled) {
  background: #005f8f;
  transform: scale(1.08);
  box-shadow: var(--shadow-glow), var(--pixel-shadow);
}

footer {
  flex-shrink: 0;
  padding: 16px;
  background: var(--surface);
  text-align: center;
  font-size: 13px;
  color: var(--text);
  border-top: var(--pixel-border);
}

footer a {
  color: var(--text);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .pc1-container {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 20px; /* Adjust gap for mobile */
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .nav-right {
    gap: 8px;
  }
  .logo img {
    max-height: 48px;
    max-width: 120px;
    aspect-ratio: 69 / 10; /* Enforce aspect ratio on mobile */
  }
  .product-grid {
    gap: 15px;
    padding: 15px;
  }
  .slider {
    max-width: 100%; /* Full width on mobile */
  }
  .pc1-left, .pc1-right {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root { --header-height: 56px; }
  .nav-container { padding: 0 10px; }
  .logo img { max-height: 40px; max-width: 100px; aspect-ratio: 69 / 10; image-rendering: pixelated; /* Ensure pixelated on small screens */ }
  .dropbtn { font-size: 14px; }
  .pc1-container {
    padding: 10px;
  }
  .pc1-contact-buttons {
    flex-direction: column; /* Stack buttons on very small screens */
    gap: 12px;
  }
}

/* Socials page specific styles */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px;
  margin: 0 auto;
}

.social-card {
  background: var(--card-bg);
  color: var(--text);
  padding: 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  border: var(--pixel-border);
  text-align: center;
  animation: fadeIn 0.5s ease;

  /* Gelijke hoogte */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-card h3 {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
}

.social-card iframe,
.social-card blockquote {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
  border: var(--pixel-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.social-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.social-card a:hover {
  text-decoration: underline;
}

/* Wrapper voor embeds — zorgt dat content niet uit de kaart steekt */
.embed-wrapper {
  width: 100%;
  overflow: scroll;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Scrollbars verbergen op desktop */
@media (min-width: 768px) {
  .embed-wrapper {
    scrollbar-width: none;        /* Firefox */
  }

  .embed-wrapper::-webkit-scrollbar {
    display: none;                /* Chrome, Safari, Edge */
  }
}


/* Add to the end of style.css */

.features, .experience, .future {
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(to bottom, var(--surface), var(--card-bg));
  color: var(--text);
  border-radius: 4px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  border: var(--pixel-border);
}

.features h3, .experience h3, .future h3 {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 16px;
}

.features p, .experience p, .future p {
  font-size: 16px;
  margin-bottom: 16px;
}

.features ul {
  list-style: none;
  padding-left: 20px;
}

.features ul li::before {
  content: "→";
  color: var(--accent);
  margin-right: 8px;
}

.features img, .experience img, .future img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 16px;
  border: var(--pixel-border);
}

@media (max-width: 768px) {
  .welcome-container {
    width: 95%;
  }
  .features, .experience, .future {
    padding: 16px;
  }
}