/* ========================================
   Effektdörren – Static Site Styles
   ======================================== */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #2a6496;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1a4060;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ========================================
   Header
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

/* Logo */
.logo {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.nav-list a:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    overflow: hidden;
    background: #dce6f0;
    padding: 24px 0;
}

.hero img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

/* About */
.about {
    background: #f9f9f9;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    max-width: 800px;
}

/* ========================================
   Contact
   ======================================== */
.contact {
    background: #fff;
}

.contact-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    max-width: 700px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* Info list */
.info-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
}

.info-list dt {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.info-list dd {
    color: #333;
    font-size: 15px;
}

/* Contact Form */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #444;
}

.required {
    color: #c0392b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a6496;
    box-shadow: 0 0 0 3px rgba(42, 100, 150, 0.15);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-primary {
    background: #c0392b;
    color: #fff;
}

.btn-primary:hover {
    background: #a93226;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: #2c3e50;
    color: #ccc;
    padding-top: 48px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-section a {
    color: #8ab4d8;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    /* Header */
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-list a {
        display: block;
        padding: 12px 20px;
        border-bottom: none;
    }

    .nav-list a:hover {
        background: #f5f5f5;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section h2 {
        font-size: 24px;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 20px;
    }

    .info-list {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }

    .info-list dt {
        margin-top: 12px;
    }
}
