/*Reset*/
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/*Grundelementer*/
body {
  background: linear-gradient(to right, #7d7a36, #686346);
  font-family: "Genos", helvetica, sans-serif;
  height: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto; /* min header, body, footer */
}

.logo img {
  width: 100%;
  height: auto;
  margin: 10px;
  padding: 20px;
  max-width: 200px;
}

.info-forside-boks {
  margin: auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  color: #5c242b;
  text-align: center;
}

.info-forside-boks a {
  text-decoration: none;
  border: 1px solid #ada50e; /* tynd streg rundt om */
  padding: 8px 20px;
  border-radius: 50px; /* gør den rund */
  color: #ada50e;
  font-size: 30px; /*Primært til teksten "tilblivelse af portfolio"*/
  transition: 0.3s;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* giver knappen skygge */
}

a:visited {
  background-color: #5c242b;
}

h1 {
  font-size: 50px;
}

h3 {
  font-weight: 400;
  font-size: 32px;
  margin: 0;
}

.topnav a {
  display: none;
  text-decoration: none;
  color: #5c242b;
  margin: 10px;
}

.topnav .icon {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
}

.responsive a {
  display: block;
  text-align: right;
}

.responsive {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  width: 100%;
  position: fixed; /*gør at menuen ikke rykker til alt indhold nedenunder*/
  top: 0;
}

.topnav .icon i {
  font-size: 30px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #cbca94;
  padding: 0 30px;
  height: 120px;
}

/* Venstre logo */
.blomst-kasse img {
  height: auto;
  width: 100%;
  max-height: 40px;
}

/* Midter links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 40px;
  row-gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #7d7a36;
}

/* Højre logoer */
.container-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-right: 10px;
}

.container-footer-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: grayscale(50%);
}

/*Herunder til Om mig side*/

.showreel-boks {
  margin: 0 10px;
}

.Showreel-titel {
  margin: 20px;
  margin-top: 20px;
}

.showreel-boks h3 {
  justify-content: space-around;
  text-align: center;
  color: #5c242b;
  font-size: 38px;
  gap: 50px;
  font-weight: 500;
}

.showreel-tekst {
  margin: 10px;
  font-size: 20px;
}

.Showreel-video {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto; /* Centrerer på alle skærmstørrelser */
}

.Showreel-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  margin-bottom: 50px;
}

.om-mig-titel h3 {
  margin: 0;
  color: #5c242b;
  font-size: 38px;
  font-weight: 500;
  text-align: center;
}

.om-mig-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.portraet-nanna {
  margin: 10px;
}

.portraet-nanna img {
  width: 100%; /* Fylder hele containerens bredde */
  height: auto; /* Beholder korrekt proportion */
  object-fit: contain; /* Sikrer pæn skalering */
  display: block;
  margin: 0;
  border-radius: 20px; /*gør kanter runde*/
}

.info-om-mig {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.Tekst-om-mig {
  max-width: 500px;
  font-size: 20px;
  margin: 10px;
}

.download-cv {
  text-align: center;
  margin: 20px;
  margin-bottom: 50px;
}

.download-cv a {
  text-decoration: none;
  color: #ada50e;
  border: 1px solid #ada50e;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

/*Herunder css til "Portfolio"*/

.overskrifter-projekter h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 40px;
  color: #5c242b;
  letter-spacing: 5px;
  text-align: center;
}

.overskrifter-projekter h4 {
  font-size: 40px;
  color: #5c242b;
  letter-spacing: 5px;
  text-align: center;
}

.fire-knapper-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 20px auto;
  width: 80%;
}

.fire-knapper-container a {
  text-decoration: none;
  color: #ada50e;
  font-size: 20px;
}

