/* General */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1E1E2F;
    color: #FFFFFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background-color: #2A2A3D;
    padding: 20px 0;
}

header .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #FF6F61;
    display: inline-block;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #FF6F61;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #2A2A3D, #1E1E2F);
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #FF6F61;
    color: #FFFFFF;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.hero .btn:hover {
    background-color: #FF8573;
}

/* Library Section */
.library {
    padding: 80px 0;
}

.library h2 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
}

.book-card {
    background-color: #2A2A3D;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-card img {
    width: 150px;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.book-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.book-card p {
    font-size: 14px;
    margin: 3px 0;
}

.book-card .btn {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255,111,97,0.4);
}

/* About / Creator Section */
.about {
    padding: 60px 0;
    background-color: #2A2A3D;
    text-align: center;
    color: #FFFFFF;
}

.about h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF6F61;
}

.about p {
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #2A2A3D;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 50px;
    color: #AAAAAA;
}

footer strong {
    color: #FF6F61;
}
