@font-face {
    font-family: "MyFont";
    src: url("/fonts/Tangerine-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.myLink {
pointer: cursor;
color: blue;
border-bottom: 1px solid black;
}

.profile-container {
    padding-bottom: 40px;
    display: flex; /* Använd flexbox för layout */
    flex-direction: column; /* Kolumnlayout */
    display: flex; /* Använd flexbox för att centrera innehållet */
    justify-content: center; /* Centrera horisontellt */
    align-items: center; /* Centrera vertikalt */
}

.profile-image {
    width: 400px;
    height: auto; /* Hålla proportioner */
    margin-bottom: 20px; /* Utrymme under bilden */
    padding: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.outer-container {
margin: 15px;
background-color: transparent !important;
}

img {
    max-width: 100%;
}

.minititel {
    text-align: center;
}

.textsnutt {
 max-width: 600px;
 text-align: center;
 letter-spacing: 2px;
}

.anmalanknapp {
 background-color: #97ac7e;
 font-weight: bold;
 color: white;
 border-radius: 5px;
 padding: 10px;
 margin: 10px;
 cursor: pointer;
 }

.active {
  border-bottom: 4px solid #c5d2a4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Cardo, serif";
      line-height: 1.5;
      background: #ffffff;
      color: #595955;
    }

    a { color: inherit; text-decoration: none; }

    /* Header + meny */
    header {
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      background: #ffffffcc;
      backdrop-filter: blur(8px);
      margin-top: 80px
    }

    .nav {
      max-width: 900px;
      margin: 0 auto;
      padding: 0.5rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-links {
      list-style: none;
      display: none;
      flex-direction: column;
      gap: 0.3rem;
      padding-top: 0.4rem;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      text-decoration: underline;
    }

    .menu-btn {
      background: none;
      border: 1px solid #e5e7eb;
      padding: 0.25rem 0.7rem;
      font-size: 1rem;
      letter-spacing: 4px;
      cursor: pointer;
    }

    .nav.open .nav-links { display: flex; }

    /* Hjältsektion */
    main {
      max-width: 900px;
      margin: 0 auto;
      padding: 2.5rem 1rem 3rem;
      text-align: center;
    }

    .intro-top {
      font-size: 0.8rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    h1 {
      font-size: 1.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.3rem;
    }

    .date {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .lead {
      max-width: 34rem;
      margin: 0 auto;
      font-size: 0.95rem;
      color: #595955;
    }

    section {
      margin-top: 2.5rem;
      text-align: left;
    }

    section h2 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    section p {
      font-size: 0.95rem;
      color: #595955;
    }

    /* Desktop */
    @media (min-width: 768px) {
      .menu-btn { display: none; }

      .nav-links {
        display: flex !important;
        flex-direction: row;
        gap: 1.5rem;
        padding-top: 0;
      }

      main {
        padding-top: 3rem;
      }

      h1 {
        font-size: 2.2rem;
      }
    }
    /* Header + meny */
    .footer {
    margin: 20px;
      border-top: 1px solid #e5e7eb;
    }