/* ===== GRUND ===== */
:root {
    --primary: #ff8c00;
    --dark: #1b1b1b;
    --dark-2: #111;
    --light: #f4f4f4;
    --text: #222;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.8;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #222;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
    ),
    url("https://images.unsplash.com/photo-1581091215367-59ab6c63ad4a");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: auto;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 90px 60px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 110px;
}

/* ===== RUBRIKER ===== */
h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    border-left: 6px solid var(--primary);
    padding-left: 15px;
}

h6 { 
  display: block;
  font-size: 6em;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

/* ===== LISTOR ===== */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

ul li::before {
    content: "✔";
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: bold;
}

/* ===== KONTAKT ===== */
.contact {
    background: var(--dark);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.contact h2 {
    border: none;
    padding: 0;
}

.contact p {
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-2);
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* ===== MOBIL ===== */
@media (max-width: 800px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        padding: 50px 25px;
    }

    .hero h2 {
        font-size: 2rem;
    }
}
/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    color: #ddd;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #111;
    min-width: 160px;
    top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-radius: 6px;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #ddd;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #222;
}

.dropdown:hover .dropdown-content {
    display: block;
}

svg {
    background: #f8f8f8;
}

.rail {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shadow {
    stroke: rgba(0,0,0,0.15);
}

