/* PLACERING: public_html/css/globalstyle_buddhi.css */

/* body {
    background-color: red;
} */

/* Styling for topbanner */
.topbanner {
    width: 100%;
    height: 8vw; /* Dynamisk højde for større skærme */
    max-height: 300px;
    background-image: url('../images/main/alchemy-topbanner.jpg');
    background-size: cover;
    background-position: center 51%;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Tilføjer skyggeeffekt */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}


/* Generel styling for topbanner navigationsmenu */
.topbanner-nav {
    display: flex;
    justify-content: center;
    background-color: transparent;
    padding: 10px 0;
    margin-bottom: 10px;
    position: static; /* Sørger for, at navigationen ikke følger med ved scroll */
}

.topbanner-nav ul {
    list-style-type: none; /* Fjern punkttegn */
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px; /* Afstand mellem menupunkterne */
}

.topbanner-nav ul li {
    display: inline; /* Sørger for horisontal layout */
}

.topbanner-nav ul li a {
    font-size: 0.9em;
    color: blue; /* Juster farve */
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.topbanner-nav ul li a:hover {
    color: white; /* Hover-effekt farve */
    background-color: black; /* Hover-effekt baggrund */
    border-radius: 4px;
}

/* Fjernet position: absolute; for .topbanner-link og .topbanner-link-back for at undgå at de følger med ved scroll */
.topbanner-link a, .topbanner-link-back a {
    font-size: 0.9em; /* Justeret størrelse */
    color: black; /* Subtil farve */
    background-color: transparent; /* Fjernet baggrundsfarve */
    text-decoration: none;
    text-align: center;
}

.topbanner-link a:hover {
    text-decoration: underline;
}

/* Styling for banner header */
.banner-header {
    text-align: center;
    font-size: 1em;
    color: black;
    background-color: white;
    /* padding: 10px 20px; */
    width: fit-content;
    margin: 0 auto;
    /* margin-top: 1cm; */
    margin-bottom: 30px; /* Tilføjer 40px afstand under banneret */
    /* border: 1px solid #ddd;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 50px 50px 10px 10px; */
}

/* Styling for banner images */
.banner-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.banner-images img {
    max-width: 100%;
    height: auto;
    width: 200px;
    border: 1px solid #ddd;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.banner-images img:hover {
    transform: scale(1.05);
}

/* Styling til footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #fafafa;
}

footer p {
    margin: 10px 0;
    color: #333;
    font-size: 0.9em;
}

footer img {
    width: 150px;
}
