/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    padding: 0px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #fbbf24;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 80px);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-section {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #35465e 0%, #546886 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.image-container {
    margin-top: 40px;
    position: relative;
    display: inline-block;
}

.hero-image {
    max-width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dagbok-bilde img {
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.portrett img {
    max-width: 200px;
}

.contact_icon {
    margin-top: 0.5rem;
    font-size: 0;
}

.contact_icon img {
    width: 70px;
    height: 70px;
    border-radius: 30%;
    border: none;
    object-position: center;
    margin: 0.5rem;
}
.dagbok-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 80px);
}

.dagbok-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.dagbok-section {
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.dagbok-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #35465e 0%, #546886 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dagbok-section p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.dagbok-section h2 {
    border-top: #1f2937 1px solid;
}
.dagbok-section h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.dagbok-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.dagbok-image {
    max-width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dagbok-bilde img {
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dagbok-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mainstatus-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(93vh - 70px - 80px);
    margin-top: 70px;
    margin-bottom: 80px;
}

.velg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.velg-section {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.velg-title {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #35465e 0%, #546886 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.status-btn {
    padding: 20px 40px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #35465e 0%, #546886 100%);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(30, 20, 66, 0.15);
    transition: background 0.3s, transform 0.2s;
}

.status-btn:hover {
    background: linear-gradient(135deg, #5f7ea9 0%, #546886 100%);
    transform: translateY(-6px) scale(1.07);
}

.status-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.status-section {
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.status-title {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #35465e 0%, #546886 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-section p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    line-height: 1.8;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
}


.status-image {
    max-width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    font-size: 1rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .content-container {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}