/* Grundlayout */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5efff;
    color: #000000;
}

/* Kopfbereich */

header {
    background-color: #8d5cc7;
    color: white;
    padding: 40px 20px;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.autorin-foto {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    flex-shrink: 0;
}

.header-text {
    text-align: left;
}

.header-text h1 {
    margin: 0;
    font-size: 4rem;
}

.header-text p {
    margin-top: 10px;
    margin-bottom: 0;
}

/* Navigation */

nav {
    background-color: #cdb6f6;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 15px 25px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background-color: #8d5cc7;
    color: white;
}

/* Inhalt */

main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.buch {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9c8f7;
}

    
.book-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);

    margin-top: 30px;
    padding: 30px;

    display: flex;
    align-items: center;
    gap: 30px;
    
}

.book-cover img {
    width: 180px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.book-info {
    flex: 1;
    
}

.book-info h2 {
    color: #8d5cc7;
    margin-top: 0;
}

.button {
    display: inline-block;
    margin-top: 15px;
    background-color: #8d5cc7;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background-color: #7446b3;
}



.bucheintrag {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;

    display: flex;
    gap: 30px;
    align-items: flex-start;

    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.buch-cover img {
    width: 160px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.buch-text {
    flex: 1;
}

.buch-text h2 {
    margin-top: 0;
    color: #8d5cc7;
}

@media (max-width: 768px) {

    .bucheintrag {
        flex-direction: column;
        text-align: center;
    }

    .buch-cover img {
        width: 220px;
        margin: 0 auto;
        display: block;
    }


@media (max-width: 768px) {

    .book-box {
        flex-direction: column;
        text-align: center;
    }

    .book-cover img {
        width: 220px;
    }

}
    
}
    

/* Footer */

footer {
    background-color: #a575dd;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 50px;
}

/* Smartphone */

@media (max-width: 768px) {

    nav ul {
        flex-direction: column;
    }

    nav a {
        text-align: center;
    }

    header h1 {
        font-size: 2.2rem;
    }

}

