
/* General Body Styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: hsl(0, 0%, 100%);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #a67c52;
  color: #fff;
  padding: 20px 40px;
  height: auto;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
  padding: 5px 10px;
  font-style: normal;

}

nav ul li a:hover {
  color: #000;
  background-color: #ffffff;
  border-radius: 5px;
}


header .logo {
  text-align: left;
}

header h1 {
  font-size: 33px;
  margin: 0;
  font-weight: bold;
}

header p {
  font-size: 16px; 
  margin: 5px 0 0;
}

.genre-title {
font-size: 40px;
text-align: center;
color: #3e2723; 
margin-bottom: 1em;
}

/* Genre Heading Styles */
h2 {
font-size: 2em;
padding: 10px 15px;
border-left: 6px solid #5a4635;
text-transform: uppercase;
}

/* Style for each genre section with brown */
.fiction h2,
.fantasy h2,
.mystery h2,
.ya h2,
.classics h2 {
background-color: #ede0d4;
color: #6d4c41; 
}

section {
  padding: 20px;
}

/* Book list styling */
section ul {
list-style: none;
padding: 0;
}

section ul li {
background-color: #fff; 
padding: 15px;
margin: 10px 0;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

section ul li:hover {
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

/* Link Styling */
section ul li a {
text-decoration: none;
font-weight: bold;
font-size: 1.1em;
color: #5a4635; 
}

section ul li a:hover {
color: #3e2723; 
}


section ul li em {
font-weight: normal;
font-style: italic;
color: #8d6e63; 
}

  footer {
    background-color: #a67c52;
    height: 200px;
    padding: 20px;
    width: 100%;
    margin: 0; 
    color: #ffffff;
}

.contact{
    display: inline-block;
    background-color: rgb(193, 171, 143);
    width: 400px;
    padding-left: 50px;
    margin-top: 15px;
    margin-left: 20px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.30);
    border-radius: 10px;
}


