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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0b0d0f;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 20px;
}

/* Hero Bereich */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(11, 13, 15, 0.75), rgba(11, 13, 15, 0.95)), url('cover.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 60px 20px;
}

.book-cover-img {
    max-width: 320px;
    height: auto;
    margin-bottom: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.05);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 12px;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #c99a2e; /* Gedämpftes Gold */
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 0;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Text-Sektionen */
.hook {
    background-color: #0e1114;
    text-align: center;
}

.hook h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #c99a2e;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.main-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    border-left: 5px solid #c99a2e;
    padding-left: 30px;
    color: #fff;
}

/* Element-Raster */
.elements {
    background-color: #0e1114;
}

.element-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.element {
    background: #161a1e;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    transition: 0.3s;
}

.element:hover {
    background: #1c2126;
    border-color: #c99a2e;
}

.element h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #c99a2e;
}

/* Verkaufs-CTA */
.final-cta {
    text-align: center;
    background: #0b0d0f;
    border-top: 1px solid #1c2126;
}

.sub-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-style: italic;
    color: #888;
}

.amazon-button {
    display: inline-block;
    padding: 22px 60px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: 0.3s;
}

.amazon-button:hover {
    background-color: #c99a2e;
    color: #fff;
}

/* Fußzeile */
footer {
    padding: 60px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #444;
    letter-spacing: 1px;
}

footer a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #fff;
}

/* Mobil-Optimierung */
@media (max-width: 900px) {
    .grid { grid-template-columns: 1fr; gap: 40px; }
    .title { font-size: 2.8rem; letter-spacing: 6px; }
    .main-quote { font-size: 1.8rem; }
}