.fire-knapper-container > div {
  border-radius: 15px;
  letter-spacing: 2px; /*mellemrum mellem bogstaver*/
  text-align: center;
  border: 1px solid #ada50e;
  padding: 8px 20px;
  color: #ada50e;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

h4 {
  margin: 10px;
  color: #5c242b;
  font-size: 20px;
}

.figma-container {
  font-weight: 500;
  font-size: 20px;
}

.figma-container a {
  margin: 20px;
}

.figma-container h4 {
  text-align: center;
}

.figmadokumentation {
  font-size: 25px;
  color: #5c242b;
  margin-bottom: 20px;
  text-align: center;
}

.intro-figma-opgave,
.intro-figma-opgave-2,
.proces-figma-opgave,
.refleksion-figma,
.intro-kommunal-opgave,
.proces-kommunal,
.refleksion-website,
.introduktion-koncept,
.proces-koncept,
.resultat-koncept,
.releksion-koncept,
.introduktion-kampagne,
.proces-kampagne,
.resultat-kampagne {
  margin: 5px 40px; /* Sådan så alt tekst har samme margin*/
}

.figmadokumentation,
.kommunal-dokumentation,
.koncept-dokumentation,
.Kampagne-dokumentation {
  font-weight: 700;
}

.figma-plakat-billede {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.figma-plakat-billede img {
  width: 100%;
  height: auto;
  max-width: 200px;
  border-radius: 20px;
}

.figma-billeder-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 40px;
  font-size: 20px;
}

.figma-resultat img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

.figma-billede-2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

.link-til-figma a {
  text-decoration: none;
  color: #ada50e;
  margin: 20px;
  display: block;
  text-align: center;
  margin-bottom: 60px;
}

.kommunal-container {
  font-weight: 500;
  font-size: 20px;
}

.kommunal-container h4 {
  text-align: center;
}

.kommunal-dokumentation {
  font-size: 25px;
  color: #5c242b;
  padding: 0 20px;
  margin-bottom: 10px;
  text-align: center;
}

.kommunal-resultat h4 {
  text-align: center;
}

.kommunal-resultat {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 40px;
  font-size: 20px;
}

.kommunal-resultat img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.link-til-website a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #ada50e;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.koncept-container {
  font-weight: 500;
  font-size: 20px;
}

.koncept-container h4 {
  text-align: center;
}

.koncept-dokumentation {
  font-size: 25px;
  color: #5c242b;
  padding: 0 20px;
  margin-bottom: 10px;
  text-align: center;
}

.resultat-koncept {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 40px;
  font-size: 20px;
}

.resultat-koncept h4 {
  text-align: center;
}

.billeder-af-Doechii-container {
  display: flex;
  flex-direction: row;
  padding-right: 50px;
  gap: 10px;
  margin: 20px 40px;
  font-size: 20px;
}

.billeder-af-Doechii-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  max-width: 150px;
}

.doechii-billede-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin: 20px 40px;
}

.doechii-billede-container img {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 20px;
}

.link-til-figma-koncept a {
  text-decoration: none;
  color: #ada50e;
  margin: 20px;
  display: block;
  text-align: center;
}

.Kampagne-container {
  font-weight: 500;
  font-size: 20px;
}

.Kampagne-container h4 {
  text-align: center;
}

.Kampagne-dokumentation {
  font-size: 25px;
  color: #5c242b;
  padding: 0 20px;
  margin-bottom: 10px;
  text-align: center;
}

.wireframe-billede {
  margin: 30px;
  display: flex;
  justify-content: center;
}

.wireframe-billede img {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

.visuel-stil-kampagne-boks {
  display: flex;
  flex-direction: column;
  margin: 30px;
  gap: 20px;
}

.visuel-stil-kampagne-boks img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

.kampagne-resultat-billeder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px;
}

.kampagne-resultat-billeder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

.link-landingpage-kampagne a {
  text-decoration: none;
  color: #ada50e;
  margin: 20px;
  display: block;
  text-align: center;
}
/*Herunder css til "Kontakt"*/

