/* Common styles for Ohne Original */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

a.btn-amazon:hover,
a.btn-secondary:hover {
    text-decoration: none;
}

/* Homepage styles */
body.home {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    text-align: center;
    max-width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

video {
    max-width: 100%;
    max-height: 80vh;
    cursor: pointer;
    transition: all 0.3s ease;
}

video:hover {
    transform: scale(1.01);
}

.video-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    max-width: 90vw;
}

.mute-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 12px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mute-indicator svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1 {
    margin-top: 2rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 3s ease-in forwards;
    animation-delay: 2s;
    color: #aaa;
}

footer {
    padding: 20px;
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s;
    text-align: center;
    background-color: #000;
    margin-top: 40px;
}

footer:hover {
    opacity: 1;
}

footer a {
    color: #fff;
    text-decoration: none;
}

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

.marketing-content {
    max-width: 800px;
    margin: 80px auto 100px;
    padding: 0 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #ccc;
}

.marketing-content p {
    margin-bottom: 2rem;
    text-align: justify;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cover-section {
    max-width: 800px;
    margin: 40px auto 100px;
    padding: 0 20px;
}

.cover-section img {
    width: 100%;
    height: auto;
    display: block;
}

.buy-section {
    max-width: 800px;
    margin: 0 auto 120px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-amazon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FF9900;
    color: #111;
    font-weight: 500;
    line-height: 1;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.btn-amazon:hover {
    background-color: #e68a00;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #555;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #666;
    transform: translateY(-1px);
}

.btn-amazon i {
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(4px);
}

.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dc143c;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.btn-pdf:hover {
    background-color: #b01030;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-pdf i {
    font-size: 1.2rem;
    line-height: 1;
}

.scroll-arrow {
    opacity: 0;
    visibility: hidden;
    margin-top: 2rem;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-arrow.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-arrow svg {
    width: 32px;
    height: 32px;
    stroke: #aaa;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Impressum/Leseprobe page styles */
body.page {
    padding: 40px 20px;
    color: #ddd;
    line-height: 1.6;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-container h1 {
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    opacity: 1;
    animation: none;
}

.page-container h2 {
    font-weight: 400;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-container p {
    margin-bottom: 1rem;
    text-align: justify;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.page-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.page-footer a {
    margin: 0 1rem;
}

.page-ctas {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
