/*
Theme Name: TAPES Lab
Theme URI: https://deine-domain.de
Author: Jan-Hinnerk Rehbehn
Description: Minimalistisches Landing-Theme für TAPES Lab.
Version: 1.0
*/

html,
body {
    margin: 0;
    padding: 0;
    background-color: #0e0e0e; /* dunkles Grau/Schwarz wie Bildrand */
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-main {
    min-height: 100vh;
}

.tapes-hero {
    background-color: #0e0e0e;
    min-height: 100vh;   /* Bildschirmhöhe */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/* Bild groß, zentriert, aber mit sauberem Max-Limit */
.tapes-hero-image {
    display: block;
    width: 100%;
    max-width: 1400px; /* vorher 1024px – deutlich größer */
    height: auto;
    margin: 0 auto;
}

/* Contentbereich für späteren Text */
.tapes-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

/* Simple Footer */
.site-footer {
    text-align: center;
    padding: 1.5rem 0 2rem;
    font-size: 0.8rem;
    color: #888;
}
.tapes-product-page {
    background: #050609;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.tapes-section {
    padding: 5rem 1.5rem;
}

.tapes-section.alt {
    background: radial-gradient(circle at top left, rgba(255,140,0,0.06), transparent 60%);
}

.tapes-container {
    max-width: 1100px;
    margin: 0 auto;
}

.tapes-eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    opacity: .7;
    margin-bottom: .75rem;
}

.tapes-section.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.tapes-subtitle {
    max-width: 640px;
    font-size: 1rem;
    opacity: .85;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.tapes-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.tapes-section p {
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: .9;
}

.tapes-section ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    opacity: .9;
}

.visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 0 70px rgba(255, 140, 0, 0.2);
}

/* Responsive */
@media (max-width: 799px) {
    .two-col {
        grid-template-columns: 1fr;
    }
    .visual {
        order: -1; /* Bild zuerst auf Mobile, wenn du willst */
    }
    .tapes-section {
        padding: 3.5rem 1.25rem;
    }
}
/* ------------------------------ */
/* TAPES Lightbox (Image Zoom)    */
/* ------------------------------ */

.tapes-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 9999;
    cursor: zoom-out;
    animation: tapesOverlayFade .25s ease;
}

@keyframes tapesOverlayFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.tapes-lightbox-overlay img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 18px; /* wie deine Visuals */
    box-shadow: 0 0 70px rgba(255, 140, 0, 0.25); /* CI Glow */
    animation: tapesZoomIn .25s ease;
}

@keyframes tapesZoomIn {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1); }
}

/* Cursor-Hinweis */
.tapes-lightbox {
    cursor: zoom-in;
}

