
 
 
 
 *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        body {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #111827;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #f3f4f6;
            transition: transform 0.3s ease;
        }

        header.hidden {
            transform: translateY(-100%);
        }

        nav {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

      /* Container för logga + text */
@font-face {
    font-family: 'Kriten ITC';
    src: url('Fonts/ITCKRIST.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Klickbar logga */
.logo {
    display: flex;              /* horisontell layout */
    align-items: center;        /* vertikal centering */
    gap: 0.5rem;                /* mellan ikon och text */
    text-decoration: none;      /* tar bort understrykning */
}

/* Hover på text */
.logo:hover .logo-text {
    color: #ff0000;             /* mörkare röd vid hover, valfri färg */
}

/* Logga-ikon */
.logo-icon {
    width: 36px;                /* visningsstorlek */
    height: 36px;
    flex-shrink: 0;             /* förhindrar att loggan krymper */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bilden inuti loggan */
.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* Text bredvid loggan */
.logo-text {
    font-family: 'Kriten ITC', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: red;                  /* din röda färg */
    line-height: 1;
    white-space: nowrap;         /* text bryts aldrig under loggan */
}

/* Mobilanpassning */
@media (max-width: 768px) {
    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 1.25rem;
    }
}


        .nav-links  {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links a {
            color: #374151;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #16a34a;
        }

        .nav-links a.active,
        .nav-links .submenu-toggle.active {
            color: #16a34a;
            border-bottom: 2px solid #16a34a;
            padding-bottom: 2px;
        }

        .btn-primary {
            background: #16a34a;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            text-decoration: none;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background: #15803d;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #374151;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }

        .mobile-menu-btn:hover {
            background: #f3f4f6;
            color: #16a34a;
        }

        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 1.5rem;
            background: white;
            border-top: 1px solid #f3f4f6;
            text-align: right;
        }

        .mobile-menu.active {
            max-height: 80vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 0.75rem 1.5rem 1.25rem;
        }

        .mobile-menu > a,
        .mobile-menu > button {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0.85rem 0.75rem;
            color: #374151;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s, padding-right 0.2s;
            border-right: 3px solid transparent;
            border-left: none;
        }

        .mobile-menu > a:hover,
        .mobile-menu > button:hover {
            background: #f0fdf4;
            color: #16a34a;
            border-right-color: #16a34a;
            padding-right: 1rem;
        }

        /* Hero Section */
        .hero {
            height: 88vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: white;
            text-align: center;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
			color: white;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0), rgba(0,0,0,0));
        }

        .hero-content {
            position: relative;
            z-index: 20;
            max-width: 56rem;
            padding: 0 1.5rem;
			transform: translateY(40px);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #e5e7eb;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            transform: translateY(30px);
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-white {
            background: white;
            color: #111827;
        }

        .btn-white:hover {
            background: #f3f4f6;
            transform: scale(1.05);
        }

        /* About Section */
        .about {
            padding: 6rem 1.5rem;
            background: white;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .about p {
            font-size: 1.125rem;
            color: #4b5563;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: #dcfce7;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            color: #16a34a;
        }

        .feature-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }

        .feature-content p {
            font-size: 1rem;
            color: #6b7280;
            margin: 0;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
		
		.about-image-se img {
            width: 50%;
            height: 50%;
            object-fit: cover;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .stat-badge {
            position: absolute;
            bottom: -1.5rem;
            left: -1.5rem;
            background: #16a34a;
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            max-width: 12rem;
        }

        .stat-badge .number {
            font-size: 2.25rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .stat-badge p {
            font-size: 1.125rem;
            margin: 0;
            color: white;
        }

        /* Products Section */
        .products {
            padding: 6rem 1.5rem;
            background: #f9fafb;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #dcfce7;
            color: #15803d;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #4b5563;
            max-width: 42rem;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .product-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .product-image {
            position: relative;
            height: 256px;
            overflow: hidden;
            background: #f3f4f6;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-season {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .product-content p {
            color: #4b5563;
            margin-bottom: 1rem;
        }

        .product-link {
            color: #16a34a;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product-link:hover {
            color: #15803d;
        }

        .csa-banner {
    background: #16a34a;
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.csa-banner h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.csa-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto 2rem;
    text-align: left;
}

.csa-banner-block {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.csa-banner-image-block {
    padding: 0;
    overflow: hidden;
}

.csa-banner-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.csa-banner-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #bbf7d0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.csa-banner-block p {
    font-size: 0.95rem;
    color: #dcfce7;
    margin: 0;
    line-height: 1.6;
}

.csa-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .csa-banner {
        padding: 2rem 1.25rem;
    }

    .csa-banner h3 {
        font-size: 1.4rem;
    }

    .csa-banner-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .csa-banner-block p {
        font-size: 0.88rem;
    }
}

        /* Features Section */
        .features {
            padding: 6rem 1.5rem;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .feature-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 1rem;
            transition: background 0.3s;
        }

        .feature-card:hover {
            background: #f9fafb;
        }

        .feature-card-icon {
            width: 64px;
            height: 64px;
            background: #dcfce7;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .feature-card-icon svg {
            width: 32px;
            height: 32px;
            color: #16a34a;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: #4b5563;
        }

        /* Contact Section */
        /* Contact Section */
.contact {
    padding: 6rem 1.5rem;
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #dcfce7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #16a34a;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4b5563;
    margin: 0;
}

/* Tablet: 2 kolumner */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil: 1 kolumn */
@media (max-width: 500px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #16a34a;
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
        }

        .form-group textarea {
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            background: #16a34a;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: #15803d;
        }

        /* Footer */
        footer {
            background: #111827;
            color: white;
            padding: 4rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: #9ca3af;
            margin: 1rem 0 1.5rem;
            max-width: 28rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #1f2937;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: #16a34a;
        }

        .footer-links h3 {
            font-size: 1.125rem;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #1f2937;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
        }

        /* Responsive – hamburger menu */
        @media (max-width: 991px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        /* Responsive – layout */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.125rem;
            }

            .about-grid,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .stat-badge {
                position: static;
                margin-top: 1rem;
            }

            .about-image img {
                height: 400px;
            }
        }

        @media (min-width: 769px) and (max-width: 991px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }