*{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

body{
    background-color: #f8f9fa;
}


/* =========================
   Navigation Bar
========================= */
.navigation {
    display: flex;
    align-items: center;
    height: 120px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative; /* needed for absolute mobile menu */
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 30px;
}
.nav-left img {
    height: 40px;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nav-right {
    flex: 1;
}

/* Navigation links */
.navigation a {
    text-decoration: none;
    font-size: 1.3rem;
    color: black;
    margin: 0 20px;
    padding: 30px;
    border-radius: 20px;
    transition: 0.15s;
}

.navigation a:hover {
    border-radius: 20px;
    font-weight: 600;
    scale: 1.1;
    background-color: rgba(200, 200, 200, 0.4);
}

/* =========================
   Hamburger Button (Mobile)
========================= */
.hamburger {
    display: none; /* hidden by default */
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* =========================
   Responsive Mobile Styles
========================= */
@media (max-width: 768px) {
    /* Hide nav links initially */
    .nav-center {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 120px; /* navbar height */
        left: 0;
        width: 100%;
        background-color: white;
        padding: 15px 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 100;
    }

    /* Show nav links when active */
    .nav-center.active {
        display: flex;
    }

    /* Show hamburger button */
    .hamburger {
        display: block;
        flex: 0;
        margin-right: 20px;
    }

    /* Reduce padding of links for mobile */
    .navigation a {
        margin: 5px 0;
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}



/* =========================
   Footer
========================= */
.site-footer {
    background-color: rgb(34, 34, 34, 0.94);
    color: #eee;
    padding: 60px 10% 20px;
    font-size: 1rem;
    margin-top: 4rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-brand p {
    line-height: 1.6;
    color: #ccc;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-socials h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-socials p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 1rem;
    color: #aaa;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: opacity 0.25s ease;
}

.instagram-link img {
    width: 30px;
    height: 30px;
}

.instagram-link:hover {
    opacity: 0.7;
}



/* =========================
   Main
========================= */
/* =========================
   Generelle Styles
========================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
}

.main-header {
    text-align: center;
    font-size: 2.5rem;
    margin: 2rem 1rem;
    color: #222;
}

/* =========================
   Om mig sektion
========================= */
.om-mig {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.ommig-venstre,
.ommig-højre {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.ommig-venstre img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Tekst til højre */
.ommig-højre h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ommig-højre p {
    font-size: 1rem;
    color: #555;
    margin: 0 1rem;
}

/* =========================
   Min mission sektion
========================= */
.min-mission {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.mission-venstre,
.mission-højre {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.mission-højre img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Tekst til højre */
.mission-venstre h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-venstre p {
    font-size: 1rem;
    color: #555;
    margin: 0 1rem;
}

/* =========================
   Responsive tweaks
========================= */
@media (max-width: 700px) {
    .om-mig,
    .min-mission {
        flex-direction: column;
        align-items: center;
    }

    .ommig-højre,
    .ommig-venstre,
    .mission-venstre,
    .mission-højre {
        max-width: 90%;
    }

    .main-header {
        font-size: 2rem;
    }

    .ommig-højre h2,
    .mission-venstre h2 {
        font-size: 1.5rem;
    }
}













/* =========================
   Sociale Medier Section
========================= */
.socialemedier {
  text-align: center;
  margin-bottom: 3rem;
}

.socialemedier h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.socialemedier a {
  display: inline-block;
  margin: 0.3rem 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.socialemedier a:hover {
  background: #eee;
  transform: translateY(-1px);
}

/* =========================
   Se Opskrifter Section
========================= */
.se-opskrifter {
  text-align: center;
  margin-bottom: 3rem;
}

.se-opskrifter h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.se-opskrifter a {
  display: inline-block;
  margin: 0.3rem 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.se-opskrifter a:hover {
  background: #eee;
  transform: translateY(-1px);
}

/* =========================
   Responsive tweaks
========================= */
@media (max-width: 500px) {
  .hero h2 {
    font-size: 1.5rem;
  }

  .socialemedier h2 {
    font-size: 1.3rem;
  }

  .hero img {
    max-width: 150px;
  }
}
