/* Näset Häckklippning CSS - Retro 2013 App-stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f4f7f1 0%, #e8f5e4 100%);
    color: #2c3e2d;
    line-height: 1.6;
}

/* Header och Navigation */
.huvud-sektion {
    background: linear-gradient(180deg, #7fb069 0%, #6b9556 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.huvud-innehall {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logotyp {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.logotyp::before {
    content: "🌿";
    margin-right: 8px;
    font-size: 32px;
    vertical-align: middle;
}

.huvud-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.huvud-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.huvud-navigation a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Mobil hamburger meny */
.mobil-meny-knapp {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobil-navigation {
    display: none;
    background: #6b9556;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobil-navigation ul {
    flex-direction: column;
    padding: 20px;
}

.mobil-navigation a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Main containers */
.huvudinnehall {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sida-sektion {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8f5e4;
}

/* Hero sektion */
.hero-sektion {
    background: linear-gradient(135deg, #7fb069 0%, #92c077 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-sektion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 20 Q 25 0 50 10 T 100 15 V 20 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 20px;
    opacity: 0.6;
}

.hero-innehall {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-rubrik {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-underrubrik {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

/* Knappar - App-stil med djup */
.kta-knapp {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #2c3e2d;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,193,7,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
    cursor: pointer;
}

.kta-knapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,193,7,0.6);
    background: linear-gradient(45deg, #fff59d, #ffb300);
}

.kta-knapp-sekundar {
    background: linear-gradient(45deg, #ffffff, #f5f5f5);
    color: #2c3e2d;
    border: 2px solid #7fb069;
}

.kta-knapp-sekundar:hover {
    background: linear-gradient(45deg, #7fb069, #92c077);
    color: #ffffff;
    border-color: #7fb069;
}

/* Rubriker */
h1 {
    color: #2c3e2d;
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    color: #4a6741;
    font-size: 2.2rem;
    margin: 35px 0 20px 0;
    font-weight: 600;
    border-bottom: 3px solid #7fb069;
    padding-bottom: 10px;
}

h3 {
    color: #2c3e2d;
    font-size: 1.8rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

/* Innehållsstyling */
p {
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.7;
}

/* Info-rutor */
.info-ruta {
    background: linear-gradient(135deg, #e8f5e4, #f4f7f1);
    border-left: 5px solid #7fb069;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.vet-du-att {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 5px solid #ff9800;
    position: relative;
}

.vet-du-att::before {
    content: "💡";
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
}

.kom-ihag-ruta {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 5px solid #2196f3;
    position: relative;
}

.kom-ihag-ruta::before {
    content: "📋";
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
}

/* Listor */
ul, ol {
    margin: 20px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
    color: #4a4a4a;
}

/* Tabeller - Mobilanpassade */
.tabell-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    min-width: 300px;
}

th {
    background: linear-gradient(135deg, #7fb069, #6b9556);
    color: #ffffff;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

tr:nth-child(even) {
    background: #f8f9fa;
}

/* Formulär */
.formular-sektion {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #7fb069;
}

.formular-grupp {
    margin-bottom: 25px;
}

.formular-grupp label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e2d;
    font-weight: 600;
    font-size: 16px;
}

.formular-grupp input,
.formular-grupp textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.formular-grupp input:focus,
.formular-grupp textarea:focus {
    outline: none;
    border-color: #7fb069;
    box-shadow: 0 0 0 3px rgba(127,176,105,0.1);
}

.formular-grupp textarea {
    min-height: 120px;
    resize: vertical;
}

.dold {
    display: none !important;
}

/* Anti-spam */
.spam-skydd {
    background: #fffde7;
    border: 1px solid #fff176;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-size: 14px;
}

.spam-skydd input {
    width: auto;
    margin: 0 10px;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
.sidfot {
    background: linear-gradient(180deg, #2c3e2d, #1a2a1c);
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.sidfot-innehall {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.sidfot-sektion h3 {
    color: #7fb069;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.sidfot-sektion ul {
    list-style: none;
    padding: 0;
}

.sidfot-sektion a {
    color: #b8c4b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.sidfot-sektion a:hover {
    color: #7fb069;
}

.adress-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: right;
    border-left: 4px solid #7fb069;
}

.adress-box p {
    color: #ffffff !important;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a4a3b;
    margin-top: 40px;
    color: #888;
}

/* Responsiv design */
@media (max-width: 768px) {
    .huvud-navigation {
        display: none;
    }
    
    .mobil-meny-knapp {
        display: block;
    }
    
    .mobil-navigation.aktiv {
        display: block;
    }
    
    .hero-rubrik {
        font-size: 2.5rem;
    }
    
    .hero-underrubrik {
        font-size: 1.2rem;
    }
    
    .sida-sektion {
        padding: 25px;
        margin: 20px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .kta-knapp {
        padding: 15px 30px;
        font-size: 16px;
        display: block;
        text-align: center;
        margin: 15px auto;
        max-width: 280px;
    }
    
    .huvud-innehall {
        height: 70px;
    }
    
    .formular-sektion {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-sektion {
        padding: 60px 15px;
    }
    
    .huvud-innehall {
        padding: 0 15px;
    }
    
    .huvudinnehall {
        padding: 30px 15px;
    }
    
    th, td {
        padding: 8px;
        font-size: 13px;
    }
    
    .info-ruta,
    .vet-du-att,
    .kom-ihag-ruta {
        padding: 20px;
        margin: 20px 0;
    }
}