/* CSS Custom Properties for theming - Updated to match main website */
:root {
--primary-color: #64ffda;
--secondary-color: #ff6b6b;
--accent-color: #64ffda;
--bg-primary: #0a0a0a;
--bg-secondary: #1a1a1a;
--bg-tertiary: #2a2a2a;
--text-primary: #ffffff;
--text-secondary: #b3b3b3;
--text-muted: #808080;
--border-color: #333333;
--shadow-light: rgba(100, 255, 218, 0.1);
--shadow-medium: rgba(0, 0, 0, 0.3);
--shadow-heavy: rgba(0, 0, 0, 0.7);
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
--gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
--transition-speed: 0.3s;
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
--font-display: 'DM Sans', var(--font-primary);
--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--spacing-sm: 2rem;
}

/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
background: var(--primary-color);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: var(--accent-color);
}

/* Utility classes */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

/* Floating Icons Animation */
.floating-icons {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}

.floating-icon {
position: absolute;
color: var(--accent-color);
opacity: 0.1;
font-size: 1.5rem;
animation-timing-function: linear;
animation-iteration-count: infinite;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
.floating-icon {
animation: none;
opacity: 0.05;
 }
}

/* Individual icon animations */
.icon-1 {
top: 20%;
left: -50px;
animation: floatRight 20s linear infinite;
animation-delay: 0s;
font-size: 2rem;
opacity: 0.08;
}

.icon-2 {
top: 40%;
right: -50px;
animation: floatLeft 25s linear infinite;
animation-delay: -5s;
font-size: 1.8rem;
opacity: 0.12;
}

.icon-3 {
top: 60%;
left: -50px;
animation: floatRight 30s linear infinite;
animation-delay: -10s;
font-size: 2.2rem;
opacity: 0.06;
}

.icon-4 {
top: 80%;
right: -50px;
animation: floatLeft 22s linear infinite;
animation-delay: -15s;
font-size: 1.6rem;
opacity: 0.1;
}

.icon-5 {
top: 15%;
left: -50px;
animation: floatRight 28s linear infinite;
animation-delay: -8s;
font-size: 1.4rem;
opacity: 0.09;
}

.icon-6 {
top: 70%;
right: -50px;
animation: floatLeft 24s linear infinite;
animation-delay: -12s;
font-size: 1.9rem;
opacity: 0.07;
}

.icon-7 {
top: 30%;
left: -50px;
animation: floatRight 26s linear infinite;
animation-delay: -3s;
font-size: 1.7rem;
opacity: 0.11;
}

.icon-8 {
top: 50%;
right: -50px;
animation: floatLeft 21s linear infinite;
animation-delay: -18s;
font-size: 1.3rem;
opacity: 0.08;
}

.icon-9 {
top: 10%;
left: -50px;
animation: floatRight 32s linear infinite;
animation-delay: -6s;
font-size: 2.1rem;
opacity: 0.05;
}

.icon-10 {
top: 90%;
right: -50px;
animation: floatLeft 27s linear infinite;
animation-delay: -9s;
font-size: 1.5rem;
opacity: 0.13;
}

.icon-11 {
top: 25%;
left: -50px;
animation: floatRight 23s linear infinite;
animation-delay: -14s;
font-size: 1.8rem;
opacity: 0.09;
}

.icon-12 {
top: 65%;
right: -50px;
animation: floatLeft 29s linear infinite;
animation-delay: -7s;
font-size: 1.6rem;
opacity: 0.06;
}

.icon-13 {
top: 35%;
left: -50px;
animation: floatRight 31s linear infinite;
animation-delay: -11s;
font-size: 2rem;
opacity: 0.1;
}

.icon-14 {
top: 75%;
right: -50px;
animation: floatLeft 26s linear infinite;
animation-delay: -16s;
font-size: 1.4rem;
opacity: 0.12;
}

.icon-15 {
top: 45%;
left: -50px;
animation: floatRight 24s linear infinite;
animation-delay: -4s;
font-size: 1.7rem;
opacity: 0.07;
}

/* Keyframe animations for floating icons */
@keyframes floatRight {
 0% {
transform: translateX(-100px) translateY(0px) rotate(0deg);
 }
 25% {
transform: translateX(25vw) translateY(-20px) rotate(90deg);
 }
 50% {
transform: translateX(50vw) translateY(15px) rotate(180deg);
 }
 75% {
transform: translateX(75vw) translateY(-10px) rotate(270deg);
 }
 100% {
transform: translateX(calc(100vw + 100px)) translateY(0px) rotate(360deg);
 }
}

