/* Import Google Font */
body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f2ff;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #ffcccb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 125px;
    margin-right: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: url('assets/background.png') no-repeat center center;
    background-size: cover;
    min-height: 700px;
    position: relative;
}
/* Hero Section */
.herotwo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: url('assets/featured-book-cover.png') no-repeat center center;
    background-size: cover;
    max-height: 150px;
    position: relative;
}

.hero-content {
    background-color: #fff5f8;
    opacity: 0.6;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 36px;
    color: #ff6f61;
    opacity: 1;
}

.cta-button {
    background-color: #ffa07a;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
}

/* Category Section */
.categories {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: #fff5f8;
}

.category {
    text-align: center;
    background-color: #ffebcd;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.category h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffcccb;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
