/*
Theme Name: Jonathan Nobel
Theme URI: http://jonathannobel.nl
Author: Jonne Kleinjan
Author URI: http://jonnekleinjan.com
Description: Mijn eerste WordPress thema
Version: 1.3
*/

/* Algemeen voor de pagina */
:root {
  --donker-grijs: #272424;
  --licht-bruin: #c49f68;
  --geel: #d4ac2b;
  --licht-blauw: #6684fe;
  --donker-blauw: #000f4c;
}

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

body, p {
  font-family: 'noto sans georgian', serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

#navbar a {
  font-weight: bold;
}

/* Reset basis-stijlen van navigatie */
#navbar, .rightnav, .rightnav li, .rightnav a {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#navbar {
  position: fixed;
  height: 50px;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

#navbar.scrolled {
  background-color: #f7f7f7;
  opacity: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* kleine schaduw */
}

#navbar.menu-open {
  background-color: #f7f7f7; /* zelfde als bij scrolled */
  opacity: 0.95;
}

.logo a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
}

#navbar.menu-open .logo {
  display: none;
}

.mobile-nav .mobile-home a {
  font-weight: bold;
  font-size: 22px;
  color: var(--donker-blauw); /* of een kleur naar keuze */
}

.hamburger {
  position: relative;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto; /* rechts */
  width: 30px;
  height: auto;
  display: none;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center; /* <<< rotatie vanuit het midden */
}

/* bij scroll */
#navbar.scrolled .hamburger span {
  background: var(--donker-blauw);
}

/* bij open menu: kleur + kruis */
#navbar.menu-open .hamburger span {
  background: var(--donker-blauw); /* kleur bij open menu */
}

/* verdeling van lijnen */
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* kruisje animatie */
#navbar.menu-open .hamburger span:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
#navbar.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
#navbar.menu-open .hamburger span:nth-child(3) {
  bottom: auto;
  top: 50%; transform: translateY(-50%) rotate(-45deg);
}

.change-logo-color {
  filter: brightness(0);
}

.rightnav {
  list-style: none;
  display: flex;
  margin-left: auto;
}

.rightnav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.rightnav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
}

.rightnav a::after, .logo a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* klein beetje onder de tekst */
  width: 0%;
  height: 2px;
  background: currentColor; /* gebruikt de tekstkleur */
  transition: width 0.3s ease;
}

.rightnav a:hover::after {
  width: 100%;
}

.logo a:hover::after {
  width: 100%;
}

#navbar.scrolled .rightnav a {
  color: var(--donker-blauw);
}

#navbar.scrolled .logo a {
  color: var(--donker-blauw);
}

.mobile-nav {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  background-color: #f7f7f7;
  z-index: 1000;
  padding: 20px 0;
  display: none;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.mobile-nav.hidden {
  display: none !important;
}

.mobile-nav:not(.hidden) {
  display: flex; /* alleen tonen als de hidden class eraf is */
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav li {
  margin: 15px 0;
}

.mobile-nav a {
  position: relative;
  color: var(--donker-blauw);
  font-size: 20px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  transition: color 0.3s ease;
  cursor: pointer;
}

.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* ruimte onder tekst */
  width: 0%;
  height: 2px;
  color: var(--donker-blauw);
  background: currentColor;
  transition: width 0.3s ease;
}

.mobile-nav a:hover::after {
  width: 100%;
}

#navbar.navbar-other {
  background-color: #f7f7f7;
  opacity: 1;
}

#navbar.navbar-other.shadow {
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* kleine schaduw */
}

.navbar-other .logo a {
  color: var(--donker-blauw);
}

.navbar-other .hamburger span {
  background-color: var(--donker-blauw);
}

.navbar-other .rightnav a {
    color: var(--donker-blauw);
}


@media (max-width: 768px) and (orientation: portrait) {
  .rightnav {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }
}

.scroll-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.scroll-dark-overlay.active {
  background: rgba(0,0,0,0.6); /* wordt donkerder bij scroll */
}

#hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  min-width: 100vw;
}

.hero-text {
  position: absolute;
  z-index: 2;
  color: white;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
}

.hero-btn {
  background-color: var(--donker-blauw);
  display: inline-block;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: var(--licht-blauw);
}

.band-photo-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.band-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* donkere laag */
  z-index: 1;
}

/* Mobiele schermen in landscape */
@media (max-width: 768px) and (orientation: landscape) {
  #hero-section h1 {
    font-size: 2rem;   /* pas dit aan naar smaak */
    line-height: 1.2;  /* iets compacter zodat het niet afvalt */
    text-align: center; /* optioneel, maar helpt vaak op small screens */
  }
}


/* RESPONSIVE STYLING: Mobiele weergave */
@media (max-width: 1024px) {
  .rightnav {
    list-style: none;
    display: flex;
    margin-left: auto;
  }

  .rightnav a, .logo a {
    font-size: 14px;
    margin: 0 10px;
  }

  #hero-section {
    flex-direction: column; /* Zet de sectie onder elkaar */
    height: auto; /* Laat de hoogte aanpassen aan de inhoud */
  }

  .band-photo-container {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    object-fit: cover;
    background-position: bottom;
    position: relative;
    border: none;
  }
  .band-photo-container img{
    object-position: center;
  }

  .overlay {
    flex: none;
    width: 100%; /* Overlay vult de volledige breedte */
    background: none; /* Geen gradiënt meer */
    padding: 20px;
  }
}