@keyframes floatLeft {
 0% {
transform: translateX(100px) translateY(0px) rotate(0deg);
 }
 25% {
transform: translateX(-25vw) translateY(20px) rotate(-90deg);
 }
 50% {
transform: translateX(-50vw) translateY(-15px) rotate(-180deg);
 }
 75% {
transform: translateX(-75vw) translateY(10px) rotate(-270deg);
 }
 100% {
transform: translateX(calc(-100vw - 100px)) translateY(0px) rotate(-360deg);
 }
}

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border-color);
z-index: 1000;
transition: all 0.3s ease;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
}

.nav-logo a {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
font-family: var(--font-display);
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
color: var(--primary-color);
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--gradient-primary);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}

.bar {
width: 25px;
height: 3px;
background: var(--text-primary);
margin: 3px 0;
transition: 0.3s;
border-radius: 2px;
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background: radial-gradient(circle at 30% 70%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.hero-content {
display: grid;
grid-template-columns: 1fr;
gap: 4rem;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
text-align: center;
}

.hero-text h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1rem;
background-clip: text;
line-height: 1.2;
font-family: var(--font-display);
}

.hero-text span{
color: var(--accent-color);
}

.hero-text p {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.6;
}

.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}

.btn {
padding: 1rem 2rem;
border: none;
border-radius: 1rem;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
position: relative;
overflow: hidden;
}

.btn-primary {
background: var(--gradient-primary);
color: var(--bg-primary);
}

.btn-secondary {
background: transparent;
color: var(--text-primary);
border: 2px solid var(--primary-color);
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px var(--shadow-light);
}

.btn-secondary:hover {
background: var(--primary-color);
color: var(--bg-primary);
}

.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
}

.scroll-arrow {
animation: bounce 2s infinite;
color: var(--primary-color);
font-size: 1.5rem;
}

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

/* Section Headers */
.section-header {
text-align: center;
margin-bottom: 2rem;
}

.section-header h2 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-primary);
}

.section-header h2 i {
color: var(--primary-color);
margin-right: 1rem;
}

.section-header p {
font-size: 1.25rem;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
}

/* Gallery Sections */
.gallery-section {
position: relative;
border-top: 1px solid var(--border-color);
min-height: 80vh;
}

/* Split-screen gallery specific styles */
.gallery-section:first-of-type {
min-height: 80vh;
}

.gallery-section:not(:first-of-type) {
padding: 3rem 0;
min-height: 80vh;
}

.gallery-section:nth-child(even) {
background: var(--bg-primary);
}

/* Gallery Container - Split Screen */
.gallery-container {
display: grid;
grid-template-columns: 1fr 1fr;
height: 65vh;
max-width: 1200px;
margin: 0 auto;
}

/* Left Panel - Information */
.info-panel {
background-color: var(--bg-primary);
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.info-content {
text-align: center;
max-width: 500px;
padding: 2rem;
}

.artwork-info {
margin-bottom: 3rem;
opacity: 1;
transform: translateY(0);
transition: var(--transition);
}

.artwork-info.changing {
opacity: 0;
transform: translateY(20px);
}

.artwork-title {
font-size: 2.5rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-align: left;
}

.artwork-artist {
font-size: 1.25rem;
font-weight: 500;
color: var(--primary-color);
margin-bottom: 0.5rem;
text-align: left;
}

.artwork-year {
font-size: 1rem;
color: var(--text-secondary);
font-weight: 300;
text-align: left;
}

/* Navigation hint enhancement */
.navigation-hint {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
margin-bottom: 2rem;
opacity: 0.7;
transition: var(--transition);
padding: 1.5rem;
}

.navigation-hint:hover {
opacity: 1;
}

.nav-icon {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}

.nav-icon i {
width: 24px;
height: 24px;
color: var(--primary-color);
animation: pulse 2s infinite;
cursor: pointer;
transition: var(--transition);
padding: 10px;
border-radius: 50%;
border: 1px solid transparent;
}

.navigation-hint p {
font-size: 0.875rem;
color: var(--text-secondary);
font-weight: 400;
}

/* Right Panel - Image */
.image-panel {
background-color: var(--bg-primary);
position: relative;
overflow: hidden;
/* Use flexbox for centering on all screens */
display: flex;
align-items: center;
justify-content: center;
}

.image-container {
width: 100%;
height: 100%;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.artwork-img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
border-radius: 15px;
box-shadow: 0 20px 40px var(--shadow-medium), 0 10px 20px var(--shadow-light);
transition: var(--transition);
opacity: 1;
transform: scale(1);
}

.artwork-img.changing {
opacity: 0;
transform: scale(0.95);
}

.image-loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
pointer-events: none;
transition: var(--transition);
}