.kontakt-main-title {
  text-align: center;
  color: #5c242b;
  font-size: 38px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.kontakt-info {
  text-align: center;
  justify-content: center;
  color: #5c242b;
  font-size: 30px;
  margin: 0;
  font-size: 38px;
  font-weight: 500;
}

.kontakt-wrapper {
  width: 100%;
}

.kontakt-bokse {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}

.kontakt-info,
.nbd,
.nummer,
.nbd-dk {
  margin: 40px;
}

.Kontakt-info-boks {
  border: 1px solid #ada50e;
  padding: 8px 20px;
  border-radius: 20px;
  color: #ada50e;
  font-size: 30px;
  transition: 0.3s;
  gap: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 40px auto;
  width: 90%;
  height: 700px;
}

.titel-send-direkte {
  text-align: center;
  color: #5c242b;
  font-size: 38px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.send-direkte-boks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px;
}

.navnkol,
.tlfkol,
.emailkol,
.beskedkol {
  border: 1px solid #ada50e;
  padding: 8px 10px;
  border-radius: 20px;
  color: #ada50e;
  font-size: 30px;
  transition: 0.3s;
  text-align: left;
}

.beskedkol {
  height: 285px;
}

.send-knap {
  display: block;
  margin: 40px auto;
  border: 1px solid #ada50e;
  background-color: #ada50e;
  padding: 8px 20px;
  border-radius: 50px;
  color: #3c191c;
  text-align: center;
  width: fit-content;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  font-family: "Genos";
  font-size: 16px;
}

.send-knap:hover {
  cursor: pointer;
}

/*CSS til dokumentation*/
.titel-dokumentation {
  font-size: 22px;
  text-align: center;
  margin-top: 20px;
  color: #5c242b;
}

.dokumentation-wrapper {
  margin: 40px;
  font-size: 20px;
  font-weight: 500;
}

.dokumentation-wrapper h2,
.dokumentation-wrapper h4 {
  text-align: center;
  color: #5c242b;
  margin-top: 20px;
  margin-bottom: 10px;
}

.projektstyring-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projekt-styring-billeder {
  display: flex;
  flex-direction: column;
}

.projekt-styring-billeder img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-top: 20px;
  border-radius: 20px;
}

.brainstorm-container {
  align-items: center;
  margin: 20px 0;
}

.billede-af-styleguide {
  display: flex;
  justify-content: center;
}

.billede-af-styleguide img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-top: 20px;
  margin: 20px;
  border-radius: 20px;
}

.link-til-figma-doku a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #ada50e;
  margin-top: 20px;
}

.Layout-container {
  align-items: center;
  margin: 20px 0;
}

.wireframe-billeder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.wireframe-billeder img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-top: 20px;
  margin: 20px;
  border-radius: 20px;
}

.illustrator-tegninger {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.illustrator-tegninger img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-top: 20px;
  margin: 20px;
  border-radius: 20px;
}

.photoshop-effekt {
  display: flex;
  justify-content: center;
}

.photoshop-effekt img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-top: 20px;
  margin: 20px;
  border-radius: 20px;
}

.kode-billeder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.kode-billeder img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-top: 20px;
  margin: 20px;
  border-radius: 20px;
}

.link-til-AI a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #ada50e;
  margin-top: 20px;
}

