/* Hier werden alle CSS-Stile zentral verwaltet */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.mt-100 {
    margin-top: 100px !important;
}

.flex-1 {
    flex: 1;
}

.impressum-padding {
    padding-left: 20px;
    padding-right: 20px;
}


/* Footer */
footer {
    width: 100%;
    background-color: #ffffff;
    margin-top: auto;
}

footer a {
    text-decoration: none;
    color: #666666;
    transition: color 0.2s;
}

footer a:hover {
    color: #398FB7;
    /* Headline Color */
}


/* Navbar */
.navbar {
    background-color: #ffffff;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 100%;
    max-width: 1200px;
}


/* Mail Links */
a[href^="mailto"] {
    color: #007bff;
    text-decoration: none;
}


/* Container */
.container {
    max-width: 1200px;
}


/* Headlines */
h1 {
    font-size: 2em;
    color: #398FB7;
}

.subline {
    color: #015176;
}


/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    max-height: 180px;
    aspect-ratio: 20/6;
    object-fit: cover;
    display: block;
}

.hero-text-moin {
    position: absolute;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    top: 20%;
    left: 10%;
    font-size: clamp(2rem, 5vw, 4rem);
}


/* T-Shirt Grid */
.tshirt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.tshirt-tile {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.tshirt-tile img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.tshirt-tile p {
    font-weight: bold;
    margin: 0;
}

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


/* -------------------------------------------------- */
/*      NEUER PROFESSIONELLER COOKIE-BANNER (NEU)     */
/* -------------------------------------------------- */

#cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    z-index: 99999;
    display: flex;
    justify-content: center;
}

.cookie-box {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 32px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    font-family: system-ui, sans-serif;
}

.cookie-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cookie-text {
    color: #444;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.cookie-text a {
    color: #398FB7;
    /* Headline Color */
    text-decoration: none;
    font-weight: normal;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.cookie-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    cursor: pointer;
}

.cookie-option input {
    margin-top: 4px;
    transform: scale(1.2);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
    transition: 0.2s ease;
}

/* Button Colors */
.cookie-btn.primary {
    background: #0066ff;
    color: #fff;
}

.cookie-btn.primary:hover {
    background: #0054d6;
}

.cookie-btn.dark {
    background: #333;
    color: #fff;
}

.cookie-btn.dark:hover {
    background: #222;
}

.cookie-btn.light {
    background: #e7e7e7;
}

.cookie-btn.light:hover {
    background: #dcdcdc;
}

/* Mobile Anpassung */
@media (max-width: 480px) {
    #cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .cookie-box {
        padding: 22px;
    }
}