@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Sora:wght@600;700&display=swap");

:root {
  --contrast: #191e25;
  --base: #344b64;
  --base-3: #f4f8fa;
  --light-color: #ffffff;
  --accent: #de481e;
  --accent-hover: #bf3d19;
  --accent-soft: #ffe8df;
  --rand: #dce4eb;
  --focus: #f56e28;

  --bg-1: #f8fbfd;
  --bg-2: #edf3f8;
  --kaart: var(--light-color);
  --tekst: var(--contrast);
  --muted: #5f6b79;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--tekst);
  background:
    radial-gradient(circle at 12% 18%, #ffe8df 0%, transparent 42%),
    radial-gradient(circle at 86% 80%, #dce7f2 0%, transparent 45%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2));

  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;
  height: 100%;

}

.mainContainer {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100vh;
}

.navbar {
  padding: 25px;
  border-right: 1px solid lightgray;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 15%;
  min-width: 320px;
  background-color: white;
}

.shoppingCart {
  display: flex;
  flex-direction: column;
  min-width: 370px;
  width: 15%;
}

.infoInLogOut {
  padding: 3px;
  display: flex;
  text-align: left;
  flex-direction: column;
}

.infoInLogOut p {
  padding: 0;
  margin: 0;
}

#logout {
  padding: 10px 20px;
  width: 100%;
  height: 70px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

#logout::after {
  content: "";
  display: block;
  width: 20px;
  height: 30px;
  background-color: white;

  -webkit-mask: url("../svg/log-out.svg") no-repeat center;
  -webkit-mask-size: contain;

  mask: url("../svg/log-out.svg") no-repeat center;
  mask-size: contain;
}

.navbarText {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noLink {
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  text-decoration: none;
  color: black;
}

.navbarAdmin a h3,
.navbarLinks a h3 {
  margin: 7px 0;
}

.noLink:hover {
  text-decoration: none;
  color: #de481e;
}

.crntNoLink {
  background-color: #de481e;
  color: #ffffff;
  border-radius: 15px;
}

.crntNoLink:hover {
  color: #ffffff;
  background-color: #bf3d19;
}

.navbarAdmin {
  margin-top: 25px;
  margin-bottom: 25px;
}

.dashboard {
  padding: 40px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dashboard div p {
  margin: 0;
}

.beleg,
.soort,
.extra {
  width: 100%;
  background-color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 15px;
} 

.beleg h2,
.soort h2,
.extra h2 {
  width: 100%;
  margin: 0 0 8px;
}

.beleg .buttonLookLike,
.soort .buttonLookLike,
.extra .buttonLookLike {
  display: inline-flex;
}

button,
input[type="submit"] {
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(180deg, #e9552b 0%, var(--accent) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(222, 72, 30, 0.28);
  transition:
    background 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.2s ease;
}

.buttonLookLike {
  border: 1px solid #e9552b;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 700;
  background: #ffffff;
  color: #e9552b;
  cursor: pointer;
  text-decoration: none;
}

.buttonLookLike:hover {
  background-color: #e9552b;
  color: #ffffff;
}

.currntBut {
  background: var(--accent);
  color: #ffffff;
}

.buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.extraInfo {
  width: 100%;
}

.bestelled {
  align-items: left;
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 15px;
  padding: 15px 10px;
  width: fit-content;
  width: 100%;
}

.bestelled div h3,
.bestelled div h4,
.bestelled div p,
.bestelled p {
  margin: 0;
  padding: 0;
}

.bestellingpart {
  margin-top: 25%;
  background-color: #ffffff;
  border-radius: 15px;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
}

.bestellingpart h2{
  margin: 0;
  padding: 15px 10px;
}

.bestelInfo {
  display: flex;
  justify-content: space-between;
}

.funLine {
  display: flex;
  justify-content: center;
}

.funLine div {
  width: 75%;
  border-top: 1px solid lightgray;
}

.deletePart {
  padding: 15px 10px;
}

.bestelledWeek {
  background-color: #ffffff;
  border-radius: 15px;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  padding: 5px 25px;
}

.bestelledWeek h2 {
  margin: 0;
}

.allBestelling {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-wrap {
  width: 100%;
  max-width: 420px;
  display: grid;
  gap: 20px;
}

.login-kaart {
  width: 100%;
  max-width: 420px;
  background: var(--kaart);
  border: 1px solid var(--rand);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 48px rgba(25, 30, 37, 0.12);
}

.kop {
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 8px;
  font-size: 1.85rem;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.intro {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.45;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
  background: #fdfefe;
  color: var(--tekst);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(245, 110, 40, 0.22);
  background: #fff;
}

button:hover,
input[type="submit"]:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 26px rgba(191, 61, 25, 0.34);
}

button:active,
input[type="submit"]:active {
  transform: translateY(1px);
}

.melding {
  margin: 0 auto 12px;
  max-width: 420px;
  width: 100%;
  background: var(--accent-soft);
  color: #8a2f13;
  border: 1px solid #f4c0ae;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
}

.pinChange {
  width: 100%;
  background-color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 15px;
}

.pinPut {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.pinPut input {
  width: 100%;
}

@media (max-width: 1200px) {
  .mainContainer {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    width: 100%;
  }

  .shoppingCart {
    width: 100%;
  }
  
  .bestellingpart {
    margin: 0;
  }
}