.image-loader.visible {
opacity: 1;
}

.loader-spinner {
width: 40px;
height: 40px;
border: 3px solid var(--border-color);
border-top: 3px solid var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
}

.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--bg-primary);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
z-index: 1000;
opacity: 1;
transition: var(--transition);
}

.loading-overlay.hidden {
opacity: 0;
pointer-events: none;
}

.loading-overlay p {
color: var(--text-secondary);
font-size: 1rem;
font-weight: 400;
}

/* Animations */
@keyframes spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}

@keyframes pulse {
 0%, 100% {
opacity: 1;
transform: scale(1);
 }
 50% {
opacity: 0.7;
transform: scale(1.05);
 }
}

/* Carousel Styles - for other sections */
.carousel-container {
position: relative;
margin: 2rem 0;
}

.carousel-wrapper {
overflow: hidden;
border-radius: 15px;
position: relative;
}

.carousel-track {
display: flex;
transition: transform 0.5s ease;
gap: 2rem;
}

.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(100, 255, 218, 0.1);
backdrop-filter: blur(10px);
border: 2px solid var(--primary-color);
width: 50px;
height: 50px;
border-radius: 50%;
color: var(--primary-color);
font-size: 1.2rem;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
}

.carousel-btn:hover {
background: var(--primary-color);
color: var(--bg-primary);
transform: translateY(-50%) scale(1.1);
}

.carousel-btn-left {
left: -25px;
}

.carousel-btn-right {
right: -25px;
}

/* Grid Gallery Styles for Sports and Adventure */
.grid-gallery {
padding: 6rem 0;
}

.filter-buttons {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.filter-btn {
padding: 0.8rem 1.5rem;
border: 2px solid var(--border-color);
background: transparent;
color: var(--text-secondary);
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
background: var(--primary-color);
color: var(--bg-primary);
border-color: var(--primary-color);
}

.image-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
max-width: 1200px;
margin: 3rem auto 0;
}

.grid-item {
position: relative;
background: var(--bg-secondary);
border-radius: 1rem;
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
aspect-ratio: 4/3;
opacity: 1;
display: block;
}

.grid-item:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px var(--shadow-medium);
}

.grid-item.hidden {
display: none;
opacity: 0;
}

.grid-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease;
}

.grid-item:hover .grid-image {
transform: scale(1.05);
}

.image-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.8));
color: var(--text-primary);
padding: 2rem 1.5rem 1.5rem;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.grid-item:hover .image-overlay {
transform: translateY(0);
}

.image-overlay h4 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--primary-color);
}

.image-overlay p {
font-size: 0.9rem;
color: var(--text-secondary);
}

/* Books Section - Fixed for better mobile spacing */
.books-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
padding: 2rem 0;
max-width: 1200px;
margin: 0 auto;
}

.book-item {
background: var(--bg-tertiary);
border-radius: 15px;
padding: 1.5rem;
transition: all 0.3s ease;
text-align: center;
width: 100%;
}

.book-item:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px var(--shadow-medium);
background: linear-gradient(135deg, var(--bg-tertiary), rgba(100, 255, 218, 0.05));
}

.book-cover {
position: relative;
width: 150px;
height: 225px;
margin: 0 auto 1.5rem;
border-radius: 10px;
overflow: hidden;
background: var(--bg-secondary);
border: 2px solid var(--border-color);
}

.book-placeholder {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
font-size: 3rem;
color: var(--text-muted);
}

.book-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.book-info h4 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--text-primary);
}

.book-info p {
color: var(--text-secondary);
margin-bottom: 1rem;
}

.book-rating {
color: #ffd700;
font-size: 1.1rem;
}

/* Section Styles */
.about, .contact {
padding: 4rem 0;
border-top: 1px solid var(--border-color);
}

.section-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.section-title {
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 2rem;
color: var(--accent-color);
position: relative;
}

.section-title::after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 50%;
width: 60px;
height: 3px;
background-color: var(--accent-color);
transform: translateX(-50%);
border-radius: 2px;
}

.about-text {
font-size: 1.1rem;
color: var(--text-secondary);
line-height: 1.8;
max-width: 600px;
margin: 0 auto;
}

