@charset "UTF-8";
/* Spatiëring (Spacing scale) */
/* 4px */
/* 8px */
/* 16px */
/* 24px */
/* 32px */
/* Vaste vormgeving */
:root {
  font-family: "Segoe UI", system-ui, sans-serif;
  margin: 1vw;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #14171c;
  color: #eef0f3;
  line-height: 1.6;
  overflow-x: hidden;
}

.grid-container {
  display: grid;
  grid-template-areas: "nav-container" "hero" "block" "label";
  gap: 10px;
}

.animated-bg {
  --mx: 50%;
  --my: 30%;
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(600px circle at var(--mx) var(--my), rgba(201, 162, 75, 0.12), transparent 60%), radial-gradient(circle at 20% 20%, rgba(201, 162, 75, 0.06), transparent 40%), radial-gradient(circle at 80% 70%, rgba(201, 162, 75, 0.05), transparent 45%), #14171c;
  transition: background 0.15s ease-out;
}

.nav-container {
  grid-area: "nav-container";
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4vw;
  z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(20, 23, 28, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #262c36;
}

.nav-container.scrolled {
  background-color: rgba(15, 23, 32, 0.756); /* pas aan naar jouw donkerblauw/teal thema */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.379);
}

.logo {
  max-height: 10vw;
  max-width: 10vw;
}

.nav-container a {
  float: left;
  display: block;
  color: #c7cdd6;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-container a:hover {
  text-decoration: none;
  color: #e3c98a;
}

.nav-container a.active {
  color: #e3c98a;
}

.nav-tag {
  color: #c9a24b;
  font-size: large;
  font-style: italic;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hamburger {
  fill: darkgoldenrod;
  width: 2vw;
  height: 2vw;
}

.button-one {
  background: none;
  border: none;
  cursor: pointer;
}

.button-one[aria-expanded=true] .line {
  transition: y 300ms ease-in 300ms, rotate 300ms ease-in, opacity 0ms 300ms;
  transform-origin: center;
}

.button-one[aria-expanded=true] .line {
  transition: y 300ms ease-in, rotate 300ms ease-in 300ms, opacity 0ms 300ms;
}

.button-one[aria-expanded=true] :is(.top, .bottom) {
  y: 45;
}

.button-one[aria-expanded=true] .top {
  rotate: 45deg;
}

.button-one[aria-expanded=true] .middle {
  opacity: 0;
}

.button-one[aria-expanded=true] .bottom {
  rotate: -45deg;
}

.overlay {
  grid-area: "overlay";
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 100;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: auto;
  width: 100%;
  text-align: center;
  margin-top: 6vw;
}

.overlay a {
  top: 0;
  position: relative;
  margin: 10px;
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: flex;
  transition: 0.3s ease;
}

.overlay a:hover, .overlay a:focus {
  color: darkgoldenrod;
}

.overlay .closebtn {
  position: absolute;
  color: #e3c98a;
  top: 25px;
  right: 45px;
  font-size: 60px;
}

.overlay .closebtn:hover {
  color: darkgoldenrod;
}

.hero {
  grid-area: "hero";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center, bottom;
  text-align: center;
  position: relative;
}

.hero-tag {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #c9a24b;
  margin-bottom: 18px;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.227), rgba(0, 0, 0, 0.5)), url("img/1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  margin-top: 1vw;
  margin-left: 1vw;
  margin-right: 1vw;
  width: 100vw;
  height: 40vw;
  border-radius: 14px;
}

.about-grid {
  display: grid;
  /* Berekent automatisch kolommen: flexibel en responsive */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
  box-sizing: border-box;
  gap: 40px; /* Dubbele gap-waarde opgeschoond */
  padding: 40px 5%;
  /* AANPASSING: Zorgt ervoor dat alle kaarten exact even hoog worden */
  align-items: baseline;
}

.about-card {
  background: #1c2129;
  border: 1px solid #262c36;
  border-radius: 14px;
  padding: 32px;
}

.about-card a {
  color: #e3c98a;
  text-decoration: none;
  font-weight: 600;
}
.about-card a:hover {
  text-decoration: none;
  color: #c9a24b;
}

section.block {
  grid-area: "block";
  max-width: 1080px;
  margin: 0 auto;
  padding: 200px 20px;
}

.section-tag {
  color: #c9a24b;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 28px;
  font-weight: 700;
}

.verse-card {
  padding: 36px;
  background: #1c2129;
  position: relative;
  overflow: hidden;
}
.verse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at 90% -10%, rgba(201, 162, 75, 0.08), transparent 60%);
  pointer-events: none;
}

