/* custom.css - Responsivt PlainDisplay Design med logo-billede, hero-billede og FontAwesome 6.x ikoner */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #333333;
    font-family: sans-serif;
    font-size: 11pt;
    font-weight: 300;
    color: #656565;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
    font-weight: 700;
}

h1 {
    font-size: 2.7em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.2em;
}

p, ol, ul {
    margin-top: 0;
}

ol, ul {
    padding: 0;
    list-style: none;
}

p {
    line-height: 180%;
}

a {
    color: #0000FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #009E2D;
}

#page a, #banner a {
    color: #081430;
}

.container {
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    width: 90%;
}

/* Image Style */
.image {
    display: inline-block;
    transition: transform 0.3s ease;
}

.image img {
    display: block;
    width: 100%;
}

.image:hover {
    transform: scale(1.05);
}

.image-full {
    display: block;
    width: 100%;
    margin: 0 0 2em 0;
}

.image-left {
    float: left;
    margin: 0 2em 2em 0;
}

.image-centered {
    display: block;
    margin: 0 0 2em 0;
}

.image-centered img {
    margin: 0 auto;
    width: auto;
}

/* Button Style */
.button {
    display: inline-block;
    padding: 10px 2em;
    background: linear-gradient(to bottom, #00b33c, #009E2D);
    height: 50px;
    line-height: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1em;
    color: #FFF;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.button:hover {
    background: linear-gradient(to bottom, #00cc44, #00b33c);
    transform: translateY(-2px);
}

.button i {
    margin-right: 0.5em;
    display: inline-block;
}

/* Input Group Style */
.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.input-group input[type="text"] {
    width: 100%;
    height: 50px;
    padding: 10px 10px 10px 40px;
    margin: 0 0 10px 0;
    border: 1px solid #ccc;
    background: linear-gradient(to bottom, #f9f9f9, #e0e0e0);
    font-family: sans-serif;
    font-size: 1em;
    color: #333;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.input-group input[type="text"]:focus {
    border-color: #0000FF;
    box-shadow: 0 3px 8px rgba(0,0,255,0.2);
    outline: none;
}

.input-group input[type="text"]::placeholder {
    color: #6F6F6F;
}

.input-group input[type="text"]::before {
    content: "\f002";
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6F6F6F;
    font-size: 1em;
    z-index: 1;
}

/* Scan Features Container */
.scan-features {
    background: #e8e8e8;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2em;
    margin-bottom: 3em;
}

/* Scan List Style */
.scan-list {
    margin: 0;
    padding: 0;
}

.scan-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5em;
}

.scan-list li a {
    color: #081430;
    text-decoration: none;
}

.scan-list li a:hover {
    color: #009E2D;
    text-decoration: underline;
}

.scan-list li i {
    margin-right: 1em;
    color: #009E2D;
    font-size: 1.5em;
    line-height: 1.5;
}

.scan-list li h3 {
    margin-bottom: 0.5em;
    font-size: 1.2em !important;
}

.scan-list li p {
    margin: 0;
    color: #656565;
}

/* Recent Scans Container */
.recent-scans {
    background: #e8e8e8;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2em;
    margin-bottom: 3em;
}

/* Recent List Style */
.recent-list {
    margin: 0;
    padding: 0;
}

.recent-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.recent-list li a {
    display: flex;
    align-items: center;
    color: #081430;
    text-decoration: none;
}

.recent-list li a:hover {
    color: #009E2D;
}

.recent-list li i {
    margin-right: 0.5em;
    color: #009E2D;
    font-size: 1.2em;
}

.recent-list li i:last-child {
    margin-left: 0.5em;
    margin-right: 0;
}

/* Security Details Container */
.security-details {
    margin-bottom: 3em;
}

.detail-section {
    background: #e8e8e8;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2em;
    margin-bottom: 1.5em;
}

.detail-section h2 {
    color: #081430;
    margin-bottom: 1em;
}

.detail-section p {
    color: #656565;
    margin-bottom: 1em;
}

.detail-section ul {
    list-style: disc;
    padding-left: 2em;
    color: #656565;
}

.detail-section ul li {
    margin-bottom: 0.5em;
}

/* Score Container */
.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    padding: 3em 2em 2em 2em;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 2em 0;
    transition: box-shadow 0.3s ease;
}

.circle-svg {
    width: 200px;
    height: 200px;
    margin-bottom: 1em;
}

.circle-bg {
    fill: none;
    stroke: #081430;
    stroke-width: 5;
}

.circle-progress {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.5s ease, stroke 0.5s ease;
}

.circle-text {
    font-size: 24px;
    font-weight: 700;
    fill: #081430;
    text-anchor: middle;
    dominant-baseline: middle;
}

.score-text {
    font-size: 1.2em;
    color: #081430;
    margin: 0.5em 0 1em 0;
    font-weight: 700;
}

.issues {
    width: 100%;
    text-align: left;
}

.issues p {
    color: #656565;
    margin-bottom: 0.5em;
}

.issues ul {
    padding-left: 1.5em;
    list-style: disc;
}

.issues ul li {
    color: #656565;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}

.issues ul li i {
    margin-left: 0.5em;
    color: #009E2D;
}

/* Debug Container */
.debug-container {
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2em;
    margin: 2em 0;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.debug-container:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.debug-container h3 {
    color: #081430;
    margin-bottom: 1em;
}

.debug-container p {
    color: #656565;
    margin-bottom: 0.5em;
}

/* Privacy Container */
.privacy-container {
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2em;
    margin: 2em 0;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.privacy-container:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.privacy-section {
    margin-bottom: 2em;
}

.privacy-section h3 {
    color: #081430;
    font-size: 1.4em;
    margin-bottom: 1em;
}

.privacy-section p {
    color: #656565;
    line-height: 1.8;
    margin-bottom: 1em;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.privacy-section ul li {
    color: #656565;
    margin-bottom: 0.5em;
}

.privacy-section a {
    color: #081430;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #009E2D;
}

/* Recommended Container */
.recommended-container {
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2em;
    margin: 2em 0;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.recommended-container:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.intro-section, .disclaimer-section {
    margin-bottom: 2em;
}

.intro-section h3, .disclaimer-section h3 {
    color: #081430;
    font-size: 1.4em;
    margin-bottom: 1em;
}

.intro-section p, .disclaimer-section p {
    color: #656565;
    line-height: 1.8;
    margin-bottom: 1em;
}

.recommended-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.website-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 1em;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.website-item:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.website-item a {
    color: #081430;
    text-decoration: none;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.website-item a:hover {
    color: #009E2D;
    text-decoration: underline;
}

.website-item p {
    color: #656565;
    font-size: 0.95em;
    margin-top: 0.5em;
}

/* Badge Instructions */
.badge-instructions {
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2em;
    margin: 2em 0;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.badge-instructions:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.badge-instructions h3 {
    color: #081430;
    font-size: 1.4em;
    margin-bottom: 1em;
}

.badge-instructions p {
    color: #656565;
    line-height: 1.8;
    margin-bottom: 1em;
}

.badge-instructions ol {
    list-style: decimal;
    padding-left: 1.5em;
    color: #656565;
    margin-bottom: 1em;
}

.badge-instructions ol li {
    margin-bottom: 0.5em;
}

.badge-instructions a {
    color: #081430;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.badge-instructions a:hover {
    color: #009E2D;
}

/* Badge Container */
.badge-container {
    width: 100%;
    margin: 2em 0;
    padding: 2em;
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.badge-container:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.badge-container h3 {
    color: #081430;
    font-size: 1.4em;
    margin-bottom: 1em;
}

.badge-container .badge-image {
    margin-bottom: 1em;
}

.badge-container .badge-image img {
    max-width: 100%;
    height: auto;
}

.badge-container p {
    color: #656565;
    margin-bottom: 0.5em;
}

.badge-container textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 11pt;
    resize: vertical;
}

/* Box */
.box {
    padding: 3em 2em 2em 2em;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    background: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.box:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Form Elements */
input, button, textarea {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    font-family: sans-serif;
    font-size: 11pt;
}

button {
    background: linear-gradient(to bottom, #00b33c, #009E2D);
    color: #FFF;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(to bottom, #00cc44, #00b33c);
}

textarea {
    width: 100%;
    height: 100px;
}

/* FontAwesome Adjustments */
.fa, .fa-solid {
    text-decoration: none;
    margin-right: 5px;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-size: 1.25em !important;
    line-height: 1 !important;
    color: inherit !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa:before, .fa-solid:before {
    display: inline-block !important;
    font-style: normal !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

/* To Top Button */
.to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: #081430;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.to-top-btn:hover {
    background: #009E2D;
}

.to-top-btn i {
    font-size: 1.5em;
}

/* Section Divider */
.section-divider {
    border: none;
    border-bottom: 1px solid #ccc;
    margin: 2em 0;
}

/* Heading Titles */
.title {
    margin-bottom: 3em;
    text-align: center;
}

.title h1, .title h2 {
    text-transform: uppercase;
    color: #081430;
}

.title .byline {
    font-size: 1.7em;
    color: #6F6F6F;
}

/* Column Styles */
.boxA, .boxB, .boxC, .box1, .box2, .box3, .box4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.boxA, .boxB, .boxC {
    width: 32%;
}

.box1, .box2, .box3, .box4 {
    width: 23%;
}

#page > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Wrapper */
#wrapper {
    background: #FFF;
}

/* Header */
#header-wrapper {
    background: #081430;
}

#header {
    position: relative;
    padding: 3em 0;
}

/* Logo */
#logo {
    position: absolute;
    top: 1em;
    left: 0;
}

#logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

#logo a {
    text-decoration: none;
}

/* Menu */
#menu {
    position: absolute;
    top: 2em;
    right: 0;
}

#menu ul {
    display: flex;
    margin: 0;
}

#menu li {
    text-align: center;
}

#menu li a, #menu li span {
    padding: 1em 1.5em;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    color: #FFF;
    transition: background 0.3s ease;
}

#menu li:hover a, #menu li.active a, #menu li.active span {
    background: #00b33c;
}

#menu .current_page_item a {
    background: #009E2D;
    color: #FFF;
}

