/* Custom Styles for Header */
.hero {
    background-color: #f8f9fa;
    color: #333;
    border-bottom: 1px solid #ddd;
}

/* Card Styles */
.custom-dark-header {
    background-color: #343a40;
    color: #fff;
    padding: 20px;
}

.card {
    border-radius: 10px;
}

.card-body {
    font-size: 16px;
    color: #555;
    flex-grow: 1;
    /* Ensures body stretches */
}

.hover-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Icons */
i {
    color: #007bff;
}

/* Spacing */
.mt-2 {
    margin-top: 0.5rem;
}

.responsive-logo {
    height: auto;
    width: 25%;
}

@media (max-width: 768px) {
    .responsive-logo {
        width: 100%;
    }
}

.icon-circle {
    width: 60px;
    aspect-ratio: 1 / 1;
    /* Sikrer perfekt cirkel */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #123A5D;
    color: #333;
    box-sizing: border-box;
}

.icon-circle:hover {
    transform: scale(1.1);
}

.feature-item {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-white-custom {
    background-color: #fff !important;
    color: #123A5D !important;
    border: 1px solid #123A5D !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-white-custom:hover {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

/** Navbar **/
nav {
    background-color: #444 !important;
    color: white !important;
    padding: 10px;
    text-align: center;
    /* this alone won't center flex items */
}

nav .navbar-nav {
    margin: 0 auto;
    display: flex !important;
    justify-content: center !important;
}

nav a.nav-link {
    color: white !important;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a.nav-link:hover {
    text-decoration: underline;
    color: #ddd !important;
}

/* Dropdown styling */
nav .dropdown-menu {
    background-color: #444 !important;
    border: none;
}

nav .dropdown-item {
    color: white !important;
}

nav .dropdown-item:hover,
nav .dropdown-item:focus {
    background-color: #555 !important;
    color: #ddd !important;
}

nav .nav-link.dropdown-toggle::after {
    filter: invert(100%);
}

/** Navbar End **/


main {
    padding: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: static;
    bottom: 0;
    width: 100%;
}

.custom-dark-header {
    background-color: #343a40;
    color: white;
}

.btn-custom {
    background-color: #123A5D;
    color: #fff;
    border: none;
}

.btn-custom:hover {
    background-color: #0f2f4c;
    /* lidt mørkere nuance */
}

.card-header {
    background-color: #123A5DCC;
    color: white;
}