#over-mij-section {
  background-color: #f7f7f7;
  padding: 50px 0;
  color: #333;
}

.onder-header {
  color: #333;
  background-color: #f7f7f7;
}

.over-mij-content {
  max-width: 75%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.titel-links {
  text-align: left;
  margin: 0 0 20px 0;
  padding-left: 12.5%;
  background-color: #f7f7f7;
  font-size: 36px;  /* Grote, opvallende titel */
  font-weight: 700;  /* Vetgedrukte titel */
  margin-bottom: 20px;  /* Ruimte onder de titel */
  color: #333;  /* Donkere kleur voor de titel */
}

/* Video’s */
#videos{padding:56px 0}
.video-grid{
  max-width:1200px; margin:0 auto; display:grid; gap:24px;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
}
.video-grid iframe{width:100%; aspect-ratio:16/9}


#footer {
  background-color: var(--donker-blauw); /* donkerblauw */
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  display: flex;
}

.footer-icons {
  display: flex;
  justify-content: center; /* iconen gecentreerd */
  gap: 30px; /* ruimte tussen iconen */
  width: 100%; /* volle breedte van footer */
  max-width: 400px; /* optioneel, zodat het niet te breed wordt */
  margin: 0 auto; /* centreert de container */
}


.footer-icons img {
  width: 30px; /* pas grootte aan naar wens */
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icons a:hover img {
  transform: scale(1.2); /* beetje uitvergroten bij hover */
}

.footer-icons a {
  color: white;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icons .inverted {
  filter: invert(1) brightness(1);
}

.footer-icons a:hover {
  transform: scale(1.2); /* kleine pop-out animatie */
}







.contact-pagina {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

.background-image {
  background-image: url("images/1.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.overlay-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--donker-blauw);
  opacity: 0.6; /* gewoon opacity ipv 0 */
  z-index: 2;
}

.contact-form-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
  padding-top: 80px;
}

form {
  max-width: 550px;
  width: 90%;
  background: #f7f7f7;
  opacity: 0.98;
  justify-content: center;
  padding: 40px;
  border-radius: 3px;
  box-sizing: border-box;
}

.header-contact {
  text-align: center;
  margin: 0;
}

label {
  display: block;
  margin: 20px 0;
}

input, textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: #f7f7f7;
  color: #333;
  outline: none;
  resize: none;
  border: none;
  border-bottom: 1px solid #D3D3D3;
}

input[type="text"]:focus, textarea:focus {
  border-bottom: 1px solid var(--donker-blauw);
}

textarea::-webkit-scrollbar {
  width: 4px;
}

textarea::-webkit-scrollbar-thumb {
  background-color: var(--donker-blauw);
}

.center {
  text-align: center;
}

input[type="submit"] {
  margin-top: 30px;
  width: 90%;
  max-width: 200px;
  background: var(--donker-blauw);
  color: #f7f7f7;
  font-size: 17px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.3s ease;
}

input[type="submit"]:hover {
  background: var(--licht-blauw);
}

.form-error {
  display: block;
  color: red;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.error-border {
  border-bottom: 1px solid red;
}

.form-success {
  color: #28A745;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-pagina {
    margin-top: -70px;
  }

  .contact-form-wrapper {
    padding-top: 80px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .contact-form-wrapper {
    padding-top: 80px;
    padding-bottom: 10px;
  }
}





#live-section {
  padding-top: 30px;
  background-color: #f7f7f7;
  padding-bottom: 80px;
}

/* Layout wrapper */
#live-section .live-blok {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;      /* sleutel: zorgt dat cellen even hoog zijn */
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Tekstblok: padding en verticale center */
#live-section .text-wrap {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centreert tekst verticaal binnen de cel */
}

/* Image wrapper vult precies de celhoogte */
#live-section .image-wrap {
  height: 100%;              /* vult de volledige grid-cel */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* De foto zelf vult de image-wrap volledig (geen vervorming dankzij object-fit) */
#live-section .image-wrap .live-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* beslaat de box en snijdt netjes bij */
  display: block;
  filter: grayscale(100%);
  transition: filter .35s ease, transform .35s ease;
  transform-origin: center;
  border-radius: 12px;
}

/* hover effect (optioneel) */
#live-section .image-wrap .live-foto:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
  border-radius: 12px;
}

#live-section .live-foto-1 {
  width: auto;         /* ongeveer de helft van wat 'ie normaal zou zijn */
  max-height: 350px;       /* houdt de verhoudingen intact */
  object-fit: contain;/* geen bijsnijden, toont volledige beeld binnen de box */
  object-position: center;
  align-self: center;
  justify-self: end;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Als je wil dat foto1 rechts uitgelijnd staat binnen zijn grid-cel (tekst links, foto rechts) */
#live-section .live-blok .blok-rechts .image-wrap {
  justify-content: flex-end;
}