.menu-toggle {
    display: none;
    color: #FFF;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    top: 1em;
    right: 1em;
}

/* Banner */
#banner {
    overflow: hidden;
    padding: 7em 0 5em 0;
    background: url('https://24i.dk/images/hero.webp') no-repeat center center/cover;
    text-align: center;
    color: rgba(255,255,255,.8);
}

#banner .title {
    margin-bottom: 1em;
}

#banner .title h1 {
    color: #FFF;
}

#banner .title .byline {
    color: rgba(255,255,255,.6);
}

#banner .button {
    margin-top: 3em;
}

/* Page */
#page {
    padding: 5em 0;
    background: #fff;
}

#page .button {
    margin-top: 2em;
}

/* Footer */
#copyright {
    overflow: hidden;
    padding: 5em 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#copyright p {
    font-size: 1em;
    margin-bottom: 1em;
}

#copyright a {
    color: rgba(255,255,255,0.8);
}

#copyright .contact {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1em;
}

#copyright .contact li a {
    color: #FFF;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

#copyright .contact li a i {
    margin-right: 0.5em;
}

#copyright .contact li a:before {
    background: #3f3f3f;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
}

/* Featured */
#featured {
    overflow: hidden;
    padding: 5em 0;
    background: #009E2D;
    color: rgba(255,255,255,.8);
    text-align: center;
}

