/* Generel styling */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 80px; /* Lidt mere plads til den nye header knap */
}

/* Top-bar / Navigation */
.top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between; /* Spreder elementerne ud: Logo venstre, knap højre */
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.top-bar nav ul li {
    margin: 0 10px;
}

.top-bar nav ul li a {
    font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
    text-decoration: none;
    color: #0056b3;
    font-weight: normal;
    padding: 5px 0;
    font-size: 0.95em;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.top-bar nav ul li a:hover,
.top-bar nav ul li a:focus {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
}

/* Styling specifikt til Book Tid knappen i menuen */
.top-bar nav ul li a.nav-btn {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    border-bottom: none; /* Fjerner understregning ved hover for knappen */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.top-bar nav ul li a.nav-btn:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    text-decoration: none;
    border-bottom: none;
}

/* Sektioner Generelt */
.content-section {
    padding: 60px 40px;
    min-height: auto;
    box-sizing: border-box;
}

h1, .content-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a73e8;
    font-weight: 500;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 35px;
    padding-top: 0;
    text-align: center;
}

/* RETTELSE: Alle sektioner er nu samlet her med hvid baggrund */
#krebs-zoneterapi, #priser, #andre-siger, #healing, #kontakt {
    background-color: #FFFFFF;
}

/* To-kolonne layout */
.two-column-layout {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.column {
    flex: 1;
}

.text-column > *:first-child {
    margin-top: 0;
}

#krebs-zoneterapi .text-column ul li strong,
#healing .text-column ul li strong {
    font-weight: bold;
}

.profile-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.content-section .text-column p.section-intro {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 30px;
    color: #454545;
}

.content-section .text-column h3 {
    font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
    font-weight: 700;
    font-size: 1.35em;
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 15px;
}
.content-section .text-column p.section-intro + h3 {
    margin-top: 0px;
}

.content-section::after {
    content: "";
    clear: both;
    display: table;
}

.content-section ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.content-section ul li {
    margin-bottom: 8px;
}

/* JUSTERINGER FOR HEALING SEKTIONEN */
#healing .two-column-layout {
    justify-content: center;
}

#healing .text-column {
    flex-grow: 0;
    flex-basis: auto;
    max-width: 700px;
    text-align: left;
}

#healing .text-column ul {
    padding-left: 20px;
}

/* STYLING FOR "ANDRE SIGER" AFSNIT */
.testimonial-prompt {
    font-size: 1em;
    color: #333;
    line-height: 1.7;
}

.testimonial-prompt a {
    color: #1a73e8;
    text-decoration: none;
}

.testimonial-prompt a:hover {
    text-decoration: underline;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 20px auto 0 auto;
}

.testimonial-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px 25px 25px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.07);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-item::before {
    content: '\201C';
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 5em;
    color: #d0d0d0;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 0;
    line-height: 0.8;
}

.testimonial-date {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.testimonial-quote-body {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-quote-body p.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial-quote-body p.testimonial-text:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
    color: #333;
    margin-top: auto;
    padding-top: 10px;
    position: relative;
    z-index: 1;
    font-size: 0.95em;
}

/* STYLING FOR PRISLISTE */
.price-list {
    max-width: 750px;
    margin: 30px auto;
    padding: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
}

.price-item:last-child {
    border-bottom: none;
}

.service-details {
    font-size: 1em;
    color: #333;
    padding-right: 15px;
    text-align: left;
}

.price-amount {
    font-size: 1em;
    font-weight: 700;
    color: #1a73e8;
    padding-left: 15px;
    white-space: nowrap;
    text-align: right;
}

/* CSS FOR BOOKING KNAP (Beholdt hvis den skal bruges andre steder, men ikke i menuen) */
.book-tid-knap-container {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.book-tid-knap {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-tid-knap:hover,
.book-tid-knap:focus {
    background-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.payment-logo-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.payment-logo {
    max-width: 120px;
    height: auto;
    vertical-align: middle;
}

/* STYLING FOR KONTAKTSEKTIONENS INDHOLD */
.contact-content-wrapper {
    max-width: 800px;
    margin: 20px auto 0 auto;
    text-align: center;
}

.address-info,
.contact-info {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info a {
    color: #1a73e8;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    width: 100%;
    max-width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px auto 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer (sidefod) */
footer {
    text-align: center;
    padding: 25px 20px;
    background-color: #343a40;
    color: #f8f9fa;
    font-size: 0.9em;
}

/* Responsivitet */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .top-bar nav ul {
        flex-wrap: wrap; 
        padding: 5px 0;
        justify-content: center; /* På mobil centrerer vi det hele igen for bedre plads */
    }

    .top-bar nav ul li {
        margin: 5px 10px;
    }
    
    /* Gør knappen lidt mindre på mobil */
    .top-bar nav ul li a.nav-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .two-column-layout {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    #krebs-zoneterapi .image-column {
        order: -1;
    }

    .profile-image {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }

    .column.image-column {
        min-height: unset;
    }

    .content-section {
        padding: 40px 20px;
    }

    h1, .content-section h2 {
        font-size: 1.9em;
        margin-bottom: 25px;
    }

    .content-section .text-column h3 {
        font-size: 1.25em;
        margin-top: 25px;
    }
    .content-section .text-column p.section-intro + h3 {
        margin-top: 20px;
    }

    .content-section .text-column p.section-intro {
        font-size: 1em;
    }

    .top-bar nav ul li a {
        font-size: 0.9em;
    }

    .testimonial-prompt {
        font-size: 0.95em;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-item::before {
        font-size: 4em;
        top: 8px;
        left: 8px;
    }

    .testimonial-date {
        font-size: 0.8em;
    }
    .testimonial-quote-body p.testimonial-text {
        font-size: 0.95em;
    }
    .testimonial-author {
        font-size: 0.9em;
    }

    .service-details {
        padding-right: 10px;
    }
    .price-amount {
        padding-left: 10px;
    }

    .payment-logo {
        max-width: 100px;
    }

    .contact-content-wrapper {
        max-width: 100%;
    }
    .map-container {
        height: 300px;
    }

    #healing .text-column {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
}