
body {
    background-color: #121212;
    color: #f2f2f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2 {
    color: #e60000;
}

a {
    text-decoration: none;
}

.navbar {
    background-color: #0d0d0d;
    border-bottom: 2px solid #e60000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
    z-index: 1000;
    position: relative;
}

.navbar-brand img {
    border-radius: 6px;
    margin-right: 50px;
}

.navbar-nav .nav-link {
    color: #ddd;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ff3c3c;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    background-color: #e60000;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 50%;
}

.forside {
    position: relative;
    height: 100vh;
    padding: 1rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
                url('../static/unnamed.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff3c3c;
}

.hero-text p {
    font-size: 1.25rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.hero-text .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.hero-text .btn-danger:hover {
    background-color: #b30000;
}

.hero-text .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

.page-content {
    min-height: 70vh;
    padding: 2rem 0;
}

.gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.sponsor-thumb {
    max-height: 300px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}

.sponsor-thumb:hover {
    transform: scale(1.03);
}

footer {
    background-color: #000;
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

footer img {
    max-height: 40px;
    margin-bottom: 1rem;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: #ffc107;
    text-decoration: underline;
}

.cookie-banner button {
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .forside {
        height: 60vh;
    }

    .btn-call-sticky {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.lead {
  color: #dddddd; /* lidt lysere end grå */
}
