body {
    font-family: Arial, sans-serif;
	color: #606060;
    height: 100%;
	margin: 0;
	padding: 0;
    background: #f8f8f8;
	font-size: 1.5rem;
}

h1, h2, h3 {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #606060;
}

header {
    background: #C7C7C7;
    color: white;
	margin: 0;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}

.logo img {
	max-width: 500px;
	width: 100%;
	height: auto;
}
.hero {
    position: relative;
	background-image: url('bilder/flammor_1920x800.jpg');
	background-size: cover;
	background-position: center;
	height: 60vh;
	min-height: 400px;
	color: white;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero h1 {
	font-size: 3rem;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.6);
	color: white;
}

.hero p {
	font-size: 1,25rem;
	margin-top: 1rem;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.kategorier .grid {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    justify-content: center;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
}

.kontaktform {
    max-width: 500px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.kontaktform label {
    display: block;
    margin-top: 1rem;
}
.kontaktform input,
.kontaktform textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.kontaktform button {
    margin-top: 1rem;
    background: #388e3c;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 480px) {
	.logo {
		max-width: 400px;
		width: 100%;
	}
	nav a {
		font-size: 2.7rem;
}
}
