body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #fff;
}

.hero {
    position: relative;
    background-image: url('images/gullbranna.jpeg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
    background: transparent; /* Transparent bakgrund */
}

header h1 {
    font-size: 2.5em;
    margin: 20px 0;
    color: #fff;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-message {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #333;
}

.welcome-message h2 {
    margin-top: 0;
    font-size: 2em;
    color: #e4b1ab;
}

.welcome-message p {
    font-size: 1.2em;
    line-height: 1.6;
}

footer {
    background-color: #e4b1ab;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer .seo-link {
    color: #fff;
    text-decoration: none;
}

footer .seo-link:hover {
    text-decoration: underline;
}
