/* =========================
   ALGEMENE STYLING
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: azure;
  font-family: Calibri, sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  flex: 1;
  padding-top: 70px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 23px;
}

h4 {
  font-size: 20px;
}

/* =========================
   NAVBAR
========================= */

nav {
  background-color: #333;
  border-radius: 5px;
  padding: 15px;
  font-size: 22px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.nav-auth {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 150px;
  justify-content: flex-end;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: rgb(180, 134, 224);
}

nav ul li.nav-username {
  color: white;
  font-weight: bold;
}

.nav-auth a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.nav-auth a:hover,
.nav-auth a.active {
  color: rgb(180, 134, 224);
}

.nav-username {
  color: white;
  font-weight: bold;
}

/* =========================
   TITELS
========================= */

.title {
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

/* =========================
   SECTIONS
========================= */

section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 80px auto;
}

/* =========================
   INDEX PAGINA
========================= */

/* De gekleurde content-boxen */
.tekstjeict,
.tekstjeindex2,
.tekstjeindex3 {
  text-align: left;
  font-size: 20px;
  width: 100%;
  max-width: 850px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 16px;
  line-height: 1.6;
}

.tekstjeict {
  background: linear-gradient(to right, lightblue, plum);
}

.tekstjeindex2 {
  background: linear-gradient(to left, lightblue, plum);
}

.tekstjeindex3 {
  background: linear-gradient(to right, lightblue, plum);
}

/* De afbeeldingen-rij (Gedeeld met profile!) */
.image-row {
  display: flex;
  justify-content: center;
  align-items: center; /* Zorgt dat foto's van verschillende hoogtes netjes uitlijnen */
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Specifieke styling voor jouw twee foto's op home - NU ZONDER CROP */
.foto-graauwrock,
.foto-boef-evi {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 16px;
}

/* Eigenschappen lijst */
ul.listcharacter {
  list-style-type: square;
  list-style-position: inside;
  background: linear-gradient(
    to left,
    rgb(203, 242, 255),
    rgb(183, 173, 230)
  );
  border-radius: 16px;
  padding: 25px;
  font-size: 22px;
  width: fit-content;
  margin: 20px auto;
  text-align: left;
}

/* YouTube Sectie */
.youtube-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.youtube-card {
  text-align: center;
}

/* De YouTube-knoppen/afbeeldingen */
.linkbutton1,
.linkbutton2 {
  width: 100px;
  height: auto;
  margin: 0 auto;
  transition: transform 0.2s;
  cursor: pointer;
  display: inline-block;
}

.linkbutton1:hover,
.linkbutton2:hover {
  transform: scale(1.05);
}

/* Oude ongebruikte klassen opgeschoond/samengevoegd voor de index */
.waarom,
.watbereiken,
.totnutoe,
.eigenschap,
.latenzien {
  text-align: center;
  margin-bottom: 20px;
}

.eigenschap {
  font-size: 28px;
}

.latenzien {
  font-size: 24px;
  margin-top: 60px;
}

.pizza,
.blanck {
  font-size: 20px;
  margin-bottom: 15px;
}


/* =========================
   PROFILE PAGINA
========================= */

.tekstevi,
.hobbys {
  text-align: left;
  width: 100%;
  max-width: 850px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 16px;
  font-size: 20px;
  line-height: 1.6;
}

.tekstevi {
  background-color: rgb(230, 191, 230);
}

.hobbys {
  background-color: rgb(176, 208, 220);
}

/* Profile afbeeldingen via de flexbox .image-row - NU ZONDER CROP */
.foto-hond,
.foto-band {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 16px;
}

.watzijnmijn {
  margin-top: 50px;
}

.favobands {
  margin-top: 40px;
  font-weight: bold;
}

/* Styling voor de bands lijst */
ul.listbands {
  list-style-type: disc;
  list-style-position: inside;
  background-color: rgba(230, 191, 230, 0.4);
  border-radius: 12px;
  padding: 20px;
  font-size: 20px;
  width: fit-content;
  margin: 20px auto;
  text-align: left;
}

/* Styling voor de Socials onderaan */
ul.listsocials {
  list-style: none;
  padding: 0;
  margin: 50px auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 20px;
}

.socials-title {
  font-weight: bold;
  color: #333;
}

ul.listsocials li a {
  color: rgb(123, 76, 168);
  text-decoration: none;
  font-weight: bold;
  background: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(123, 76, 168, 0.3);
  transition: 0.2s;
}

ul.listsocials li a:hover {
  background: rgb(123, 76, 168);
  color: white;
}


/* =========================
   DASHBOARD
========================= */

.toetsenopdrachten,
.overigen {
  margin-top: 50px;
}

.dashboardtable,
.dashboardtable2,
.swottable,
.functietabel {
  width: 90%;
  margin: 30px auto;
  border-collapse: collapse;
  font-family: Calibri;
}

.dashboardtable th,
.dashboardtable td,
.dashboardtable2 th,
.dashboardtable2 td,
.swottable th,
.swottable td,
.functietabel th,
.functietabel td {
  padding: 12px;
  border: 1px solid white;
}

.dashboardtable th,
.dashboardtable td,
.dashboardtable2 th,
.dashboardtable2 td {
  background-color: #c3a1e96b;
}

.swottable {
  background-color: rgba(248, 172, 232, 0.476);
  border-radius: 12px;
}

.functietabel {
  background-color: rgba(35, 224, 199, 0.199);
  border-radius: 12px;
}

/* =========================
   FAQ
========================= */

.faqvraag {
  background: rgba(119, 100, 193, 0.675);
  margin: 20px auto;
  padding: 15px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  text-align: left;
}

.faqantwoord {
  background: rgba(165, 148, 234, 0.524);
  text-align: left;
  padding: 15px;
  border-radius: 12px;
  font-weight: 550;
  margin-top: 10px;
}

/* =========================
   ASIDE MENU
========================= */

#menu-toggle {
  display: none;
}

.menu-btn {
  font-size: 20px;
  cursor: pointer;
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  position: fixed;
  top: 70px;
  left: 10px;
  z-index: 1001;
}

.asidemenu {
  width: 0;
  position: fixed;
  background-color: #333;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  border-radius: 12px;
  top: 70px;
  left: 10px;
  z-index: 1000;
}

.asidemenu a {
  display: block;
  padding: 15px;
  text-decoration: none;
  font-size: 17px;
  color: white;
  transition: 0.2s;
}

.asidemenu a:hover {
  color: rgb(180, 134, 224);
}

#menu-toggle:checked ~ .asidemenu {
  width: 180px;
}