/*Dette gælder kun for skærme med over 768px (ipad/tablet)*/
@media screen and (min-width: 768px) {
  h1 {
    font-size: 100px;
  }

  h3 {
    font-size: 48px;
  }

  .logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 20px;
    padding: 20px;
  }

  .topnav a {
    display: block; /* Gør menuen synlig igen */
    text-decoration: none;
    font-size: 25px;
  }

  .topnav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    justify-content: center;
  }

  .topnav .icon {
    display: none;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  .footer-links {
    font-size: 24px;
  }

  .blomst-kasse img {
    max-height: 60px;
  }

  /*ccs til om mig*/

  .showreel-boks {
    margin: 40px;
    margin-top: 0;
  }

  .om-mig-container {
    display: flex;
    flex-direction: row;
    margin: 30px;
  }

  .Tekst-om-mig {
    min-width: 400px;
    font-size: 20px;
  }

  .download-cv {
    text-align: left;
    padding-left: 80px;
    padding-bottom: 100px;
  }

  /*css til portfolio*/
  .overskrifter-projekter h3 {
    margin-top: 20px;
  }

  .fire-knapper-container {
    gap: 20px;
  }

  .fire-knapper-container > div {
    padding: 20px 20px;
  }

  .figma-container {
    margin: 5px 50px;
  }

  .kommunal-container {
    margin: 5px 50px;
  }

  .link-til-website {
    text-align: center;
  }

  .koncept-container {
    margin: 5px 50px;
  }

  .container-doechii {
    gap: 30px;
    display: flex;
    flex-direction: row;
  }

  .billeder-af-Doechii-container img {
    max-width: 300px;
  }

  .resultat-koncept {
    margin: 5px 50px;
  }

  .Doechii-lp-cover img {
    max-width: 700px;
  }

  .doechii-billede-container {
    gap: 50px;
  }
  .releksion-koncept {
    margin: 5px 50px;
  }

  .link-til-figma-koncept {
    margin-bottom: 40px;
  }

  .Kampagne-container {
    margin: 5px 50px;
  }

  .wireframe-billede img {
    max-width: 300px;
  }

  .visuel-stil-kampagne-boks {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }

  .visuel-stil-kampagne-boks img {
    max-width: 300px;
  }

  .styleguide-billede {
    flex: 2; /* fylder dobbelt så meget */
  }

  .logo-billede {
    flex: 1; /* fylder mindre */
  }

  .logo-billede img {
    max-height: 400px;
  }

  /* css til kontakt*/
  .kontakt-bokse {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 80%;
    margin: 0 auto;
  }

  .Kontakt-info-boks {
    flex: 1; /* gør at begge kolonner fylder ens */
    max-width: 600px; /* så de ikke bliver for brede */
    gap: 50px;
  }

  .send-direkte-boks {
    flex: 1; /* gør at begge kolonner fylder ens */
    max-width: 600px; /* så de ikke bliver for brede */
    gap: 30px;
  }

  .kontakt-wrapper {
    margin-top: 80px;
  }

  .titel-send-direkte {
    margin-top: 40px;
  }

  .beskedkol {
    height: 300px;
  }

  .form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .kontakt-wrapper,
  .kontakt-info,
  .titel-send-direkte {
    display: flex;
    flex-direction: row;
  }

  .navnkol,
  .tlfkol,
  .emailkol,
  .beskedkol {
    width: 100%;
    margin: 0;
  }

  .beskedkol {
    height: 285px;
  }

  .send-knap {
    margin-top: 20px;
  }
}

/*Dette gælder kun for skærme med over 1024px (desktop/større tablets) */
@media screen and (min-width: 1024px) {
  .info-forside-boks {
    margin-top: 40px;
  }

  /*css til om mig*/

  .showreel-boks {
    margin: 30px;
  }

  .om-mig-container {
    margin: 50px;
  }

  .download-cv {
    padding-left: 190px;
  }

  /*css til portfolio*/

  .figma-container {
    margin: 5px 90px;
  }

  .kommunal-container {
    margin: 5px 90px;
  }

  .koncept-container {
    margin: 5px 90px;
  }

  .billeder-af-Doechii-container img {
    max-width: 375px;
  }

  .doechii-billede-container img {
    max-height: 500px;
  }

  .container-doechii {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
  }

  .container-doechii img {
    max-width: 320px;
  }

  .Kampagne-container {
    margin: 5px 90px;
  }

  .visuel-stil-kampagne-boks {
    gap: 30px;
    display: flex;
  }
  .styleguide-billede {
    flex: 1; /* fylder mindre */
  }

  .styleguide-billede img {
    max-width: 400px;
  }

  .logo-billede img {
    max-width: 290px;
  }

  /*css til kontakt*/
  .titel-send-direkte {
    margin-top: 50px;
    padding-left: 40px;
  }

  .beskedkol {
    height: 320px;
  }

  .send-knap {
    margin-top: 0;
    display: block;
  }
}

