/* Näsets Köksrenovering - Retro 2010 Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', Tahoma, Arial, sans-serif;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e8dc 50%, #d3d3aa 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Logo och header styling */
.logo-container {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.logo-text {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2a4d3a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    border: 3px solid #2a4d3a;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    position: relative;
}

.logo-text:before {
    content: '🏠';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.logo-tagline {
    font-size: 1.2rem;
    color: #4a7c59;
    margin-top: 10px;
    font-style: italic;
}

/* Navigation */
.nav-container {
    background: linear-gradient(90deg, #2a4d3a, #4a7c59, #2a4d3a);
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li:last-child a {
    border-right: none;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.2);
    color: #90EE90;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(144,238,144,0.8);
}

/* Container och layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #4a7c59;
}

/* Typografi */
h1 {
    color: #2a4d3a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    border-bottom: 3px solid #90EE90;
    padding-bottom: 15px;
}

h2 {
    color: #2a4d3a;
    font-size: 2rem;
    margin: 30px 0 20px 0;
    border-left: 4px solid #90EE90;
    padding-left: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h3 {
    color: #4a7c59;
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
    border-bottom: 2px solid #f5f5dc;
    padding-bottom: 8px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    color: #444;
    font-size: 1.1rem;
}

strong {
    color: #2a4d3a;
    font-weight: bold;
}

/* CTA Knappar */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #90EE90, #4a7c59);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #4a7c59, #2a4d3a);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.cta-container {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border-radius: 15px;
    border: 2px solid #90EE90;
}

/* Tabeller */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

table th {
    background: linear-gradient(90deg, #2a4d3a, #4a7c59);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
}

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

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

table tr:hover {
    background: #f0f8ff;
    transition: background 0.3s ease;
}

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

ul li, ol li {
    margin-bottom: 10px;
    color: #444;
    font-size: 1.1rem;
}

ul li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

ul li:before {
    content: '✓';
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Formulär */
.form-container {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid #90EE90;
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2a4d3a;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 10px rgba(74,124,89,0.2);
}

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

button[type="submit"] {
    background: linear-gradient(45deg, #90EE90, #4a7c59);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

button[type="submit"]:hover {
    background: linear-gradient(45deg, #4a7c59, #2a4d3a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Spam-skydd */
.spam-protection {
    background: #fffacd;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f0e68c;
    margin: 20px 0;
    text-align: center;
}

.spam-check {
    margin: 15px 0;
}

.spam-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.spam-check label {
    display: inline;
    font-weight: normal;
    color: #666;
}

.hidden {
    display: none !important;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #2a4d3a, #4a7c59, #2a4d3a);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-services {
    text-align: left;
}

.footer-services h3 {
    color: #90EE90;
    margin-bottom: 15px;
    border-bottom: 2px solid #90EE90;
    padding-bottom: 8px;
}

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

.footer-services ul li {
    margin-bottom: 8px;
    color: #ddd;
    padding-left: 0;
}

.footer-services ul li:before {
    content: '→';
    margin-right: 10px;
    color: #90EE90;
}

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

.footer-services ul li a:hover {
    color: #90EE90;
}

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

.footer-address h3 {
    color: #90EE90;
    margin-bottom: 15px;
    border-bottom: 2px solid #90EE90;
    padding-bottom: 8px;
}

.footer-address p {
    margin-bottom: 8px;
    color: #ddd;
    text-align: right;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(144,238,144,0.3);
    color: #ccc;
    font-size: 0.9rem;
}

/* Mobile responsivitet */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2rem;
        padding: 10px 20px;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .container {
        padding: 10px;
        margin: 10px;
    }
    
    .section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-address {
        text-align: left;
    }
    
    .footer-address p {
        text-align: left;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    table th, table td {
        padding: 8px 6px;
    }
    
    .form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
        padding: 8px 15px;
    }
    
    .cta-button {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}