/* Grundstilar för Näset Taktvätt webbsida */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf9f6; /* Ljust beige bakgrund */
}

/* Header och Navigation - Retro 2013 stil */
.header-container {
    background: linear-gradient(135deg, #8B4513, #CD853F); /* Tegelpannefärger */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    text-align: center;
    padding: 15px 0;
    background: linear-gradient(45deg, #228B22, #32CD32); /* Ljusgrön gradient */
}

.logo-text {
    font-size: 2.2em;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

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

/* Navigation - Mobilanpassad */
nav {
    background: rgba(0,0,0,0.1);
    padding: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: white;
    padding: 15px;
    cursor: pointer;
    float: right;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin: 2px;
    background: linear-gradient(45deg, #FF8C00, #FFA500); /* Ljus orange gradient */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.nav-menu a:hover {
    background: linear-gradient(45deg, #FFD700, #FFFF00); /* Ljusgul hover */
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Huvudinnehåll */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero-sektion */
.hero-section {
    background: linear-gradient(135deg, #98FB98, #90EE90); /* Ljusgrön gradient */
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3em;
    color: #556B2F;
    margin-bottom: 25px;
}

/* Stora knappar - App-stil */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FF8C00, #FF6347);
    color: white;
    padding: 18px 35px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #FF6347, #FF4500);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #32CD32, #228B22);
}

.cta-button.secondary:hover {
    background: linear-gradient(45deg, #228B22, #006400);
}

/* Innehållssektioner */
.content-section {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 1.8em;
    color: #8B4513;
    margin-bottom: 20px;
    border-bottom: 3px solid #32CD32;
    padding-bottom: 10px;
}

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

.info-table th {
    background: linear-gradient(45deg, #8B4513, #CD853F);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

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

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

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

/* Info-rutor */
.info-box {
    background: linear-gradient(135deg, #F0E68C, #FFFFE0); /* Ljusgul gradient */
    border: 2px solid #DAA520;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.info-box.tip {
    background: linear-gradient(135deg, #98FB98, #F0FFF0); /* Ljusgrön gradient */
    border-color: #32CD32;
}

.info-box-title {
    font-weight: bold;
    font-size: 1.2em;
    color: #2F4F2F;
    margin-bottom: 10px;
}

/* Listor */
.benefit-list, .process-list {
    list-style: none;
    padding: 0;
}

.benefit-list li, .process-list li {
    background: #f9f9f9;
    margin: 8px 0;
    padding: 12px 15px;
    border-left: 4px solid #32CD32;
    border-radius: 5px;
}

.numbered-list {
    counter-reset: list-counter;
    list-style: none;
    padding: 0;
}

.numbered-list li {
    counter-increment: list-counter;
    background: #f9f9f9;
    margin: 10px 0;
    padding: 15px 15px 15px 50px;
    border-radius: 5px;
    position: relative;
}

.numbered-list li::before {
    content: counter(list-counter);
    position: absolute;
    left: 15px;
    top: 15px;
    background: #32CD32;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Formulär */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 30px auto;
}

.form-title {
    font-size: 1.8em;
    color: #8B4513;
    text-align: center;
    margin-bottom: 25px;
}

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

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

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

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

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

/* Honeypot - Gömd från användare */
.hidden {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2F4F2F, #556B2F);
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}

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

.footer-services {
    margin-bottom: 20px;
}

.footer-services h3 {
    color: #98FB98;
    margin-bottom: 15px;
}

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

.footer-services li {
    margin: 5px 0;
}

.footer-services a {
    color: #E0E0E0;
    text-decoration: none;
}

.footer-services a:hover {
    color: #98FB98;
}

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

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Mobilanpassning */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(139, 69, 19, 0.95);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 2px 10px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .logo-text {
        font-size: 1.6em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-address {
        text-align: left;
    }
    
    .info-table {
        font-size: 0.9em;
    }
    
    .info-table th,
    .info-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    .hero-section {
        padding: 25px 15px;
    }
    
    .form-container {
        padding: 20px;
        margin: 20px 10px;
    }
}

/* Animationer för 2013-känsla */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Print-stilar */
@media print {
    .nav-toggle,
    .cta-button,
    .form-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .content-section {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}