/* ----- GLOBALT DESIGN & VARIABLER (Ny Retning) ----- */
:root {
    --primary-accent: #D4AF37; /* En dæmpet, gylden accentfarve */
    --link-blue: #8892b0; /* En lysere, mere diskret blå til links */
    --dark-navy: #0C1F28;
    --slate-gray: #8892b0;
    --light-slate: #ccd6f6;
    --white: #FFFFFF;
    
    /* Nye skrifttyper */
    --font-serif-heading: 'Playfair Display', serif; /* Elegant serif til overskrifter */
    --font-sans-body: 'Inter', sans-serif; /* Beholder Inter til brødtekst for læsbarhed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-navy);
    color: var(--slate-gray);
    font-family: var(--font-sans-body);
    line-height: 1.7; /* Lidt mere luft mellem linjerne */
}

h1, h2, h3 {
    font-family: var(--font-serif-heading); /* Bruger den nye serif skrifttype */
    color: var(--light-slate);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 900px; /* Gør containeren lidt smallere for et mere fokuseret look */
    margin: 0 auto;
}

/* ----- HEADER & NAVIGATION ----- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #233554;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-family: var(--font-sans-body);
    font-weight: 600;
    font-size: 1.2rem; /* Lidt mere diskret logo-tekst */
    color: var(--light-slate);
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--slate-gray);
    font-family: var(--font-sans-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-accent); /* Hover effekt bruger nu accentfarven */
}

.button-nav {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-accent);
    border-radius: 4px;
    color: var(--primary-accent) !important;
}

.button-nav:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* ----- SEKTION 1: TOPBANNER (HERO) ----- */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 1), rgba(10, 25, 47, 0.6)); /* Gradient for en blødere bund */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem); /* Større, mere effektfuld overskrift */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem); /* Lidt større brødtekst */
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    color: var(--light-slate);
}

.button {
    display: inline-block;
    padding: 1rem 2.5rem; /* Lidt større knap */
    background-color: var(--primary-accent);
    color: var(--dark-navy); /* Mørk tekst for kontrast på den gyldne knap */
    font-family: var(--font-sans-body);
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-accent);
}

.button:hover {
    background-color: transparent;
    color: var(--primary-accent);
    transform: translateY(-3px);
}
/* ----- SEKTION 2: UDFORDRINGEN ----- */
.section-bg-alt {
    background-color: #112240; /* Giver sektionen en let anderledes baggrundsfarve */
}

#udfordringen {
    padding: 100px 0;
}

.intro-text {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--slate-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
}
/* ----- SEKTION 2: YDELSER & PRISER ----- */
#ydelser {
    background-color: var(--dark-navy);
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-accent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background-color: #112240; /* En anelse lysere end baggrunden */
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid #233554;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
}

.price-card.featured {
    border-color: var(--primary-accent);
    transform: scale(1.05); /* Fremhæver dette kort en smule */
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--light-slate);
}

.price-card .duration {
    font-family: var(--font-sans-body);
    color: var(--primary-accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.price-card .price {
    font-family: var(--font-serif-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.price-card .description {
    font-size: 0.9rem;
    color: var(--slate-gray);
    flex-grow: 1; /* Sørger for at kortene har samme højde */
}

.section-footnote {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

.section-footnote p {
    margin-bottom: 1rem;
}

.section-footnote strong {
    color: var(--light-slate);
}
/* ----- SEKTION 3: FAQ ----- */
.section-bg-alt {
    background-color: #112240; /* Samme farve som priskortene for variation */
}

#faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--dark-navy);
    border: 1px solid #233554;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.faq-item[open] {
    background-color: #112240;
}

.faq-question {
    padding: 20px 25px;
    font-family: var(--font-sans-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--light-slate);
    cursor: pointer;
    list-style: none; /* Fjerner standard trekant-ikon */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none; /* Fjerner standard trekant-ikon i Chrome/Safari */
}

/* Plus/minus ikon for at vise status */
.faq-question::after {
    content: '+';
    font-family: var(--font-serif-heading);
    font-size: 2rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−'; /* Minus-tegn når åben */
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: var(--slate-gray);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--primary-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--white);
}
/* ----- Logo Billede Styling ----- */
.logo img {
    height: 60px; /* Du kan justere denne værdi for at gøre logoet større/mindre */
    width: auto;
    display: block; /* Fjerner potentielt ekstra mellemrum under billedet */
}
/* ----- SEKTION 5: KONTAKT ----- */
#kontakt {
    padding: 100px 0;
    /* Vi genbruger ikke .section-bg-alt her for at skifte farve igen */
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--slate-gray);
    font-size: 1.1rem;
}

.contact-intro a {
    color: var(--primary-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 18px;
    background-color: #112240; 
    border: 1px solid #233554;
    border-radius: 6px;
    color: var(--light-slate);
    font-family: var(--font-sans-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

#contact-form button {
    width: 100%;
    border: 1px solid var(--primary-accent);
    cursor: pointer;
    font-size: 1.1rem;
}

/* Styling for statusbeskeder fra JavaScript */
#form-status {
    margin-top: 20px;
    text-align: center;
    min-height: 25px;
}

#form-status p {
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
}
.form-success {
    background-color: rgba(4, 170, 109, 0.1);
    border: 1px solid #04AA6D;
    color: #04AA6D;
}
.form-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #DC3545;
    color: #DC3545;
}
/* ----- SEKTION 6: FOOTER & UTILITIES ----- */
#footer {
    background-color: var(--dark-navy);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #233554;
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin: 0;
}

#back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-accent);
    color: var(--dark-navy);
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    text-decoration: none;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

#back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top-btn:hover {
    transform: translateY(-3px);
}