* {
    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;
    width: 150px;
}

/* 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: #666;
}

/* 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: #BCA4A7 !important;
    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: #1b1b1b;
}

p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #1b1b1b;
}

.contact-info a {
    color: #1b1b1b;
    text-decoration: none;
}

.contact-info a:hover {
    color: #666;
}

@media (max-width: 1300px) {
    .content {
        position: relative;
        right: 0%;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 150px;
        width: 50px;
    }
}

.fa-facebook, .fa-instagram {
    font-size: 25px;
}

.fa-phone, .fa-envelope {
	padding-right: 10px;
}

.menu-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1b1b1b;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    margin-bottom: 20px;
    transition: 0.3s;
}

.menu-button:hover {
    background-color: #555;
}

.menu-button {
    display: inline-block !important;
    padding: 12px 25px !important;
    background-color: #1b1b1b !important;
    color: #fff !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-size: 1.2em !important;
    margin-bottom: 20px !important;
    margin-top: 10px !important;
    transition: 0.3s ease !important;
}

.menu-button:hover {
    background-color: #555 !important;
    color: #fff !important;
}

.map-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #BCA4A7; /* Juice Club farve */
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 15px;
    transition: 0.3s ease;
}

.map-button:hover {
    background-color: #a68c8e; /* mørkere tone */
}

.menu-button,
.map-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1b1b1b;
    color: #fff !important;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    margin: 10px 0 20px 0;
    transition: 0.3s ease;
}

.menu-button:hover,
.map-button:hover {
    background-color: #555;
}

