
@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');

body {
  margin: 0;
  font-family: 'Cardo', serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #2e2e2e;
}

header {
  background: transparent;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #5c4431;
}

section {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.book-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.book {
  position: relative;
  width: 200px;
  height: 300px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #d2652d;
  color: #fff;
  width: 180px;
  text-align: center;
  font-size: 0.9rem;
  padding: 4px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.about p, .contact p {
  font-size: 1rem;
  line-height: 1.6;
}

.contact a {
  color: #5c4431;
  text-decoration: none;
  font-weight: bold;
}
