/*  Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap");

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

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #3b3535;
  line-height: 1.6;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

h1 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 30px;
  margin-top: 1rem;
}

h3 {
  font-size: 25px;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 15px;
}

/* link */
a {
  color: #6416e1;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* Struktur og sektioner */
header{
  background-color: #3b3535;
  position: fixed;
  top: 0;
  width: 100%;
}
footer{
  background-color: #3b3535;
  color: #ececf4;
  text-align: center;
  padding: 1em 0;
}

footer .socials {
  margin-top: 0.5rem;
}

footer .socials a {
  color: #f8f6f4;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: 0.3s ease;
}

footer .socials a:hover {
  color: #76384f;
}

main {
 padding-top: 140px;
 padding-bottom: 1em;
}

/*  Navigation */

.logo img {
  height: 60px;
  width: auto;
  margin-left: 20px;
}

nav {
  background-color: #3b3535;
  padding: 0.5em 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em;
}

.menu li {
  display: inline;
}

.menu a {
  display: block;
  padding: 1em;
  color: #f8f6f4;
  text-decoration: none;
}

.menu a:hover {
  background-color: #76384f;
  color: #f8f6f4;
}

/* nav aktiv side*/
.menu a.active {
  background-color: #5b2a3a;
  color: #f8f6f4;
}
/* Standard: menu synlig */
.menu {
  display: flex;
  gap: 1rem;
  list-style: none;
}

/* Burger ikon: kun synlig på mobil */
.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #f8f6f4;
}

.burger {
  display: none;
  font-size: 32px;
  color: #f8f6f4;
  cursor: pointer;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project {
  display: flex;
  flex-direction: column;
  background-color: #f8f6f4;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  gap: 1.5rem;
}

.project__overlay {
  text-align: left;
}

.project__images {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  min-width: 300px;
}

.project__images img {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  object-fit: contain
}

form {
  background-color: #fff;
  padding: 1em;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input,
textarea {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.3em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.kontakt {
  background-color: #f8f6f4;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button--primary {
  background-color: #5b2a3a;
  color: #fff;
}

.button--primary:hover {
  background-color: #76384f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.billed-container {
  text-align: center;
  max-width: 300px;
}
.om-mig {
  background-color: #3b3535;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.om-mig__indhold {
  display: flex;
  flex-direction: column; /* Mobil først */
  align-items: center;
  max-width: 800px;
  width: 100%;
  gap: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 8px;
  background-color: #f8f6f4;
}

.om-mig__indhold img {
  max-width: 200px;
  border-radius: 8px;
}

.programs {
  background-color: #f8f6f4;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.programs__heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #3b3535;
}

.programs__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.programs__logo {
  width: 120px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.programs__logo:hover {
  transform: scale(1.05);
}

.intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.intro {
  background-color: #f8f6f4;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.intro__image {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.creative-billed {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* ----------- Mobil (under 768px) ----------- */
@media (max-width: 768px) {
  .project__images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .project__images img {
    width: 90%;
    height: auto;
  }

  .intro__content {
    padding: 1rem;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #3b3535;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    z-index: 1000;
  }

  .menu.show {
    display: flex;
  }

  .burger {
    display: block;
  }
}
/* ----------- Desktop (fra 769px og op) ----------- */
@media (min-width: 769px) {
  .project__images {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .project__images img {
    max-width: 280px;
    height: auto;
  }

  .intro__content {
    padding: 2rem;

  }

  .burger {
    display: none;
  }

  .menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    width: auto;
  }
}
