/* Schriftart von Google Fonts importieren */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* Grundlegendes Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #f5f5f5;
    font-family: 'Cinzel', serif;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #1a1a1a;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #E53935; /* Links standardmäßig rot */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #8B0000; /* Dunkleres Rot beim Hover */
}

/* Sprachwahl */
.language-select select {
    background-color: #1a1a1a;
    color: #f5f5f5;
    border: none;
    padding: 5px;
}

/* Hero-Bereich */
.hero {
    text-align: center;
    padding: 60px 20px;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #f5f5f5;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #E53935;
    color: #f5f5f5;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #8B0000;
}

/* Hauptinhalt */
main {
    padding: 40px 20px;
    text-align: center;
}

.intro h2 {
    font-size: 2rem;
    color: #E53935;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.2rem;
}

/* Titel für die Box-Sektionen */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: #E53935;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Container für Reihen */
.primary-highlights,
.secondary-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Highlight-Boxen */
.highlight {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #f5f5f5;
    width: calc(33.33% - 20px); /* Drei Boxen nebeneinander auf größeren Bildschirmen */
    max-width: 250px;
    flex: 1 1 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: #f5f5f5;
}

/* Halbtransparenter Hintergrund für Text in Boxen */
.highlight h3, .highlight p {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .highlight {
        width: 100%; /* Volle Breite auf mobilen Geräten */
    }
}

/* Styling für das Dropdown-Menü */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 150px;
    z-index: 1000;
}

.dropdown-menu li {
    text-align: left;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #E53935;
}

/* Anzeige des Dropdown-Menüs bei Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


/* Cookie-Policy-Benachrichtigung */
.cookie-policy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #f5f5f5;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

.cookie-policy p {
    margin: 0;
}

.cookie-policy a {
    color: #E53935;
    text-decoration: underline;
}

.btn-accept {
    background-color: #E53935;
    color: #f5f5f5;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #8B0000;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    text-align: center;
    padding: 20px;
}

.footer-content nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.footer-content nav ul li {
    margin: 0 10px;
}

.footer-content nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
}

.footer-content nav ul li a:hover {
    color: #E53935;
}

/* Social Media Links im Footer */
.social-media a {
    color: #E53935; /* Standardfarbe Rot */
    text-decoration: none;
}

.social-media a:hover {
    color: #8B0000; /* Dunkleres Rot beim Hover */
}

.about-main {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #f5f5f5;
    line-height: 1.8;
}

.about-main h1, .about-main h2 {
    color: #E53935;
    text-align: center;
    margin-bottom: 20px;
}

.about-main p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-main ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.about-main ul li {
    margin-bottom: 10px;
}

.about-main ul li strong {
    color: #E53935;
}

.join-us {
    text-align: center;
    margin-top: 40px;
}

main a {
    color: #E53935;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

main a:hover {
    color: #8B0000;
}

.shop-main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    color: #f5f5f5;
}

.shop-intro h1, .shop-intro p {
    text-align: center;
    color: #E53935;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: calc(33.33% - 20px); /* Drei Karten pro Reihe */
    max-width: 300px;
    color: #f5f5f5;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #E53935;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-card a.btn-primary {
    background-color: #E53935;
    color: #f5f5f5;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.product-card a.btn-primary:hover {
    background-color: #8B0000;
}

@media (max-width: 767px) {
    .product-card {
        width: 100%; /* Volle Breite auf mobilen Geräten */
    }
}

.free-main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    color: #f5f5f5;
}

.free-intro h1, .free-intro p {
    text-align: center;
    color: #E53935;
    margin-bottom: 20px;
}

.free-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.free-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: calc(33.33% - 20px); /* Drei Karten pro Reihe */
    max-width: 300px;
    color: #f5f5f5;
}

.free-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.free-card h3 {
    color: #E53935;
    margin-bottom: 10px;
}

.free-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.free-card a.btn-primary {
    background-color: #E53935;
    color: #f5f5f5;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.free-card a.btn-primary:hover {
    background-color: #8B0000;
}

@media (max-width: 767px) {
    .free-card {
        width: 100%; /* Volle Breite auf mobilen Geräten */
    }
}

.resources-main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    color: #f5f5f5;
}

.resources-intro h1, .resources-intro p {
    text-align: center;
    color: #E53935;
    margin-bottom: 20px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.resource-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: calc(33.33% - 20px); /* Drei Karten pro Reihe */
    max-width: 300px;
    color: #f5f5f5;
}

.resource-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.resource-card h3 {
    color: #E53935;
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.resource-card a.btn-primary {
    background-color: #E53935;
    color: #f5f5f5;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.resource-card a.btn-primary:hover {
    background-color: #8B0000;
}

@media (max-width: 767px) {
    .resource-card {
        width: 100%; /* Volle Breite auf mobilen Geräten */
    }
}

.blog-main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    color: #f5f5f5;
}

.blog-intro h1, .blog-intro p {
    text-align: center;
    color: #E53935;
    margin-bottom: 20px;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: calc(33.33% - 20px); /* Drei Karten pro Reihe */
    max-width: 300px;
    color: #f5f5f5;
}

.blog-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-card h3 {
    color: #E53935;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.blog-card a.btn-primary {
    background-color: #E53935;
    color: #f5f5f5;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blog-card a.btn-primary:hover {
    background-color: #8B0000;
}

@media (max-width: 767px) {
    .blog-card {
        width: 100%; /* Volle Breite auf mobilen Geräten */
    }
}
.privacy-main {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #f5f5f5;
}

.privacy-intro h1, .privacy-intro p {
    text-align: center;
    color: #E53935;
    margin-bottom: 20px;
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h2 {
    color: #E53935;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
}

.terms-main {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #f5f5f5;
}

.terms-intro h1, .terms-intro p {
    text-align: center;
    color: #E53935;
    margin-bottom: 20px;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    color: #E53935;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.8;
}

.impressum-main {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #f5f5f5;
}

.impressum-intro h1, .impressum-intro p {
    text-align: center;
    color: #E53935;
    margin-bottom: 20px;
}

.impressum-section {
    margin-bottom: 30px;
}

.impressum-section h2 {
    color: #E53935;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.impressum-section p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Styling für das Dropdown-Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li {
    text-align: left;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #E53935;
}

/* Anzeige des Dropdown-Menüs bei Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
