﻿/* ------------------------------------------------------------
   NAVBAR (fuld bredde + typografi)
   ------------------------------------------------------------ */

.dse-navbar {
    /* match "web"-look: ren, rolig, tydelig typografi */
    min-height: 72px;
}

.dse-navbar-inner {
    /* fuld bredde, men stadig en pæn max-bredde på store skærme */
    max-width: 1480px;
    margin: 0 auto;
}

.dse-navbar-logo {
    height: 44px;
    width: auto;
}

.dse-navbar-links .nav-link {
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .2px;
    color: #0f172a;
    padding: .85rem .95rem;
}

.dse-navbar-links .nav-link:hover,
.dse-navbar-links .nav-link:focus {
    color: #0d6efd;
}

.dse-navbar-actions .btn {
    font-weight: 600;
    padding: .45rem 1.0rem;
}

@media (max-width: 991.98px) {
    .dse-navbar-logo { height: 40px; }
}


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.dse-hero-spot {
    background: rgba(15, 23, 42, 0.35); /* MEGET mere transparent */
    border-radius: 24px;
    padding: 3rem 2.5rem;
    /* stadig lidt depth */
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    /* let blur – ikke glas, bare blødhed */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.dse-hero-title {
    color: #ffffff;
    margin-bottom: .5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.dse-hero-subtitle {
    color: rgba(255,255,255,.9);
}



/* HERO: stabil højde + undgå at billedet klemmes */
.hero-section {
    min-height: 100vh; /* du har min-vh-100 i HTML - ok at gentage her */
    position: relative;
}

/* Sørg for at baggrundslaget fylder hele heroen */
.hero-bg {
    position: absolute;
    inset: 0; /* top/right/bottom/left: 0 */
}

/* VIGTIGT: gør billedet proportionalt og beskær i stedet for at klemme */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* <-- det der fikser klemning */
    object-position: center; /* kan ændres til fx 50% 30% hvis motivet skal op */
    display: block;
}

/* Gradient overlay (justér efter behov) */
.hero-gradient-overlay {
    background: linear-gradient( 90deg, rgba(10, 56, 120, 0.85) 0%, rgba(10, 56, 120, 0.55) 40%, rgba(10, 56, 120, 0.15) 70%, rgba(10, 56, 120, 0.00) 100% );
}

/* Mobil: ofte vil man gerne "løfte" motivet lidt */
@media (max-width: 768px) {
    .hero-img {
        object-position: 50% 35%;
    }
}










.evt-nametag {
    width: 100%;
    max-width: 320px;
}

@media (min-width: 992px) {
    .evt-nametag {
        width: calc(25% - 0.75rem);
        max-width: none;
    }
}


.evt-nametag-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-left: 6px solid rgba(13,110,253,.45); /* Bootstrap primary-ish */
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

    .evt-nametag-card .company {
        font-size: .95rem;
        letter-spacing: .2px;
    }

    .evt-nametag-card .name {
        font-size: 1.05rem;
        font-weight: 700;
    }

    .evt-nametag-card .title {
        font-size: .85rem;
    }



.evt-table th,
.evt-table td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.admin-newsletters-wrap {
    width: 100%;
    max-width: 3000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}












.Dashboard img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    background: #f2f4f3;
}

.Dashboard {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0px 1.5rem 3rem -.75rem rgba(0,0,0,0.25);
    border-radius: 1rem;
    overflow: hidden;
}









