body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f0;
}

header {
    background-color: #1a472a;
    color: white;
    text-align: center;
    padding: 25px;
}

header h1 {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

header p {
    font-style: italic;
    opacity: 0.9;
}

nav {
    background-color: #2d5a3f;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
}

nav a:hover {
    background-color: #4a7c59;
}

nav a.active {
    background-color: #f5f5dc;
    color: #1a472a;
    font-weight: bold;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    font-family: Georgia, serif;
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

h3 {
    font-family: Georgia, serif;
    color: #1a472a;
    margin: 15px 0 10px;
}

.center {
    text-align: center;
    margin-bottom: 20px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(26,71,42,0.8), rgba(26,71,42,0.8)), 
                url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?w=1200');
    background-size: cover;
    color: white;
    border-radius: 8px;
    margin-bottom: 30px;
}

.hero h2 {
    color: white;
    font-size: 2rem;
}

.hero p {
    font-size: 1.1rem;
}

.flex-container {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.flex-container > section {
    flex: 2;
}

.flex-container > aside {
    flex: 1;
}

.news article {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.news h3 {
    color: #1a472a;
    margin-bottom: 5px;
}

.datum {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 8px;
}

aside section {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

aside h2 {
    font-size: 1.3rem;
    border-bottom: 2px solid #4a7c59;
    padding-bottom: 5px;
}

.weather iframe {
    border: none;
    width: 100%;
}

.small {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.info ul {
    list-style: none;
}

.info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.info li:last-child {
    border-bottom: none;
}

.kontakt {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.kontakt h2 {
    text-align: center;
    margin-bottom: 25px;
}

.kontakt-flex {
    display: flex;
    gap: 30px;
}

.kontakt-flex > div {
    flex: 1;
}

.kontakt-flex form {
    flex: 1;
    background: #f8f9f5;
    padding: 20px;
    border-radius: 8px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

input:focus, select:focus, textarea:focus {
    border-color: #4a7c59;
    outline: none;
}

button {
    background-color: #1a472a;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover {
    background-color: #2d5a3f;
}
.hall-knappar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.hall-knappar button {
    width: 40px;
    height: 40px;
    border: 2px solid #1a472a;
    background: white;
    color: #1a472a;
    font-weight: bold;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: 0.3s;
}

.hall-knappar button:hover {
    background: #4a7c59;
    color: white;
    transform: scale(1.1);
}

.hall-knappar button.aktiv {
    background: #1a472a;
    color: white;
}

.hall-visning {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    gap: 25px;
}

.hall-visning img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.hall-info {
    width: 50%;
}

.stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9f5;
    border-radius: 5px;
}

.stats p {
    margin: 0;
}

.tips {
    background: #f5f5dc;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.tips h4 {
    color: #1a472a;
    margin-bottom: 5px;
}

.karta, .vagbeskrivning {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.karta iframe {
    border-radius: 8px;
}

.vagbeskrivning ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.vagbeskrivning li {
    margin-bottom: 5px;
}

.parkering {
    background: #f5f5dc;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

footer {
    background-color: #1a472a;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 30px;
}

footer nav {
    background: none;
    margin-bottom: 10px;
}

footer a {
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }
    
    .kontakt-flex {
        flex-direction: column;
    }
    
    .hall-visning {
        flex-direction: column;
    }
    
    .hall-visning img,
    .hall-info {
        width: 100%;
    }
    
    .stats {
        flex-wrap: wrap;
    }
}
