/* --- Generel Opsætning (Reset & Fonts) --- */
:root {
    --primary-blue: #0F172A; /* Meget mørk blå (Premium look) */
    --accent-blue: #3B82F6;  /* Frisk blå til knapper/links */
    --bg-light: #F8FAFC;     /* Kølig meget lys grå */
    --text-dark: #1E293B;    /* Mørkegrå tekst */
    --text-light: #F1F5F9;   /* Hvidlig tekst */
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased; /* Gør skriften skarp på Mac/iPhone */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Sikrer at footer altid skubbes ned hvis siden er kort */
}

/* --- Navigation --- */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Hero Sektion (Billede) --- */
.hero {
    height: 90vh; /* Fylder 90% af skærmhøjden */
    /* Her indlæses billedet med et mørkt filter over */
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.7)), url('images/bilbob-header.jpg');
    background-size: cover; /* Sikrer at billedet altid dækker hele området */
    
    /* VIGTIGT: Låser billedet til toppen så hovedet kommer med på mobil */
    background-position: top center; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-weight: 300;
    opacity: 0.9;
}

/* Knap design */
.btn {
    display: inline-block;
    background-color: var(--accent-blue);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px; /* Let afrundede hjørner */
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #2563EB; /* Lidt mørkere ved hover */
}

/* --- Generelle Sektioner --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

/* --- Info Sektion --- */
.info-section {
    background-color: white;
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* --- Kontakt Sektion --- */
.contact-section {
    background-color: var(--bg-light);
    text-align: center;
    border-top: 1px solid #E2E8F0;
}

.contact-card {
    background: white;
    padding: 40px;
    margin-top: 30px;
    border-radius: 8px; /* Bløde hjørner */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Let skygge */
    display: inline-block;
    min-width: 300px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.contact-card a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--primary-blue);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-blue);
    color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    font-size: 0.9rem;
    width: 100%;
    
    /* NYT: Flexbox sikrer at teksten altid er centreret */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer p {
    margin: 0; /* Fjerner evt. standard margin der kan skubbe teksten */
}

/* --- Mobil Tilpasning --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 20px;
    }
}