/* Gräsmatte-styling för plantera-grasmatta.j.pl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f9f5 0%, #e8f5e8 50%, #f9f6f0 100%);
}

/* Gräsklippare-header */
.grasmatte-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.grasfro-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Gräslogo med CSS */
.grasplanta-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2d5016;
}

.grasikon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #7cb342, #558b2f);
    border-radius: 50% 0 50% 0;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
}

.grasikon::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 15px;
    background: #33691e;
    bottom: 5px;
    left: 10px;
    transform: rotate(-10deg);
    box-shadow: 6px 0 #33691e, 12px 0 #33691e, 18px 0 #33691e;
}

.logotext {
    font-size: 20px;
    font-weight: 600;
    color: #2d5016;
}

/* Gödsel-navigation */
.godsel-meny {
    display: flex;
    gap: 30px;
    list-style: none;
}

.godsel-meny a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.godsel-meny a:hover {
    color: #7cb342;
}

/* Klippning-CTA knapp */
.klippning-cta {
    background: #4CAF50;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(76,175,80,0.3);
}

.klippning-cta:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.4);
}

/* Mobil meny */
.grasmeny-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.grasmeny-toggle span {
    width: 25px;
    height: 3px;
    background: #2d5016;
    margin: 3px 0;
    transition: 0.3s;
}

/* Rullgras-hero sektion */
.rullgras-hero {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.rullgras-hero h1 {
    font-size: 2.5em;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: 700;
}

.beskaring-intro {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Luftning-knappar */
.luftning-knappar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.luftning-primär, .luftning-sekundär {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.luftning-primär {
    background: #FF6B35;
    color: white;
    box-shadow: 0 3px 10px rgba(255,107,53,0.3);
}

.luftning-primär:hover {
    background: #E55100;
    transform: translateY(-2px);
}

.luftning-sekundär {
    background: white;
    color: #2d5016;
    border: 2px solid #7cb342;
}

.luftning-sekundär:hover {
    background: #f1f8e9;
}

/* Kalkning-innehåll */
.kalkning-innehall {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.vertikuttering-sektion {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.vertikuttering-sektion h2 {
    color: #2d5016;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.vertikuttering-sektion h3 {
    color: #558b2f;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Bevattning-tabell */
.bevattning-tabell {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.bevattning-tabell th {
    background: linear-gradient(135deg, #7cb342, #689f38);
    color: white;
    padding: 12px;
    text-align: left;
}

.bevattning-tabell td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.bevattning-tabell tr:hover {
    background: #f5f5f5;
}

/* Mossa-inforuta */
.mossa-info {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    border-left: 4px solid #7cb342;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.mossa-info h4 {
    color: #2d5016;
    margin-bottom: 10px;
}

/* Ogras-formulär */
.ogras-formular {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
}

.ogras-formular h2 {
    color: #2d5016;
    margin-bottom: 25px;
    text-align: center;
}

.markberedning-falt {
    margin-bottom: 20px;
}

.markberedning-falt label {
    display: block;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.markberedning-falt input:focus,
.markberedning-falt textarea:focus {
    outline: none;
    border-color: #7cb342;
}

/* Skötsel-captcha */
.skotsel-captcha {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.skotsel-captcha label {
    display: block;
    margin-bottom: 10px;
    color: #555;
}

.skotsel-captcha input {
    width: 100px;
    padding: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
}

/* Anläggning-submit */
.anlaggning-submit {
    background: #FF6B35;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.anlaggning-submit:hover {
    background: #E55100;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

/* Grasfrö-footer */
.grasfro-footer {
    background: #2d5016;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.torv-innehall {
    max-width: 1200px;
    margin: 0 auto;
}

.jordförbättring-länkar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.jordförbättring-länkar h4 {
    color: #9ccc65;
    margin-bottom: 15px;
}

.jordförbättring-länkar ul {
    list-style: none;
}

.jordförbättring-länkar a {
    color: #c5e1a5;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
}

.jordförbättring-länkar a:hover {
    color: white;
}

.plantering-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a6f2a;
    color: #9ccc65;
}

/* Säsong-accordion */
.sasong-accordion {
    margin: 20px 0;
}

.grasart-toggle {
    background: #f5f5f5;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #2d5016;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: background 0.3s;
}

.grasart-toggle:hover {
    background: #e8f5e8;
}

.grasart-toggle.active {
    background: #7cb342;
    color: white;
}

.frosorter-innehall {
    background: white;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    display: none;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.frosorter-innehall.show {
    display: block;
}

/* Beskärning-bilder med CSS */
.beskaring-bild {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.beskaring-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
    );
}

/* Växtnäring-lista */
.vaxtaring-lista {
    list-style: none;
    padding-left: 0;
}

.vaxtaring-lista li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.vaxtaring-lista li::before {
    content: '🌱';
    position: absolute;
    left: 0;
}

/* Mobil responsiv */
@media (max-width: 768px) {
    .grasmeny-toggle {
        display: flex;
    }
    
    .godsel-meny {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .godsel-meny.active {
        display: flex;
    }
    
    .klippning-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
    }
    
    .rullgras-hero h1 {
        font-size: 1.8em;
    }
    
    .vertikuttering-sektion {
        padding: 20px;
    }
    
    .bevattning-tabell {
        font-size: 14px;
    }
    
    .bevattning-tabell th,
    .bevattning-tabell td {
        padding: 8px;
    }
}