/* --- BAS --- */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background: #FAF8F4;
    color: #4A443C;
}

/* --- HEADER --- */
header {
    background: #F5EFE6;
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0;
}

/* --- NAV --- */
nav {
    background: #A8B89A;
    text-align: center;
    padding: 10px;
}

nav a {
    color: white;
    padding: 12px 18px;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 999px;
    transition: 0.3s;
}

nav a:hover {
    background: #8FA082;
}

/* --- CONTENT --- */
main {
    max-width: 1100px;
    margin: auto;
}

.content {
    background: white;
    padding: 40px;
    margin: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* --- RUBRIKER --- */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #5C5248;
    border: none;
}

/* --- TEXT --- */
p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- BILDER --- */
img {
    max-width: 100%;
    border-radius: 20px;
}

/* --- FORMULÄR --- */
textarea, input, button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

/* --- KNAPPAR --- */
button {
    background: #C97B63;
    color: white;
    border: none;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.2s;
}

button:hover {
    background: #b96a53;
}

/* --- LISTOR / KORT --- */
ul li {
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #F5EFE6;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- FOOTER --- */
footer {
    background: #A8B89A;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

/* --- MOBIL --- */
@media screen and (max-width: 768px) {
    .content {
        padding: 20px;
        margin: 20px 10px;
    }

    header h1 {
        font-size: 2rem;
    }
}
.hero-header {
    height: 200px; /* fast liten höjd */
    background: url('images/start.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-overlay h1 {
    font-size: 2rem;
}

.hero-overlay h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-family: 'Playfair Display', serif;
}

.hero-overlay p {
    font-size: 1.3rem;
    margin: 15px 0;
}

.hero-btn {
    background: #C97B63;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
}
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    padding: 15px;
    border: none;
    background: #F5EFE6;
    border-radius: 12px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    color: #4A443C; /* 👈 mörk text */
}
.faq-question:hover {
    background: #e9e2d8;
}
.faq-answer {
    display: none;
    padding: 15px;
}
/* --- LITEN HEADER --- */
.small-header {
    background: #F5EFE6;
    padding: 20px;
    text-align: center;
}

.small-header h1 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

/* Ta bort hero-overlay styling på små sidor */
.small-header .hero-overlay {
    color: #4A443C;
}