
html, body {
    margin: 0;
    padding: 0; 
  }

  header {
    position: fixed;
    z-index: 10;
}

  .image-container {
    position: relative; 
    z-index: 1; 
    max-width: 100%; 
    width: 100%; 
    margin: 0 auto; 
}


.image-container img {
    width: 100%; 
    height: auto; 
    display: block; 
}


.image-container .text-overlay {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: white; 
    padding: 10px 20px; 
}
.text-overlay h1{
    font-weight: 600;
    font-size: 60px; 
    text-align: center; 
    font-family: "Nunito", sans-serif;
}
.icon-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.icon {
    flex: 1;
    max-width: 300px;
}

.icon img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}
.icon p {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    margin-top: 10px;
}

.story-section {
    display: flex;
    margin-top: 30px;
    align-items: center;
    padding: 20px 120px;
    background-color: #fff;
    gap: 50px;
}

.story-text {
    flex: 1;
    max-width: 600px;
    text-align: center;
    border: 2px solid #000;
    padding: 30px;
    margin-bottom: 60px;
}
.story-text h3 {
    color: #B5956E;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif;
}
.story-text p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 60px;
}

.two-column-section {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    padding: 20px 130px;
    background-color: #CEC9C4;
    margin-bottom: 100px;
}

.column {
    flex: 1;
    max-width: 500px;
    margin: 0;
    overflow: hidden;
    border: 2px solid #000;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.column img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.column h3 {
    color: #B5956E;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
    font-family: "Nunito", sans-serif;
}
.column p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #013B4C;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 20px;
    border-radius: 5px;
    margin: 20px auto; /* Ens margin for centrering */
}

.button:hover {
    background-color: #B5956E;
}

@media (max-width: 768px) {
    .text-overlay h1{
      font-size: 40px;
    }
    .icon-section {
        flex-direction: column;
        align-items: center;
        gap: 15px; 
    }

    .icon {
        margin-bottom: 20px; 
    }

    .story-section {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
    
    .story-text {
        margin-bottom: 20px; 
    }
    
    .story-image img {
        max-width: 500px;
    }
    /* To kolonner sektionen */
    .two-column-section {
        flex-direction: column; 
        align-items: center; 
    }

    .column {
        max-width: 400px;
        margin-bottom: 20px; 
    }

    .column img {
        max-width: 300px; 
        align-items: center;
    }
}