/* =========================
   BLOG
========================= */

.blog-post-detail {
  background: #88c8d6b4;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  line-height: 1.6;
}

.swot,
.studychoice,
.programmeer,
.feedback,
.beroep {
  background: #88c8d6b4;
}

.wieinfodatek,
.poster,
.conclude {
  background: rgba(160, 198, 205, 0.712);
}

.swot,
.studychoice,
.programmeer,
.feedback,
.beroep,
.wieinfodatek,
.poster,
.conclude {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  line-height: 1.6;
}

.feedbackaiden,
.feedbackaron,
.feedbackthijs,
.feedbackta {
  background-color: rgba(160, 198, 205, 0.712);
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feedbackaiden1,
.feedbackaiden2,
.feedbackaron1,
.feedbackaron2,
.feedbackthijs1,
.feedbackthijs2,
.feedbackta1 {
  flex: 1 1 300px;
  text-align: left;
}

.verbeterpunten {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.infodateklogo {
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  border-radius: 12px;
}

.blog-card {
  background: #88c8d6b4;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  line-height: 1.6;
}

.feedbackaiden img,
.feedbackaron img,
.feedbackthijs img,
.feedbackta img {
  width: 45%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.poster {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 12px;
}

/* =========================
   KLEUREN
========================= */

.swcolor,
.pecolor,
.sccolor,
.fbcolor,
.pfcolor {
  color: rgba(80, 0, 155, 0.654);
}

/* =========================
   FOOTER
========================= */

footer {
  background-color: #333;
  padding: 15px;
  border-radius: 15px 15px 0 0;
  width: 100%;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  color: white;
}

.footer-logo {
  width: 50px;
  height: auto;
}

/* =========================
   AUTH PAGINA'S
========================= */

.auth-card {
  background: #88c8d6b4;
  width: 90%;
  max-width: 450px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 16px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 20px;
}

.auth-field label {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 18px;
}

.auth-field input {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.6);
  outline: none;
  transition: background 0.2s;
}

.auth-field input:focus {
  background: rgba(255, 255, 255, 0.9);
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background-color: rgba(148, 112, 203, 0.7);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.auth-btn:hover {
  background-color: rgba(148, 112, 203, 1);
}

.auth-error {
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.4);
  border-radius: 8px;
  padding: 10px;
  color: rgb(180, 0, 0);
  margin-bottom: 20px;
}

.auth-link {
  margin-top: 20px;
  font-size: 16px;
}

.auth-link a {
  color: rgba(80, 0, 155, 0.7);
  font-weight: bold;
  text-decoration: none;
}

.auth-link a:hover {
  color: rgba(80, 0, 155, 1);
  text-decoration: underline;
}

.admin-card {
  background: #88c8d6b4;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  body {
    padding: 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .tekstjeict,
  .tekstjeindex2,
  .tekstjeindex3,
  .tekstevi,
  .hobbys {
    font-size: 18px;
  }

  nav {
    font-size: 18px;
  }

  .menu-btn {
    font-size: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
  }
}