/* Förrådswebbplats - Huvudstil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

/* Logo och header */
.logo-container {
    background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
    padding: 15px 0;
    text-align: center;
    border-bottom: 3px solid #32cd32;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 2.5em;
    font-weight: bold;
    color: #4a148c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* Navigation */
nav {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%);
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.nav-links a:hover {
    background: rgba(255,255,255,0.1);
    color: #32cd32;
}

/* Mobil meny */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    padding: 15px 20px;
    cursor: pointer;
}

/* Container och layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-section {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.hero-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #c0c0c0, #ffffff);
    color: #4a148c;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
}

/* Innehållssektioner */
.content-section {
    background: white;
    margin: 30px 0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #32cd32;
}

.content-section h2 {
    color: #4a148c;
    font-size: 2.2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #32cd32;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #666;
    font-size: 1.6em;
    margin: 25px 0 15px 0;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

/* Tabeller */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

table th {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

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

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f0f8f0;
}

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

ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

ol {
    margin: 20px 0;
    padding-left: 20px;
}

ol li {
    margin-bottom: 12px;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Formulär */
.form-container {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #32cd32;
    margin: 30px 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #32cd32;
    box-shadow: 0 0 5px rgba(50, 205, 50, 0.3);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

button[type="submit"] {
    background: linear-gradient(45deg, #32cd32, #228b22);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #228b22, #32cd32);
}

/* Spam-skydd */
.spam-protection {
    margin: 20px 0;
    padding: 15px;
    background: #f0f8f0;
    border: 1px solid #32cd32;
    border-radius: 5px;
}

.spam-protection label {
    font-size: 0.9em;
    color: #666;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-services {
    flex: 1;
    margin-right: 40px;
}

.footer-services h3 {
    color: #32cd32;
    margin-bottom: 15px;
}

.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-services ul li {
    margin-bottom: 8px;
}

.footer-services ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services ul li a:hover {
    color: #32cd32;
}

.footer-address {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: right;
    min-width: 250px;
}

.footer-address h3 {
    color: #32cd32;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #666;
    color: #aaa;
}

/* Responsiv design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #4a148c;
        flex-direction: column;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-section h1 {
        font-size: 2em;
    }
    
    .hero-section p {
        font-size: 1.1em;
    }
    
    .container {
        padding: 10px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h2 {
        font-size: 1.8em;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-services {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-address {
        text-align: center;
        width: 100%;
    }
    
    table {
        font-size: 0.9em;
    }
    
    table th,
    table td {
        padding: 8px;
    }
}

/* Tillgänglighet och användarupplevelse */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #32cd32;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}