﻿body {
    /* Grundlæggende styling */
    .main-nav

{
    background: #ffffff;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Blød skygge */
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.brand a {
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    color: #333;
    letter-spacing: -1px;
}

.magic-text {
    color: #ff4757; /* En flot rød/pink magi-farve */
    position: relative;
}

/* Menu links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

    .nav-links li a {
        padding: 10px 15px;
        text-decoration: none;
        color: #444;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
    }

        /* Hover effekt: Den "grafiske" detalje */
        .nav-links li a:hover {
            color: #ff4757;
            transform: translateY(-2px); /* Løfter teksten lidt */
        }

/* Login knappen som skiller sig ud */
.nav-login {
    background: #ff4757;
    color: white !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    margin-left: 20px;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

    .nav-login:hover {
        background: #e84118;
        box-shadow: 0 6px 15px rgba(255, 71, 87, 0.5);
    }

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    top: 40px;
}

    .dropdown-content a {
        color: #333;
        padding: 12px 16px;
        display: block;
        border: none !important;
    }

.dropdown:hover .dropdown-content {
    display: block;
}
}
