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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #111827;
    color: #f9fafb;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #93c5fd;
    outline-offset: 3px;
}

small {
    font-size: 0.95rem;
    color: #d1d5db;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: white;
    color: black;
    padding: 10px;
}

.skip-link:focus {
    left: 10px;
}

header {
    background: #1f2937;
    padding: 1rem 2rem;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #3b82f6;
    font-size: 2rem;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo img:hover {
    opacity: 0.85;
    transition: 0.2s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #f9fafb;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #3b82f6;
}


.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1f2937, #111827);
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    background: #1d4ed8;
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn:hover,
.btn:focus {
    background: #1e40af;
}

.featured {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.featured h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: #1f2937;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}

footer {
    background: #1f2937;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.footer-links a {
    color: #d1d5db;
    margin: 0 10px;
    text-decoration: none;
}

.botlogo img {
    height: 60px;
    width: auto;
    margin-right: 1rem;
    transition: 0.2s ease;
}

.botlogo img:hover {
    transform: scale(1.05);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #3b82f6;
    text-decoration: underline;
}

#cookie-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 2rem;
    z-index: 9999;
}

.cookie-box {
    background: #1f2937;
    color: #f9fafb;
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: slideUp 0.4s ease;
}

.cookie-box p {
    margin-bottom: 1rem;
    color: #d1d5db;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-buttons button {
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

#accept-cookies {
    background: #3b82f6;
    color: white;
}

#accept-cookies:hover {
    background: #2563eb;
}

#decline-cookies {
    background: #374151;
    color: #f9fafb;
}

#decline-cookies:hover {
    background: #4b5563;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Impressum PAGE                      */
.impressum-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2.5rem;
    background: #1f2937;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.impressum-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}


.impressum-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0.5rem 2rem;
    line-height: 1.7;
}

dt {
    font-weight: bold;
    color: #d1d5db;
}

dd {
    margin: 0;
    color: #f9fafb;
}


.impressum-grid a {
    color: #60a5fa;
    text-decoration: none;
}

.impressum-grid a:hover,
.impressum-grid a:focus {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .impressum-grid span:nth-child(odd) {
        margin-top: 1rem;
    }
}

/* Contact PAGE                          */

.contact-container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 700px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
}

.contact-info,
.contact-form {
    background: #1f2937;
    padding: 2rem;
    border-radius: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #f9fafb;
    opacity: 0.5;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: transparent;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: #60a5fa;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background: #111827;
    color: white;
    font-size: 1rem;
}

.contact-form button {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover,
.contact-form button:focus {
    background: #2563eb;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}



/*ABOUT PAGE                          */
.about-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
}

.about-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-section {
    margin-top: 3rem;
}

.about-section h2 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.about-section p {
    line-height: 1.8;
    color: #f9fafb;
}

.about-section ul {
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.about-section li {
    margin-bottom: 0.4rem;
}

.brand-card {
    background: #1f2937;
    padding: 2rem;
    border-radius: 14px;
    margin-top: 1.5rem;
}

.brand-card h3 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

/* LEGAL*/

.legal-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2.5rem;
    background: #1f2937;
    border-radius: 16px;
    line-height: 1.8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.legal-container ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.legal-container a{
    color: #60a5fa;
}

/*CREDITS in Lizenz*/
.credits-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    color: #f9fafb;
    font-size: 0.95rem;
}

.credits-table thead tr {
    border-bottom: 2px solid #3b82f6;
    text-align: left;
}

.credits-table th,
.credits-table td {
    padding: 12px 15px;
}

.credits-table tbody tr {
    border-bottom: 1px solid #374151;
    transition: background 0.2s ease;
}

.credits-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.credits-table a {
    color: #60a5fa;
    text-decoration: none;
}

.credits-table a:hover {
    text-decoration: underline;
}

.brand-card p {
    margin-bottom: 1rem;
}

.brand-card ul {
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .credits-table {
        display: block;
        overflow-x: auto;
    }
}

/* LIZENZ */

.credits-note {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    color: #d1d5db;
}
