@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- BASE --- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #FFEFF5;
    color: #7A5A68;
    line-height: 1.7;
}

h1, h2, h3 {
    color: #D98FAE;
    margin-top: 0;
}

img {
    max-width: 100%;
    display: block;
}

/* --- HEADER --- */
header {
    background-color: #FDE1EC;
    padding: 20px 15px;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo {
    height: 100px;
    width: auto;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link h1,
.logo-link h2 {
    margin: 0;
}

/* --- NAVIGATION --- */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
}

nav ul li {
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #7A5A68;
    font-size: 1.05rem;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #D98FAE;
}

/* --- CONTENT --- */
section {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 30px auto;
    background-color: #FFF7FB;
    border-radius: 12px;
}

/* --- FORSIDE BILLEDER --- */
.forside-billeder {
    max-width: 900px;
    margin: 50px auto 30px auto;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
}

.billede-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.billede-grid img {
    width: 45%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(217, 143, 174, 0.15);
}

/* --- GALLERI --- */
.billeder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
}

.billeder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(217, 143, 174, 0.25);
}

/* --- BOOKING --- */
.planway-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

/* --- MAP --- */
.map-container {
    width: 100%;
    max-width: 500px;
    height: 350px;
    margin: 20px auto 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(217, 143, 174, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* --- TRUSTPILOT --- */
.anmeldelser-slider-section {
    max-width: 700px;
    margin: 50px auto 30px auto;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
}

.trustpilot-intro {
    margin-bottom: 20px;
}

.trustpilot-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.trustpilot-widget {
    width: 100%;
}

/* --- KONTAKT --- */
.kontakt-liste {
    padding-left: 20px;
}

.kontakt-liste li {
    margin-bottom: 10px;
}

.kontakt-liste a {
    color: #D98FAE;
    text-decoration: none;
}

.kontakt-liste a:hover {
    text-decoration: underline;
}

/* --- PRISLISTE --- */
.prisliste {
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding: 30px 25px;
}

.prisliste h1 {
    text-align: center;
    margin-bottom: 10px;
}

.prisliste p {
    text-align: center;
    margin-bottom: 25px;
}

.prisliste-tabel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pris-kategori {
    margin: 35px 0 15px;
    font-size: 1.4rem;
    text-align: left;
    color: #D98FAE;
    border-bottom: 2px solid #F3D3DF;
    padding-bottom: 5px;
}

.pris-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #F3D3DF;
    font-size: 1rem;
}

.pris-item span:first-child {
    flex: 1;
    white-space: normal;
}

.pris-item span:last-child {
    white-space: nowrap;
    font-weight: 600;
    color: #7A5A68;
}

.pris-note {
    margin: 5px 0 0;
    font-size: 0.95rem;
    font-style: italic;
    text-align: left;
}

/* --- FOOTER --- */
footer {
    background-color: #FDE1EC;
    text-align: center;
    padding: 15px;
    color: #7A5A68;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    header {
        padding: 18px 12px;
    }

    .logo {
        height: 90px;
    }

    .logo-link h2 {
        font-size: 2rem;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        display: block;
        margin: 0;
    }

    nav a {
        font-size: 1rem;
    }

    section {
        padding: 25px 20px;
        margin: 0 12px 20px 12px;
    }

    .billede-grid img {
        width: 100%;
        max-width: 100%;
    }

    .billeder {
        grid-template-columns: 1fr;
    }

    .billeder img {
        height: auto;
    }

    .map-container {
        width: 100%;
        height: 300px;
    }

    .anmeldelser-slider-section {
        padding: 25px 15px;
    }

    .pris-item {
        font-size: 0.95rem;
    }
}