.verse-text {
  font-size: 1.3rem;
  font-style: italic;
  color: #e3c98a;
  line-height: 1.6;
  border-left: 2px solid #c9a24b;
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}

.verse-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  max-height: 285px;
  margin-bottom: 20px;
}

.verse-comp-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
}

.verse-ref {
  color: #3a4250;
  font-size: 0.85rem;
  margin-bottom: 28px;
  position: relative;
}

.verse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}
.verse-grid h3 {
  color: #e3c98a;
  margin-bottom: 10px;
  font-size: 1rem;
}
.verse-grid p {
  color: #c7cdd6;
  font-size: 0.94rem;
}

.blog-card {
  background: #1c2129;
  border: 1px solid #262c36;
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 20px;
}

.blog-card a {
  color: #e3c98a;
  text-decoration: none;
  font-weight: 600;
}
.blog-card a:hover {
  text-decoration: none;
  color: #c9a24b;
}

.contact-grid {
  display: grid;
  gap: 50px;
}

.contact-info p {
  color: #c7cdd6;
  margin-bottom: 20px;
}
.contact-info a {
  text-decoration: none;
  color: #e3c98a;
}

.icon-bar {
  position: relative;
  margin-top: 100%;
  display: flex;
  transform: translateY(-50%);
  z-index: 1000;
  border: 1px solid #262c36;
  border-radius: 14px;
}

/* Style the icon bar links */
.icon-bar a {
  display: absolute;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: darkgoldenrod;
  font-size: 20px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #3a4250;
}

.linkedin {
  background: transparent;
  color: white;
}

.instagram {
  background: transparent;
  color: white;
}

.discord {
  background: transparent;
  color: white;
  display: inline-block;
  text-decoration: none;
}

.discord-icon {
  width: 20px; /* Pas de breedte aan naar wens */
  height: auto; /* Behoudt de juiste verhoudingen */
  display: block;
}

.mail {
  background: transparent;
  color: white;
  display: inline-block;
  text-decoration: none;
}

.mail-icon {
  width: 20px; /* Pas de breedte aan naar wens */
  height: auto; /* Behoudt de juiste verhoudingen */
  display: block;
}

footer.label {
  grid-area: "label";
  display: absolute;
  border-top: 1px solid #262c36;
  padding: 40px 5%;
  text-align: center;
  color: #3a4250;
  font-size: 0.85rem;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  :root {
    font-size: small;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    margin: 1vw;
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  .logo {
    max-height: 30vw;
    max-width: 30vw;
  }
  .hamburger {
    width: 5vw;
    height: 5vw;
  }
  .nav-container {
    width: 100%;
    height: 10vw;
  }
  .overlay a {
    font-size: 24px;
    margin-top: 5vw;
  }
  .overlay a:hover {
    color: darkgoldenrod;
  }
  .icon-bar {
    position: relative;
    margin-top: 80%;
    display: flex;
    transform: translateY(-50%);
    z-index: 1000;
  }
  .icon-bar a {
    display: absolute;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: darkgoldenrod;
    font-size: 20px;
  }
  .hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center, bottom;
    text-align: center;
    position: relative;
  }
  .hero-image {
    margin-top: 3vw;
    height: 60vw;
  }
  .profile-img {
    width: 50%;
    height: auto;
  }
  .label {
    display: absolute;
    border-top: 1px solid #262c36;
    padding: 20px 5%;
    text-align: center;
    color: #3a4250;
    font-size: 0.85rem;
  }
  .section {
    margin: 0;
  }
  section.block {
    grid-area: "block";
    max-width: 1080px;
    margin: 0 auto;
    padding: 200px 20px;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media screen and (min-width: 600px) {
  #div1 {
    font-size: 80px;
  }
}
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }
  .nav .logo {
    max-height: 15vw;
    max-width: 15vw;
  }
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 25px;
    right: 35px;
  }
}
@media (min-width: 600px) {
  .overlay {
    grid-area: 1/span 6;
  }
  .nav-container {
    grid-area: 2/span 1;
  }
  .hero {
    grid-area: 2/span 4;
  }
  .block {
    grid-area: 3/span 6;
  }
  .label {
    grid-area: 4/span 6;
  }
}
@media (min-width: 768px) {
  .overlay-content {
    grid-area: 1/span 6;
  }
  .nav-container {
    grid-area: 2/span 1;
  }
  .hero {
    grid-area: 2/span 4;
  }
  .block {
    grid-area: 2/span 1;
  }
  .label {
    grid-area: 3/span 6;
  }
}/*# sourceMappingURL=style.css.map */