/* Contact Section */
.contact-description {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.contact-methods {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
}

.contact-link {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.25rem 2rem;
background-color: var(--bg-secondary);
border: 2px solid var(--border-color);
border-radius: 0.75rem;
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
transition: all var(--transition-speed) ease;
position: relative;
}

.contact-link:hover {
border-color: var(--accent-color);
background-color: rgba(100, 255, 218, 0.05);
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(100, 255, 218, 0.1);
}

.contact-link i {
font-size: 1.2rem;
color: var(--accent-color);
}

/* Footer */
.footer {
padding: 2rem 0;
border-top: 1px solid var(--border-color);
text-align: center;
color: var(--text-muted);
font-size: 0.9rem;
}

.footer p {
color: var(--text-muted);
}

/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(5px);
}

.modal-content {
position: relative;
margin: auto;
padding: 0;
width: 90%;
max-width: 1000px;
max-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
top: 50%;
transform: translateY(-50%);
}

.modal-content img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
position: absolute;
top: -40px;
right: 0;
color: var(--text-primary);
font-size: 2rem;
font-weight: bold;
cursor: pointer;
transition: color 0.3s ease;
}

.close-modal:hover {
color: var(--primary-color);
}

/* Animation classes */
.animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}

.animate-on-scroll.animated {
opacity: 1;
transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background-color: var(--bg-secondary);
width: 100%;
text-align: center;
transition: 0.3s;
padding: 2rem 0;
border-top: 1px solid var(--border-color);
 }

.nav-menu.active {
left: 0;
 }

.hamburger {
display: flex;
 }

.hero-text h1 {
font-size: 2.5rem;
 }

.section-header h2 {
font-size: 2rem;
 }

.gallery-container {
grid-template-columns: 1fr;
height: auto;
 }

.info-panel {
order: 2;
padding: 2rem 0;
 }

.image-panel {
order: 1;
height: 50vh;
 }

.image-container {
padding-left: 0;
justify-content: center;
 }

.artwork-img {
max-width: 90%;
 }

.artwork-title {
font-size: 2rem;
text-align: center;
 }

.artwork-artist,
.artwork-year {
text-align: center;
 }

.contact-methods {
flex-direction: column;
align-items: center;
 }

.contact-link {
min-width: 250px;
justify-content: center;
 }

.carousel-btn-left {
left: 10px;
 }

.carousel-btn-right {
right: 10px;
 }

.close-modal {
top: 10px;
right: 20px;
font-size: 30px;
 }

/* Books Section Mobile Fixes */
.books-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
padding: 2rem 1rem;
}

.book-item {
padding: 1.25rem;
}

.book-cover {
width: 120px;
height: 180px;
margin-bottom: 1rem;
}

.book-info h4 {
font-size: 1.1rem;
line-height: 1.3;
}

.book-info p {
font-size: 0.9rem;
margin-bottom: 0.75rem;
}
}

@media (max-width: 480px) {
.container {
padding: 0 1rem;
 }

.nav-container {
padding: 0 1rem;
 }

.hero-content {
padding: 0 1rem;
 }

.hero-text h1 {
font-size: 2rem;
 }

.hero-text p {
font-size: 1rem;
 }

.section-header h2 {
font-size: 1.5rem;
 }

.section-header p {
font-size: 1rem;
 }

.artwork-title {
font-size: 1.5rem;
 }

.contact-item {
padding: 1rem;
 }

.contact-icon {
width: 50px;
height: 50px;
font-size: 1.25rem;
 }

/* Books Section Mobile Fixes for Small Screens */
.books-grid {
grid-template-columns: 1fr 1fr;
gap: 1rem;
padding: 1.5rem 0.5rem;
}

.book-item {
padding: 1rem;
}

.book-cover {
width: 100px;
height: 150px;
margin-bottom: 0.75rem;
}

.book-placeholder {
font-size: 2rem;
}

.book-info h4 {
font-size: 1rem;
margin-bottom: 0.25rem;
}

.book-info p {
font-size: 0.8rem;
margin-bottom: 0.5rem;
}

.book-rating {
font-size: 1rem;
}
}

/* Extra small screens */
@media (max-width: 320px) {
.books-grid {
grid-template-columns: 1fr;
gap: 1rem;
padding: 1rem 0.5rem;
}

.book-item {
max-width: 280px;
margin: 0 auto;
}

.book-cover {
width: 120px;
height: 180px;
}
}