/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo {
    font-size: 1.5em;
    font-weight: 600;
    color: #ff9800;
}

.header .logo span {
    color: #f0f0f0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5em;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff9800;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
    color: #fff;
    padding: 3em 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.cta-button {
    display: inline-block;
    padding: 0.8em 1.5em;
    background-color: #ff9800;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ffb74d;
}

/* Typewriter Effect */
.typewriter {
    font-weight: 600;
    color: #ff9800;
    border-right: 2px solid #ff9800;
    display: inline-block;
    overflow: hidden; /* Prevent text overflow */
    white-space: nowrap;
    animation: blink 0.7s step-end infinite;
    position: relative;
    top: 3px; /* Align the text vertically */
    line-height: 1em; /* Ensures consistent block height */
    height: 1em; /* Fixes the height of the block */
}

@keyframes blink {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: #ff9800;
    }
}

/* Products Section */
.products {
    padding: 3em 0;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.product-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5em;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.2em;
    margin: 0.5em 0;
}

.price {
    color: #ff9800;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0.5em 0;
}

.button {
    background-color: #ff9800;
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #ffb74d;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 1em 0;
    font-size: 0.9em;
}

/* Impressum Content Section */
.impressum-content {
    padding: 3em 0;
    text-align: left;
}

.impressum-content h3 {
    color: #ff9800;
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.impressum-content p {
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.impressum-content a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s;
}

.impressum-content a:hover {
    color: #ffb74d;
}

