/* 
 * Fil: topbanner-v2.2.css
 * Version: 2.2
 * Placering: /home/buddhidk/public_html/ver-2.2/css/topbanner-v2.2.css
 * Root: /home/buddhidk/public_html/ver-2.2
 * 
 * Formål:
 * Håndterer layout og design for version 2.2, herunder ændringer til infobokse.
 */

/* Styling for topbanner */
.topbanner {
    width: 100%;
    height: 8vw;
    max-height: 300px;
    background-image: url('../images/topbanner-star.jpg');
    background-size: contain;
    background-position: center 51%;
    background-repeat: repeat;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Styling for topbanner navigationsmenu */
.topbanner-nav {
    display: flex;
    justify-content: center;
    background-color: transparent;
    padding: 10px 0;
    margin-bottom: 10px;
    position: static;
}

.topbanner-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.topbanner-nav ul li {
    display: inline-block;
}

.topbanner-nav ul li a {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1em;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.topbanner-nav ul li a:hover {
    color: #800020; /* Bordeaux tekst ved hover */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Let tekstskygge ved hover */
}



