/*
Theme Name: Neon Tech Theme
Author: Din Kodpartner
Description: Ett mörkt, modernt tema med neon-effekter och glassmorphism.
Version: 2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;800&display=swap');

/* --- GRUNDINSTÄLLNINGAR --- */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: #ffffff; text-decoration: none; transition: 0.3s; }
a:hover { color: #ff6b00; }
h1, h2, h3, h4, h5, h6 { color: #ffffff; margin-top: 0; font-weight: 800; }
p { margin-bottom: 20px; }

/* --- NEON BAKGRUND (Syns på alla sidor) --- */
body::before {
    content: "";
    position: fixed;
    top: -20%; right: -10%;
    width: 80vw; height: 80vh;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: 20%; left: -20%;
    width: 140vw; height: 100vh;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(255, 107, 0, 0.6) 45%, rgba(255, 60, 0, 0.2) 60%, transparent 70%);
    transform: rotate(-25deg) scaleY(0.6);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* --- SIDHUVUD (Header) --- */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.8); /* Mörk bakgrund för läsbarhet */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo h1 { font-size: 1.5rem; margin: 0; text-transform: uppercase; letter-spacing: 2px; }
.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; }
.main-navigation a { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* --- INNEHÅLL (Container) --- */
/* Detta är nyckeln! Allt innehåll börjar 150px ner så det aldrig krockar med menyn */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 180px; /* Tillräckligt avstånd för header */
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100vh;
}

/* --- HERO (Startsidan) --- */
.hero-content {
    text-align: center;
    padding-top: 50px; /* Extra luft på startsidan */
}
.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

/* --- BOXAR --- */
.tech-grid {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}
.tech-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #ff6b00;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    border-radius: 12px;
}