/* Köksrenovering Malmö - CSS Stilar */
/* Grundläggande stilar för kökswebbplats */
* {
    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(135deg, #f5f5f5 0%, #faf0fa 50%, #f9f5f0 100%);
}

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

.container.smal {
    max-width: 800px;
}

/* Köksheader och navigation */
.kokshuvud {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.koklogo {
    text-decoration: none;
}

/* Logo design för köksföretag */
.logo-kok {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.logo-k {
    color: #ff69b4;
    font-size: 32px;
}

.logo-text {
    color: #8b7d8b;
}

.logo-r {
    color: #dda0dd;
    font-size: 28px;
    margin-left: 5px;
}

.logo-text2 {
    color: #8b7d8b;
}

/* Köksmeny styling */
.kokmeny {
    display: flex;
    gap: 30px;
    align-items: center;
}

.kokmeny a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.kokmeny a:hover {
    color: #ff69b4;
}

/* CTA-knappar för offertförfrågningar */
.cta-knapp {
    background: #87ceeb;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-knapp:hover {
    background: #6bb6dd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135,206,235,0.4);
}

.cta-knapp.stor {
    padding: 15px 35px;
    font-size: 18px;
}

.sekundar-knapp {
    background: transparent;
    color: #87ceeb;
    border: 2px solid #87ceeb;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.sekundar-knapp:hover {
    background: #87ceeb;
    color: white;
}

/* Mobilmeny för kökshemsidan */
.mobil-meny-knapp, .mobil-offert-knapp {
    display: none;
}

.mobil-meny {
    display: none;
}

/* Hero sektion för köksrenovering */
.hero-sektion {
    padding: 60px 0;
    background: white;
}

.hero-innehall h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-knappar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* CSS-genererad köksillustration */
.kok-bild-css {
    margin-top: 40px;
}

.kok-illustration {
    width: 100%;
    max-width: 400px;
    height: 300px;
    position: relative;
    background: #f0f0f0;
    border-radius: 10px;
    margin: 0 auto;
}

/* Köksskåp överdel */
.skap-over {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
    background: linear-gradient(135deg, #8b7d8b, #a090a0);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Köksskåp underdel */
.skap-under {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 120px;
    background: linear-gradient(135deg, #8b7d8b, #a090a0);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Bänkskiva i köket */
.bankskiva {
    position: absolute;
    top: 110px;
    left: 10px;
    right: 10px;
    height: 30px;
    background: linear-gradient(90deg, #d4a574, #e5b585);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Diskho element */
.diskho {
    position: absolute;
    top: 115px;
    right: 60px;
    width: 80px;
    height: 20px;
    background: #c0c0c0;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

/* Innehållssektion för köksinfo */
.innehall-sektion {
    padding: 60px 0;
}

.innehall-sektion h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

.innehall-sektion h2 {
    font-size: 26px;
    color: #444;
    margin: 30px 0 15px;
}

.innehall-sektion h3 {
    font-size: 22px;
    color: #555;
    margin: 25px 0 15px;
}

.innehall-sektion p {
    margin-bottom: 15px;
    color: #666;
}

/* Informationsrutor för kökstips */
.info-ruta, .tips-ruta, .citat-ruta {
    background: white;
    border-left: 4px solid #ff69b4;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tips-ruta {
    border-left-color: #87ceeb;
}

.citat-ruta {
    border-left-color: #dda0dd;
    font-style: italic;
}

/* Tabeller för köksinfo */
.kokstabell, .process-tabell, .tillverkare-tabell, .erfarenhet-tabell {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
}

table th {
    background: linear-gradient(135deg, #dda0dd, #f0d0f0);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

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

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background: #f9f9f9;
}

/* Frågor och svar för köksrenovering */
.fragor-svar {
    margin: 30px 0;
}

details {
    background: white;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

details:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

summary {
    cursor: pointer;
    font-weight: bold;
    color: #555;
    padding: 5px 0;
}

summary:hover {
    color: #ff69b4;
}

details[open] summary {
    color: #ff69b4;
    margin-bottom: 10px;
}

/* Områden box för geografisk täckning */
.omraden-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.omraden-box h4 {
    color: #555;
    margin-bottom: 15px;
    font-size: 18px;
}

/* CTA Box för konvertering */
.cta-box {
    background: linear-gradient(135deg, #f0e8f0, #f5f0f5);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.cta-box h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.cta-box p {
    color: #666;
    margin-bottom: 20px;
}

/* Kontaktformulär för offert */
.kontakt-sektion {
    padding: 60px 0;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
}

.kontakt-sektion h1 {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
}

.ingress {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.offert-formular {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-grupp label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.form-grupp input,
.form-grupp textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-grupp input:focus,
.form-grupp textarea:focus {
    outline: none;
    border-color: #87ceeb;
    box-shadow: 0 0 5px rgba(135,206,235,0.3);
}

.success-meddelande {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Footer för köksföretag */
footer {
    background: #333;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.tjanster-box {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}

.tjanster-box h3 {
    color: #87ceeb;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-meny {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-meny a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-meny a:hover {
    color: #87ceeb;
}

.footer-info {
    padding-top: 20px;
}

.footer-info p {
    margin: 5px 0;
    color: #ccc;
}

.footer-info strong {
    color: white;
}

.footer-info a {
    color: #87ceeb;
    text-decoration: none;
}

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

/* Sitemap stilar */
.sitemap-lista {
    list-style: none;
    padding: 0;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sitemap-lista li {
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.sitemap-lista li:last-child {
    border-bottom: none;
}

.sitemap-lista a {
    color: #87ceeb;
    text-decoration: none;
    font-size: 16px;
}

.sitemap-lista a:hover {
    text-decoration: underline;
    color: #6bb6dd;
}

/* Mobilanpassning för kökshemsida */
@media (max-width: 768px) {
    .desktop-meny {
        display: none;
    }
    
    .mobil-meny-knapp {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        padding: 5px;
    }
    
    .mobil-offert-knapp {
        display: block;
        background: #87ceeb;
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 14px;
    }
    
    .mobil-meny {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px;
    }
    
    .mobil-meny.aktiv {
        display: flex;
    }
    
    .mobil-meny a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobil-meny a:last-child {
        border-bottom: none;
    }
    
    .hero-innehall h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-text {
        font-size: 18px;
    }
    
    .hero-knappar {
        flex-direction: column;
    }
    
    .hero-knappar a {
        width: 100%;
        text-align: center;
    }
    
    table {
        font-size: 14px;
        display: block;
        overflow-x: auto;
    }
    
    th, td {
        padding: 8px;
        font-size: 13px;
    }
    
    .cta-box {
        padding: 25px 15px;
    }
    
    .innehall-sektion {
        padding: 40px 0;
    }
    
    .innehall-sektion h1 {
        font-size: 26px;
    }
    
    .innehall-sektion h2 {
        font-size: 22px;
    }
    
    .innehall-sektion h3 {
        font-size: 19px;
    }
    
    .footer-meny {
        flex-direction: column;
        gap: 10px;
    }
    
    .kok-illustration {
        height: 250px;
    }
}

/* Ytterligare mobiloptimering */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-innehall h1 {
        font-size: 24px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .cta-knapp.stor {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .offert-formular {
        padding: 20px 15px;
    }
    
    .logo-kok {
        font-size: 20px;
    }
    
    .logo-k {
        font-size: 26px;
    }
    
    .logo-r {
        font-size: 24px;
    }
}