/*Dette gælder kun for skærme med over 1110px (desktop) */
@media screen and (min-width: 1110px) {
  h1 {
    font-size: 100px;
  }

  h3 {
    font-size: 60px;
    margin-bottom: 10px;
  }

  .logo img {
    width: 100%;
    max-width: 300px;
  }

  .info-forside-boks {
    display: flex;
    margin-top: 40px;
  }

  .info-forside-boks a {
    margin-bottom: 10px;
  }

  .topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .topnav a {
    font-size: 30px;
  }

  .footer-info-raekke1,
  .footer-info-raekke2 {
    display: flex;
    gap: 80px;
    text-align: left;
  }

  /*css til om mig*/

  .showreel-boks {
    margin: 20px;
  }

  .showreel-tekst {
    padding-left: 380px;
    padding-right: 380px;
  }

  .Showreel-video iframe {
    margin: 0;
    padding: 0;
  }

  .om-mig-container {
    gap: 40px;
    margin: 50px auto;
  }

  .portraet-nanna img {
    max-width: 400px;
    width: 100%;
    height: auto;
  }

  .Tekst-om-mig {
    max-width: 500px;
    padding: 30px;
  }

  .download-cv {
    padding-left: 460px;
  }

  /*css til portfolio*/
  .fire-knapper-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* to kolonner */
    gap: 40px;
    margin: 60px auto;
    width: 50%;
  }

  .fire-knapper-container > div {
    padding: 50px 20px;
    border-radius: 15px;
    color: #3c191c;
    font-size: 32px;
    letter-spacing: 4px;
  }

  .figma-container {
    margin: 5px 250px;
  }

  .figma-billeder-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .figma-billeder-container img {
    max-width: 600px;
  }

  .figma-resultat img {
    max-height: 378px;
  }

  .kommunal-container {
    margin: 5px 250px;
  }

  .kommunal-resultat {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px;
  }

  .kommunal-resultat img {
    max-height: 300px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px;
  }

  .koncept-container {
    margin: 5px 250px;
  }

  .billeder-af-Doechii-container img {
    max-width: 500px;
  }

  .Doechii-lp-cover img {
    max-width: 800px;
    max-height: 500px;
    display: flex;
    justify-content: center;
    margin-left: 170px;
  }

  .container-doechii {
    justify-content: center;
  }

  .container-doechii img {
    max-width: 400px;
  }

  .visuel-stil-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .wireframe-billede img {
    max-width: 310px;
  }

  .visuel-stil-kampagne-boks {
    display: flex;
    flex-direction: column;
  }

  .Kampagne-container {
    margin: 5px 250px;
  }

  .kampagne-resultat-billeder {
    display: flex;
    flex-direction: row;
  }

  .kampagne-resultat-billeder img {
    max-height: 300px;
  }

  /*css til kontakt*/

  .kontakt-bokse {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    align-items: flex-start;
  }

  .kontakt-main-title {
    font-size: 60px;
    text-align: center;
  }

  .titel-send-direkte {
    padding-left: 150px;
  }

  .send-knap {
    display: flex;
    justify-content: flex-end;
  }

  /*css til dokumentation*/
  .projekt-styring-billeder {
    display: flex;
    flex-direction: row;
  }

  .projekt-styring-billeder img {
    max-width: 250px;
  }

  .wireframe-billeder {
    display: flex;
    flex-direction: row;
  }

  .wireframe-billeder img {
    max-width: 250px;
  }

  .illustrator-tegninger {
    display: flex;
    flex-direction: row;
  }

  .illustrator-tegninger img {
    max-width: 400px;
  }
  .dokumentation-wrapper {
    margin: 80px 400px;
  }
}
