/* ---------- RESET / GRUNNLEGGENDE ---------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #07111c;
    color: #f3f7fb;
    line-height: 1.5;
}

/* ---------- FELLES ---------- */

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- NAVBAR ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 17, 28, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #d6e2ee;
    font-size: 0.98rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: #12385c;
    color: #ffffff;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: #174a79;
    transform: translateY(-1px);
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(80, 140, 190, 0.18), transparent 38%),
        linear-gradient(180deg, #0a1726 0%, #0d2237 45%, #10304b 70%, #0b1b2d 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(120, 180, 220, 0.10), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(50, 110, 170, 0.14), transparent 30%);
}

.hero-waves {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    height: 260px;
}

.wave {
    position: absolute;
    left: -10%;
    width: 120%;
    border-radius: 45% 55% 0 0;
    filter: blur(2px);
}

.wave-1 {
    bottom: 0;
    height: 140px;
    background: rgba(25, 88, 140, 0.45);
    animation: waveMove1 12s ease-in-out infinite alternate;
}

.wave-2 {
    bottom: 35px;
    height: 120px;
    background: rgba(64, 145, 210, 0.22);
    animation: waveMove2 18s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 100px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(190, 220, 245, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #b8d7ef;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
    margin-bottom: 22px;
    color: #ffffff;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    max-width: 680px;
    color: #d4e4f0;
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 34px;
}

.hero-meta-item {
    min-width: 170px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-label {
    display: block;
    font-size: 0.85rem;
    color: #9db6ca;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.meta-value {
    display: block;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #1b5f95;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2474b4;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* ---------- INFO-SEKSJON ---------- */

.info-section {
    padding: 90px 0;
    background: #0b1622;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}

.section-kicker {
    color: #7fb7e0;
    margin-bottom: 14px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #ffffff;
}

.info-text p {
    color: #d2dee8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.info-card {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(20, 48, 72, 0.95), rgba(10, 27, 43, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.3rem;
}

.info-card ul {
    padding-left: 18px;
    color: #d7e6f2;
}

.info-card li + li {
    margin-top: 10px;
}

/* ---------- PLACEHOLDER ---------- */

.placeholder-section {
    padding: 70px 0;
    background: #09131d;
    color: #a9c1d4;
}

/* ---------- FOOTER ---------- */

.site-footer {
    padding: 32px 0 42px 0;
    background: #060d15;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    text-align: center;
    color: #9db1c1;
    font-size: 0.95rem;
}

.footer-content p + p {
    margin-top: 8px;
}

/* ---------- ANIMASJON ---------- */

@keyframes waveMove1 {
    0% {
        transform: translateX(0) translateY(0);
        border-radius: 42% 58% 0 0;
    }
    100% {
        transform: translateX(2%) translateY(-8px);
        border-radius: 50% 50% 0 0;
    }
}

@keyframes waveMove2 {
    0% {
        transform: translateX(0) translateY(0);
        border-radius: 55% 45% 0 0;
    }
    100% {
        transform: translateX(-2%) translateY(10px);
        border-radius: 48% 52% 0 0;
    }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 72px 0 140px 0;
    }

    .hero-meta {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .main-nav {
        display: none;
    }

    .logo span {
        font-size: 0.95rem;
    }
}


.hero-carousel-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;

    filter: brightness(0.40) saturate(0.85) contrast(0.9);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
    linear-gradient(
        180deg,
        rgba(5, 18, 32, 0.65) 0%,
        rgba(5, 18, 32, 0.45) 40%,
        rgba(5, 18, 32, 0.75) 100%
    ),
    linear-gradient(
        135deg,
        rgba(20, 90, 140, 0.15),
        rgba(255, 255, 255, 0.08)
    );
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-carousel .carousel-indicators {
    z-index: 4;
    bottom: 24px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    z-index: 4;
}

@media (max-width: 768px) {
    .hero-carousel-section {
    min-height: 85vh;
    }

    .hero-carousel .carousel-item img {
    height: 85vh;
    }
}


