/* CSS för håltagning Skåne Österlen - retro 2010 stilig design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header och navigation */
header {
    background: linear-gradient(to bottom, #cd7f32 0%, #8b5a2b 100%); /* Bronze gradient */
    border-bottom: 3px solid #ffff00; /* Lightning yellow border */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

.logo {
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo::before {
    content: "🔨";
    margin-right: 10px;
    font-size: 32px;
}

/* Navigation huvudmeny */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: bold;
}

nav a:hover {
    background: #ffff00;
    color: #333;
    transform: translateY(-2px);
}

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

/* Hero section */
.hero {
    background: linear-gradient(45deg, #696969 0%, #a9a9a9 50%, #696969 100%); /* Bright grey gradient */
    padding: 60px 0;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-weight: bold;
}

.hero p {
    color: #ffff00;
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* CTA-knappar */
.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, #ffff00 0%, #e6e600 100%);
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: 2px solid #cd7f32;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    background: linear-gradient(to bottom, #e6e600 0%, #cccc00 100%);
}

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

.content-section h2 {
    color: #cd7f32;
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffff00;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #696969;
    font-size: 24px;
    margin: 25px 0 15px 0;
}

/* Tabeller */
.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.services-table th {
    background: linear-gradient(to bottom, #cd7f32 0%, #8b5a2b 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

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

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

.services-table tr:hover {
    background: #f0f0f0;
}

/* Listor */
.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    color: #ffff00;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
    background: #cd7f32;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

/* Formulär */
.contact-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid #cd7f32;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #cd7f32;
    outline: none;
}

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

.form-button {
    background: linear-gradient(to bottom, #cd7f32 0%, #8b5a2b 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

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

.footer-section h4 {
    color: #ffff00;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

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

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

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

.address-box {
    background: rgba(205, 127, 50, 0.1);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #cd7f32;
    text-align: right;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsiv design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #cd7f32;
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .content-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-table {
        font-size: 12px;
    }
    
    .services-table th,
    .services-table td {
        padding: 8px;
    }
}

/* Retro effekter och DIY-stil */
.retro-box {
    background: linear-gradient(45deg, rgba(205,127,50,0.1) 25%, transparent 25%, transparent 75%, rgba(205,127,50,0.1) 75%);
    background-size: 20px 20px;
    padding: 20px;
    border: 2px dashed #cd7f32;
    margin: 20px 0;
}

.highlight-text {
    background: linear-gradient(to right, #ffff00, rgba(255,255,0,0.3));
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
}

/* Utility classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}