/* Grundläggande stilar för häckklippning */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

/* Behållare för häckklippningsinnehåll */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Huvudnavigering för trädgårdstjänster */
header {
    background: linear-gradient(135deg, #f5f5dc 0%, #d4e6d4 100%);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo för häckservice */
.logo {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #4a6741;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #8fbc8f;
    border-radius: 5px;
    background: white;
}

/* Navigation för trädgårdsarbete */
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

nav li a {
    display: block;
    padding: 10px 20px;
    background: #8fbc8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

nav li a:hover {
    background: #4a6741;
    transform: translateY(-2px);
}

/* Huvudbild för häckklippningstjänst */
.hero-image {
    width: 100%;
    max-width: 1920px;
    height: 400px;
    background: linear-gradient(135deg, #8fbc8f 0%, #d4e6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.hero-image.collapsed {
    display: none;
}

/* CTA-knappar för offertförfrågan */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff8c00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    margin: 20px 0;
    text-align: center;
}

.cta-button:hover {
    background: #ff7700;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,140,0,0.3);
}

/* Innehållssektion för häckbeskrivning */
.content-section {
    padding: 40px 0;
    background: white;
}

.content-section:nth-child(even) {
    background: #fafafa;
}

/* Rubriker för trädgårdsservice */
h1 {
    color: #4a6741;
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    color: #4a6741;
    font-size: 28px;
    margin: 30px 0 15px;
}

h3 {
    color: #4a6741;
    font-size: 22px;
    margin: 20px 0 10px;
}

/* Textformatering för häckinformation */
p {
    margin-bottom: 15px;
    color: #555;
}

/* Listor för häcktyper */
ul.hacktyper-lista, ol.klippningstips {
    margin: 20px 0 20px 40px;
}

ul.hacktyper-lista li, ol.klippningstips li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Tabell för häckpriser */
.pris-tabell {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pris-tabell th {
    background: #8fbc8f;
    color: white;
    padding: 15px;
    text-align: left;
}

.pris-tabell td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.pris-tabell tr:hover {
    background: #f5f5dc;
}

/* Formulär för offertbegäran */
.offert-formular {
    background: #f5f5dc;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-grupp {
    margin-bottom: 20px;
}

.form-grupp label {
    display: block;
    margin-bottom: 5px;
    color: #4a6741;
    font-weight: bold;
}

.form-grupp input,
.form-grupp textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #8fbc8f;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-grupp input:focus,
.form-grupp textarea:focus {
    border-color: #4a6741;
    outline: none;
}

/* Spam-skydd för häckklippningsformulär */
.spam-skydd {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

/* Områdeslista för trädgårdstjänster */
.omraden-container {
    margin: 40px 0;
    padding: 30px;
    background: #fafafa;
    border-radius: 10px;
}

.omraden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

/* Footer för häckservice */
footer {
    background: #4a6741;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

footer a {
    color: #8fbc8f;
    text-decoration: none;
}

footer a:hover {
    color: #d4e6d4;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* Mobilanpassning för häckklippning */
@media (max-width: 768px) {
    .hero-image {
        height: 200px;
        font-size: 28px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav li a {
        width: 100%;
        text-align: center;
    }
    
    .pris-tabell {
        font-size: 14sadx;
    }
    
    .pris-tabell th,
    .pris-tabell td {
        padding: 8px;
    }
    
    .omraden-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Subheader-bilder för trädgård */
.subheader-bild {
    width: 100%;
    max-width: 800px;
    height: 200px;
    background: linear-gradient(45deg, #d4e6d4 0%, #8fbc8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 30px auto;
    border-radius: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Extra stilar för bättre läsbarhet */
.info-box {
    background: #e8f5e8;
    border-left: 4px solid #8fbc8f;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.breadcrumb {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #8fbc8f;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Sitemap-stilar för häckklippning */
.sitemap-container {
    padding: 40px 0;
}

.sitemap-lista {
    list-style: none;
    padding-left: 0;
}

.sitemap-lista li {
    margin-bottom: 10px;
}

.sitemap-lista a {
    color: #4a6741;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.sitemap-lista a:hover {
    color: #8fbc8f;
    text-decoration: underline;
}

/* Felhantering för 404 */
.error-page {
    text-align: center;
    padding: 100px 20px;
}

.error-page h1 {
    font-size: 72px;
    color: #8fbc8f;
}

/* Intern länkning för häcktjänster */
.intern-lank {
    color: #4a6741;
    text-decoration: underline;
    transition: color 0.3s;
}

.intern-lank:hover {
    color: #8fbc8f;
}