/* Globale Stilarter & Variabler */
:root {
    --bg-dark: #24201A;
    --bg-light: #E0E0E0;
    /* Betongrå */
    --accent-orange: #FF5500;
    --text-white: #F5F5F5;
    --text-black: #121212;

    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --gutter: 20px;
}

@font-face {
    font-family: 'Silver Forte Grunge';
    src: url('../assets/fonts/Silver Forte GrungeDEMO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Simple Grunge';
    src: url('../assets/fonts/Simple Grunge.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Knapper */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--accent-orange);
}

/* Hjælpeværktøjer */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Silver Forte Grunge', var(--font-heading);
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 10px;
    /* Fjernet mix-blend-mode for at sikre korrekt orange farve */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.section-desc {
    font-family: 'Simple Grunge', var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: #ccc;
}

/* Global Responsiv Typografi & Layout */
@media (max-width: 768px) {
    :root {
        --gutter: 15px;
        /* Mindre margin på mobil */
    }

    h1 {
        font-size: 2.5rem !important;
    }

    /* Overskriv specifikke store størrelser hvis nødvendigt */
    h2 {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
        /* Reducer vertikal polstring */
    }
}

/* Ekstra tilpasning til helt små mobiler */
@media (max-width: 480px) {
    :root {
        --gutter: 12px;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.8rem;
        /* Markant mindre for at undgå overflow */
        word-wrap: break-word;
        /* Sikrer at lange ord knækker */
    }

    .section-desc {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}