/* Allgemeine Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #fff;
}

h1, h2, h3 {
    color: #333;
}

header {
    background-color: #444; /* Dunkelgrau für besseren Kontrast */
    padding: 40px 0; /* Höhe des Headers erhöhen */
    color: #fff;
    position: relative;
}

header h1 {
    font-size: 2.5em;
    text-align: center; /* Text zentrieren */
    color: #ff6600;
}

nav ul {
    text-align: center;
    list-style: none;
    margin-top: 20px; /* Etwas Abstand zwischen dem Titel und der Navigation */
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1920x800') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3.5em; /* Größere Schrift für bessere Sichtbarkeit */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Textschatten für bessere Lesbarkeit */
}

.hero p {
    font-size: 1.5em;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Textschatten für bessere Lesbarkeit */
}

.cta-button {
    background-color: #ff6600;
    padding: 15px 25px;
    font-size: 1.5em;
    border-radius: 5px;
    margin-top: 20px;
    position: relative;
    top: 30px;
}

.cta-button:hover {
    background-color: #e65c00;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.about p {
    font-size: 1.3em; /* Größere Schrift für bessere Lesbarkeit */
    line-height: 1.6;
    color: #666;
    background-color: rgba(255, 255, 255, 0.7); /* Leicht transparenter Hintergrund */
    padding: 20px;
    border-radius: 10px;
}

/* Shop Section */
.shop {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.product {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.product img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info {
    max-width: 500px;
    text-align: left;
}

.product-info h3 {
    font-size: 2em;
    color: #333;
}

.product-info p {
    font-size: 1.2em;
    color: #666;
}

.buy-button {
    background-color: #ff6600;
    padding: 15px 30px;
    color: #fff;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}

.buy-button:hover {
    background-color: #e65c00;
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.contact p {
    font-size: 1.2em;
    color: #666;
}

.email {
    font-weight: bold;
    font-size: 1.3em;
    color: #333;
}

.email a {
    color: #ff6600; /* Orange für den Link */
}

.email a:hover {
    color: #e65c00; /* Dunkleres Orange */
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
