/* Gräsmattedesign - Grundläggande stilar */
* {
    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: linear-gradient(to bottom, #f5f5dc 0%, #fff 100%);
}

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

/* Gräsmatta-header design */
.tradgard-header {
    background: linear-gradient(135deg, #87CEEB 0%, #98D98E 100%);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.klippning-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.grasmatta-logo {
    display: inline-block;
    background: #8FBC8F;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.grasmatta-logo::before {
    content: "🌿 ";
    font-size: 28px;
}

.tradgard-menu {
    display: flex;
    gap: 15px;
    list-style: none;
}

.tradgard-menu a {
    background: #f5f5dc;
    color: #2c5f2d;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    display: block;
}

.tradgard-menu a:hover {
    background: #8FBC8F;
    color: white;
    transform: translateY(-2px);
}

/* Gräsklippning huvudbanner */
.klippning-hero {
    position: relative;
    height: 400px;
    background: #87CEEB;
    overflow: hidden;
    margin-bottom: 40px;
}

.klippning-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-grastext {
    display: none;
}

.hero-grastext h1 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Gräsmatteinnehåll */
.tradgard-content {
    background: white;
    padding: 40proudx 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tradgard-content h1 {
    color: #2c5f2d;
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 3px solid #8FBC8F;
    padding-bottom: 10px;
}

.tradgard-content h2 {
    color: #4a7c59;
    font-size: 26px;
    margin: 30px 0 15px;
}

.tradgard-content h3 {
    color: #5a8a6a;
    font-size: 22px;
    margin: 25px 0 12px;
}

.tradgard-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Offertknapp för gräsklippning */
.klipp-offert-btn {
    background: linear-gradient(135deg, #8FBC8F 0%, #4CAF50 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.klipp-offert-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Gräsmatta-bilder */
.grasbild-container {
    margin: 30px 0;
    text-align: center;
}

.grasbild-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Trädgårdstabeller */
.tradgard-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tradgard-table th {
    background: #8FBC8F;
    color: white;
    padding: 15px;
    text-align: left;
}

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

.tradgard-table tr:hover {
    background: #f0f8f0;
}

/* Kontaktformulär för gräsklippning */
.klippning-form {
    background: linear-gradient(to bottom, #f5f5dc, #fff);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-grasgrupp input,
.form-grasgrupp textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #8FBC8F;
    border-radius: 5px;
    font-size: 16px;
}

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

/* Områdeslista för gräsklippning */
.omraden-gras {
    background: #f0f8f0;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

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

.omrade-tag {
    background: white;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #8FBC8F;
    font-size: 14px;
}

/* Gräsmatta-footer */
.tradgard-footer {
    background: linear-gradient(135deg, #D2B48C 0%, #8FBC8F 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-grasinnehall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-grasinnehall a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.footer-grasinnehall a:hover {
    text-decoration: underline;
}

/* Responsiv design för gräsmattor */
@media (max-width: 768px) {
    .klippning-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .tradgard-menu {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .tradgard-menu a {
        text-align: center;
        width: 100%;
    }
    
    .hero-grastext h1 {
        font-size: 24px;
    }
    
    .hero-grastext {
        padding: 20px;
    }
    
    .tradgard-content {
        padding: 20px 15px;
    }
    
    .tradgard-content h1 {
        font-size: 24px;
    }
    
    .tradgard-content h2 {
        font-size: 20px;
    }
    
    .tradgard-table {
        font-size: 14px;
    }
    
    .tradgard-table th,
    .tradgard-table td {
        padding: 8px;
    }
    
    .omraden-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .klipp-offert-btn {
        width: 100%;
        text-align: center;
    }
}

/* Gräsklippning-animationer */
@keyframes grasvaxa {
    0% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.tradgard-content > * {
    animation: grasvaxa 0.6s ease-out;
}

/* Spam-skydd för trädgård */
.grasskydd-fraga {
    background: #f0f8f0;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.grasskydd-fraga label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2c5f2d;
}

/* Meddelande för gräsklippning */
.gras-meddelande {
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}

.gras-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gras-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}