#featured a {
    color: rgba(255,255,255,1);
}

#featured .button {
    background: #FFF;
    margin-top: 3em;
    font-size: 1em;
    color: #009E2D;
}

#featured .title h1, #featured .title h2 {
    color: #081430;
}

#featured .title .byline {
    color: rgba(255,255,255,.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .boxA, .boxB, .boxC {
        width: 48%;
    }
    .box1, .box2, .box3, .box4 {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    #logo, #menu {
        position: static;
    }

    #logo {
        text-align: center;
        margin-bottom: 1em;
    }

    #logo img {
        max-width: 100px;
    }

    #header {
        padding: 1em 0;
        text-align: center;
    }

    #menu ul {
        display: none;
        flex-direction: column;
        background: #333333;
        padding: 1em 0;
    }

    #menu ul.active {
        display: flex;
    }

    #menu li {
        margin-bottom: 10px;
    }

    #menu li a, #menu li span {
        padding: 0.5em 1em;
        font-size: 1em;
    }

    .menu-toggle {
        display: block;
    }

    #banner {
        padding: 3em 0;
    }

    #banner .title h1 {
        font-size: 2em;
    }

    #banner .title .byline {
        font-size: 1.2em;
    }

    .boxA, .boxB, .boxC, .box1, .box2, .box3, .box4 {
        width: 100%;
    }

    #page {
        padding: 2em 0;
    }

    .title h1, .title h2 {
        font-size: 2em;
    }

    .title .byline {
        font-size: 1.2em;
    }

    #copyright .contact {
        flex-direction: column;
        gap: 5px;
    }

    .input-group input[type="text"], .input-group .button {
        max-width: 100%;
    }

    .scan-features, .recent-scans, .detail-section {
        padding: 1em;
    }

    .scan-list li, .recent-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .scan-list li i, .recent-list li i {
        margin-right: 0;
        margin-bottom: 0.5em;
    }

    .to-top-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .to-top-btn i {
        font-size: 1.2em;
    }

    .circle-svg {
        width: 150px;
        height: 150px;
    }

    .circle-text {
        font-size: 18px;
    }

    .score-text {
        font-size: 1em;
    }

    .score-container {
        padding: 1.5em;
    }

    .debug-container {
        padding: 1.5em;
    }

    .privacy-container {
        padding: 1.5em;
    }

    .privacy-section h3 {
        font-size: 1.2em;
    }

    .privacy-section p {
        font-size: 0.95em;
    }

    .recommended-container {
        padding: 1.5em;
    }

    .intro-section h3, .disclaimer-section h3 {
        font-size: 1.2em;
    }

    .intro-section p, .disclaimer-section p {
        font-size: 0.95em;
    }

    .website-item {
        padding: 0.75em;
    }

    .website-item a {
        font-size: 1em;
    }

    .badge-instructions {
        padding: 1.5em;
    }

    .badge-instructions h3 {
        font-size: 1.2em;
    }

    .badge-instructions p {
        font-size: 0.95em;
    }

    .badge-container {
        padding: 1.5em;
    }

    .badge-container h3 {
        font-size: 1.2em;
    }

    .badge-container .badge-image img {
        max-width: 150px;
    }
}