/* TITEL UITLEINING: pas titels aan zodat ze precies uitlijnen met de content (zelfde max-width + padding) */
.titel-links-live,
.titel-rechts-live {
  max-width: 1100px;
  margin: 40px auto 20px;
  padding: 0 20px;               /* zorgt dat ze exact uitlijnen met .live-blok */
  background-color: #f7f7f7;     /* match de sectie achtergrond */
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

/* Linker titel exact links uitlijnen */
.titel-links-live { text-align: left; }

/* Rechter titel precies aan de rechterkant */
.titel-rechts-live { text-align: right; }

/* Tekst rechts uitlijnen voor het tweede blok */
.blok-rechts .tekst-wrap p {
  text-align: right;
}

/* ===== Responsiveness ===== */
@media (max-width: 992px) {
  /* Bij smalle desktop/tablet: geef beeld iets meer ruimte, maar houd smaller voor foto1 */
  #live-section .live-foto-1 {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #live-section {
    padding-top: 80px;
  }
  /* Mobiel: stapelen */
  #live-section .live-blok {
    grid-template-columns: 1fr;
  }

  /* Maak image-wrap en foto's normaal (hoogte:auto) op mobiel */
  #live-section .image-wrap {
    height: auto;
    padding: 0;
    justify-content: center;
  }
  #live-section .image-wrap .live-foto,
  #live-section .live-foto-1 {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Titels op mobiel links uitlijnen (readability) */
  .titel-links-live {
    text-align: left;
    padding: 0 16px;
  }

  .titel-rechts-live {
    text-align: right;
    padding: 0 16px;
  }
}








.intro {
  text-align: center;
  background-color: #f7f7f7;   /* volledige achtergrond */
  margin: 0;                   /* geen standaard witruimte */
  padding: 60px 20px 100px;    /* top, sides, bottom meer ruimte */
  width: 100vw;                /* volle breedte */
  margin-left: calc(50% - 50vw);  /* breekt uit container */
  margin-right: calc(50% - 50vw);
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding-top: 90px;
}

.intro p {
  font-size: 1.1rem;
  color: #333;
  max-width: 900px;    /* optioneel: tekstbreedte beperken */
  margin: 0 auto;      /* centreren van de tekst */
}


  .three-columns {
    display: flex;
    align-items: center;
    width: 100vw;
    min-height: 90vh;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: var(--donker-blauw);
    padding: 25px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  /* Inhoudscontainer: beperkt tot max 1200px en grid met 3 kolommen */
  .columns-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .column {
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* kleine schaduw */
  }

  .column-grijs {
    background-color: var(--donker-grijs);
  }

  .column-bruin {
    background-color: var(--licht-bruin);
  }

  .column h2 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #f7f7f7;
  }

  .column p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #f7f7f7;
    background-color: var(--donker-grijs);
  }

  .column .h2-geel {
    color: var(--geel);
  }

  .column .p-bruin {
    background-color: var(--licht-bruin);
  }

  .column img {
    width: 100%;
    max-width: 300px;
    height: 200px;        /* vaste hoogte */
    object-fit: cover;    /* snijdt bij zonder vervormen */
  }



  @media (max-width: 1000px) {
    .columns-content {
      grid-template-columns: 1fr; /* zet alles onder elkaar */
      gap: 20px; /* iets minder ruimte op mobiel */
    }

    .three-columns {
      height: auto; /* laat de sectie meegroeien met de content */
      padding: 20px 10px;
    }

    .column img {
      max-width: 100%; /* laat afbeeldingen mooi schalen */
      height: auto;
    }
  }






  /* === RECORDING PAGINA === */
.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* links tekst, rechts foto's */
  width: 100vw;
  min-height: 100vh;
  background-color: #f7f7f7;
}

/* Linker kolom: tekst */
.text-column {
  display: flex;
  flex-direction: column;
}

.text-block {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* verticaal centreren */
  align-items: flex-start;   /* links uitlijnen */
  padding: 0 10%;            /* ruimte tussen tekst en foto */
  box-sizing: border-box;
}

.image-column {
  position: relative;
}

.image-sticky {
  position: sticky;
  top: 80px; /* ruimte voor navbar */
  height: calc(100vh - 80px);
  overflow: hidden;
  z-index: 1; /* onder foto 2 */
}

.image-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tekstkleuren en typografie */
.text-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--donker-blauw);
  margin-bottom: 20px;
}

.text-block p {
  font-family: 'Noto Sans Georgian', sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
}

/* Responsive */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr; /* alles onder elkaar */
  }

  .text-block {
    height: auto;
    padding: 40px 20px;
    align-items: center; /* midden op mobiel */
    text-align: center;
  }

  .image-sticky {
    position: relative;
    top: 0;
    height: auto;
    padding-bottom: -5px;
    margin-bottom: -5px;
  }
}


/* Mobiel: altijd h1 onder navbar */
@media (max-width: 768px) {
  h1 {
    margin-top: 70px; /* minstens navbar + wat extra ruimte */
  }

  .contact-form-wrapper {
    margin-top: 70px;
  }

  .split-layout {
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
