* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

.logo-top {
    margin-bottom: 50px;            /* afstand mellem logo og menu */
    padding: 20px 40px;             /* luft omkring logo */
    background: linear-gradient(135deg, #fff, #f0f0f0); /* lys gradient bag logo */
    display: inline-block;
    border-radius: 25px;            /* afrundede hjørner */
    box-shadow: 0 12px 30px rgba(0,0,0,0.4); /* kraftigere skygge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-top img {
    height: 140px;                  /* større logo */
    display: block;
    margin: 0 auto;
}

.logo-top:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
body {
    margin: 0;
    min-height: 100vh;
/*    background: url("../images/lions_logo.jpg") no-repeat top center;
    background-size: 20%; */
    background-color: #003A8F; /* Lions blaa */
    margin-bottom: 50px

}

.overlay {
    background-color: rgba(0, 0, 0, 0.55);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: rgba(255,255,255,0.95);
    max-width: 600px;
    width: 100%;
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

h1 {
    color: #003A8F;
    margin-bottom: 10px;
}

.intro {
    color: #333;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: block;
    padding: 15px;
    background: #F6B800; /* Lions gul */
    color: #003A8F;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.25s ease;
}

.btn:hover {
    background: #003A8F;
    color: #fff;
    transform: scale(1.03);
}

.btn-secondary {
    background: #eaeaea;
    color: #333;
}

.btn-secondary:hover {
    background: #555;
    color: #fff;
}
/* Wrapper til menu + preview */
.menu-preview-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px; /* afstand mellem menu og preview */
}

/* Menu centreret */
.menu-center {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Preview box til højre */
.preview-box {
    width: 350px;
    min-height: 200px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

/* Knapper */
.btn {
    display: block;
    width: 250px;
    padding: 15px;
    background: #F6B800;
    color: #003A8F;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    background: #003A8F;
    color: #fff;
}
