/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.content-wrapper {
    position: relative;
    z-index: 1;
}


/* Home Page Styles */
.home-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 10px 20px;
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #0097a7;
}



/* Responsive Fixes */
@media (max-width: 768px) {
    .book-grid {
        grid-template-columns: repeat(2, 1fr); /* Show 2 books per row on small screens */
    }
}

@media (max-width: 480px) {
    .book-grid {
        grid-template-columns: 1fr; /* Show 1 book per row on very small screens */
    }
}

