* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}
/* Wrapper for centrering og hvid kant */
.wrapper {
    background-color: #fff;
    width: 90%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header styling */
/* Container styling */
.header-container1 {
    width: 100%;
    max-width: 1200px; /* Tilpas bredden efter behov */
    margin: 0 auto;
    padding: 10px 20px;
}

/* Flex layout for header content */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo img {
    max-height: 200px;
}

/* Sociale links styling */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}


.social-links a:hover {
    color: #C80111;
}

/* Slider styling */
.slider {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    border-radius: 20px;
    margin: 20px 0;
    position: relative;
}

.slides {
    display: flex;
    width: 300%;
    animation: slide-animation 10s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container styling */
.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh; /* Fylder hele højden af vinduet */
    background-color: #f9f9f9; /* Valgfri baggrundsfarve */
}

/* Tekstboks styling */
.container {
    text-align: center;
    background: rgba(255,255,255, 1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
}

.content {
    width: 800px;
    max-width: 100%; /* Sikrer responsivitet på mindre skærme */
    text-align: center;
    position: relative;
    right: -15%;
}

/* Styling for kontaktinfo */
.contact-info {
    margin-top: 10px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #C80111;
}

p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #1b1b1b;
}

.contact-info a {
    color: #C80111;
    text-decoration: none;
}

.contact-info a:hover {
    color: #C80111;
}

@media (max-width: 1300px) {
    .content {
        position: relative;
        right: 0%;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 150px;
    }
}

.fa-facebook, .fa-instagram {
    font-size: 25px;
}

.fa-phone, .fa-envelope {
	padding-right: 10px;
}

.qr-item img {
    width: 70px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

	