/* ——— Almennt ——— */

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #0A3A5A 0%, #2F6F9E 40%, #8BC4E2 100%);
    background-attachment: fixed;
    color: white;
    text-align: center;
}

/* Korta‑áferð með blur */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('/images/world_map.png') center/cover no-repeat;
    opacity: 0.12;
    filter: blur(4px);
    z-index: -1;
}

/* ——— Header / Logo ——— */

header {
    padding: 60px 0 20px;
}

h1 {
    font-size: 64px;
    margin: 0;
    font-weight: 700;
    text-shadow:
        0 0 12px rgba(255,255,255,0.4),
        0 0 24px rgba(255,255,255,0.2);
}

h2 {
    font-size: 28px;
    margin: 10px 0;
    font-weight: 300;
    opacity: 0.9;
}

.subtext {
    font-size: 16px;
    opacity: 0.85;
    margin-top: 5px;
}

/* ——— Mynd sem linkar á /skokkid ——— */

.hero-image {
    width: 90%;
    max-width: 900px;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.skokk-link {
    display: inline-block;
    text-decoration: none;
}

/* ——— Síma‑aðlögun ——— */

@media (max-width: 600px) {
    h1 { font-size: 42px; }
    h2 { font-size: 20px; }
    .subtext { font-size: 14px; }
    .hero-image { width: 95%; }
}
.compass {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* N-örin */
.compass::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 6px 26px 6px;
    border-color: transparent transparent #E3D7B5 transparent;
}

/* N-stafurinn */
.compass::after {
    content: "N";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 1px;
}
.logo-image {
    height: 72px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 12px rgba(0,0,0,0.6));
}
