/* Grundläggande stilar för målarewebbplats */
* {
    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: #f8f9fa;
    font-size: 16px;
}

/* Logotyp med CSS */
.logo {
    font-size: 2.2em;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding: 10px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo::before {
    content: "●";
    margin-right: 10px;
    font-size: 1.2em;
    color: #48bb78;
    text-shadow: 0 0 10px rgba(72, 187, 120, 0.5);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

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

/* Mobil hamburger-meny */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

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

/* Header sektion */
.hero-section {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8e6 50%, #fff8e1 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3em;
    color: #2c5282;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.4em;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Knappar */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.cta-secondary {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.cta-secondary:hover {
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

/* Innehållssektioner */
.content-section {
    background: white;
    margin: 30px 0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section h1, .content-section h2 {
    color: #2c5282;
    margin-bottom: 20px;
    border-bottom: 3px solid #e6f3ff;
    padding-bottom: 10px;
}

.content-section h1 {
    font-size: 2.5em;
    text-align: center;
}

.content-section h2 {
    font-size: 1.8em;
    margin-top: 30px;
}

.content-section h3 {
    color: #38a169;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
}

/* Tabeller */
.price-table, .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.price-table th, .price-table td,
.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.price-table th, .comparison-table th {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    font-weight: bold;
}

.price-table tr:nth-child(even),
.comparison-table tr:nth-child(even) {
    background: #f7fafc;
}

/* Info-rutor */
.info-box {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    border-left: 5px solid #3182ce;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.info-box h4 {
    color: #2c5282;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.tip-box {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-left: 5px solid #38a169;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.tip-box h4 {
    color: #38a169;
    font-size: 1.2em;
    margin-bottom: 10px;
}

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

.content-section li {
    list-style: none;
    padding: 8px 0 8px 30px;
    position: relative;
}

.content-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
    font-size: 1.2em;
}

/* Formulär */
.quote-form {
    background: linear-gradient(135deg, #f7fafc 0%, #e6f3ff 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #e2e8f0;
}

.quote-form h2 {
    color: #2c5282;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #e6f3ff;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e6f3ff;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Responsiv design för mobil */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2c5282;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .content-section {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .cta-button {
        display: block;
        text-align: center;
        margin: 15px auto;
    }
    
    .price-table, .comparison-table {
        font-size: 14px;
    }
    
    .price-table th, .price-table td,
    .comparison-table th, .comparison-table td {
        padding: 10px 8px;
    }
}