/* Gräsklippning Malmö - Huvudstilar */
* {
    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: #fafafa;
}

/* Gräsmatta-header styling */
.grasmatta-header {
    background: linear-gradient(135deg, #8BC34A 0%, #CDDC39 100%);
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.grasklipp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo med gräs-tema */
.tradgard-logo {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
    padding-left: 45px;
}

.tradgard-logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px #8BC34A;
}

.tradgard-logo::after {
    content: '⚘';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #8BC34A;
}

/* Navigation för gräsmattor */
.grasmeny {
    float: right;
    margin-top: 5px;
}

.grasmeny ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.grasmeny a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background 0.3s;
}

.grasmeny a:hover {
    background: rgba(255,255,255,0.2);
}

/* Mobil meny för gräsklippning */
.mobil-grasknapp {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    float: right;
    margin-top: 5px;
}

/* CTA-knappar för offert */
.offert-knapp {
    background: #FF9800;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.offert-knapp:hover {
    background: #F57C00 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Hero sektion för gräsmattor */
.gras-hero {
    background: linear-gradient(rgba(139,195,74,0.9), rgba(205,220,57,0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23e8f5e9" width="100" height="100"/><circle fill="%23c8e6c9" cx="50" cy="50" r="40"/></svg>');
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.gras-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Innehållssektioner */
.grasvard-innehall {
    background: white;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.grasvard-innehall h2 {
    color: #558B2F;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.grasvard-innehall h3 {
    color: #689F38;
    margin: 20px 0 10px;
}

/* Tabeller för gräsklippning */
.grastjej-tabell {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.grastjej-tabell th,
.grastjej-tabell td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.grastjej-tabell th {
    background: #E8F5E9;
    color: #2E7D32;
    font-weight: bold;
}

.grastjej-tabell tr:hover {
    background: #F1F8E9;
}

/* Info-rutor */
.grasinfo-ruta {
    background: #F9FBE7;
    border-left: 4px solid #8BC34A;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.grasinfo-ruta h4 {
    color: #558B2F;
    margin-bottom: 10px;
}

/* Formulär för offertförfrågan */
.offert-formular {
    background: #F1F8E9;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-grupp input,
.form-grupp textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #C5E1A5;
    border-radius: 4px;
    font-size: 16px;
}

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

.skicka-offert {
    background: #FF9800;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.skicka-offert:hover {
    background: #F57C00;
}

/* Spam-skydd */
.spam-skydd {
    background: #FFF9C4;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Footer för gräsklippning */
.gras-footer {
    background: #2E7D32;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-tjanster {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-tjanster h4 {
    margin-bottom: 15px;
    color: #C8E6C9;
}

.footer-tjanster ul {
    list-style: none;
}

.footer-tjanster a {
    color: white;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: color 0.3s;
}

.footer-tjanster a:hover {
    color: #AED581;
}

/* Accordion för orter */
.ort-accordion {
    margin: 20px 0;
}

.ort-toggle {
    background: #E8F5E9;
    padding: 15px;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #2E7D32;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: background 0.3s;
}

.ort-toggle:hover {
    background: #C8E6C9;
}

.ort-innehall {
    display: none;
    padding: 15px;
    background: white;
    border: 1px solid #C5E1A5;
    border-radius: 4px;
    margin-bottom: 10px;
}

.ort-innehall.aktiv {
    display: block;
}

/* Bilder med CSS */
.gras-bild {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #8BC34A 25%, #CDDC39 75%);
    border-radius: 8px;
    position: relative;
    margin: 20px 0;
    overflow: hidden;
}

.gras-bild::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.1) 2px,
        rgba(255,255,255,0.1) 4px
    );
}

.gras-bild-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Responsiv design */
@media (max-width: 768px) {
    .grasmeny {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #689F38;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .grasmeny.aktiv {
        display: block;
    }
    
    .grasmeny ul {
        flex-direction: column;
        padding: 10px;
    }
    
    .mobil-grasknapp {
        display: block;
    }
    
    .gras-hero h1 {
        font-size: 1.8em;
    }
    
    .grastjej-tabell {
        font-size: 14px;
    }
    
    .grastjej-tabell th,
    .grastjej-tabell td {
        padding: 8px;
    }
}

/* Utskriftsanpassning */
@media print {
    .grasmatta-header,
    .gras-footer,
    .offert-knapp {
        display: none;
    }
    
    .grasvard-innehall {
        box-shadow: none;
    }
}