﻿
        :root {
            --primary-color: #1a1a1a; /* Dunkler Hintergrund */
            --secondary-color: #d4af37; /* Goldene Akzente */
            --accent-color: #ff6347; /* Rot-Orange */
            --text-color: #ffffff; /* Heller Text */
            --button-hover-bg: #b89a30;
            --button-hover-text: var(--primary-color);
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--primary-color);
color: var(--text-color);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* Hero Section */
        .hero {
            background-image: url('Bubu.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            color: var(--text-color);
            padding: 0 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Dunkler Overlay */
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5em;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.5em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.2em;
            font-weight: bold;
            text-decoration: none;
            border-radius: 30px;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: var(--text-color);
        }

        .btn-primary:hover {
            background-color: var(--button-hover-bg);
            color: var(--button-hover-text);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }

        .btn-secondary:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 60px 0;
            text-align: center;
        }

        h2 {
            font-size: 2.8em;
            margin-bottom: 40px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h3 {
            font-size: 2em;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        /* Trust Section */
        .trust-section .container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .trust-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
        }

        .trust-item i {
            font-size: 3em;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .trust-item h4 {
            font-size: 1.3em;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .trust-item p {
            font-size: 1.1em;
            color: #ccc;
        }

        /* Bestseller Section */
        .bestseller-section .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: #222;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .product-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-info h4 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .product-info p {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #ccc;
        }

        .product-price {
            font-size: 1.2em;
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 15px;
        }

        .product-card .btn-primary {
            width: 100%;
            padding: 12px;
            font-size: 1.1em;
        }

        /* Why Hamits Section */
        .why-hamits-section .container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .why-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
        }

        .why-item i {
            font-size: 2.5em;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .why-item h4 {
            font-size: 1.3em;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .why-item p {
            font-size: 1.1em;
            color: #ccc;
        }

        /* Bilingual Section */
        .bilingual-section {
            background-color: #222;
            padding: 50px 0;
        }

        .bilingual-section .container {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .bilingual-text {
            text-align: center;
        }

        .bilingual-text h3 {
            font-size: 2.5em;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .bilingual-text p {
            font-size: 1.8em;
            line-height: 1.3;
            color: var(--text-color);
        }

        .bilingual-text p:first-of-type {
            font-weight: bold;
        }

        /* Contact Section */
        .contact-section {
            background-color: #111;
            padding: 60px 0;
        }

        .contact-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info, .contact-actions {
            flex: 1;
            min-width: 280px;
        }

        .contact-info h3, .contact-actions h3 {
            text-align: left;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info p i {
            color: var(--secondary-color);
            font-size: 1.3em;
        }

        .contact-actions .btn-primary {
            width: 100%;
            padding: 18px;
            font-size: 1.4em;
            margin-top: 20px;
            text-align: center;
        }

        .map-placeholder {
            width: 100%;
            height: 200px;
            background-color: #333;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #aaa;
            font-style: italic;
            margin-top: 15px;
            border: 1px dashed var(--secondary-color);
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: #aaa;
            text-align: center;
            padding: 30px 0;
            font-size: 0.9em;
            border-top: 1px solid #333;
        }

        footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--text-color);
        }

        footer .container {
            padding: 20px 0;
        }

        footer div:first-child a {
            margin: 0 15px;
            display: inline-block;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        footer div:first-child a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8em;
            }
            .hero p {
                font-size: 1.2em;
            }
            h2 {
                font-size: 2.2em;
                margin-bottom: 30px;
            }
            h3 {
                font-size: 1.8em;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 80%;
                margin: 0 auto;
            }
            .trust-section .container,
            .why-hamits-section .container,
            .contact-content {
                flex-direction: column;
                align-items: center;
            }
            .contact-info, .contact-actions {
                width: 100%;
                text-align: center;
            }
            .contact-info h3, .contact-actions h3 {
                text-align: center;
            }
            .bilingual-section .container {
                flex-direction: column;
                gap: 30px;
            }
            .bilingual-text p {
                font-size: 1.5em;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2em;
            }
            .hero p {
                font-size: 1.1em;
            }
            .btn {
                font-size: 1em;
                padding: 12px 25px;
            }
            .product-card img {
                height: 180px;
            }
            .contact-info p {
                font-size: 1em;
                justify-content: center;
            }
            .contact-actions .btn-primary {
                font-size: 1.2em;
                padding: 15px;
            }
            footer div:first-child a {
                display: block;
                margin: 10px 0;
            }
        }

        /* Image optimizations */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            overflow-y: auto;
        }

        .modal.show {
            display: block;
        }

        .modal-content {
            background-color: #222;
            margin: 50px auto;
            padding: 30px;
            border: 1px solid var(--secondary-color);
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            color: var(--text-color);
        }

        .modal-content h2 {
            color: var(--secondary-color);
            margin-top: 0;
        }

        .modal-content p {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .close-modal {
            color: var(--secondary-color);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--accent-color);
        }
    
