/* Reset some default margins and paddings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff; /* White background */
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Background image */
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://via.placeholder.com/1500x800?text=Books+Are+Coming+Soon') no-repeat center center/cover;
  opacity: 0.1;
  z-index: -1;
}

header {
  background-color: #0b0033; /* Dark purple header */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

header h2 {
  font-size: 1.75rem;
  color: #e63946; /* Red accent */
  margin-bottom: 30px;
  font-weight: 600;
}

header p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #ddd;
}
/* Highlight style for brand emphasis */
.highlight {
  color: #e63946;
  font-weight: 600;
}
.content {
  padding: 40px 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.social-proof p {
  font-size: 1.125rem;
  color: #333;
  margin: 20px 0;
}

.social-proof strong {
  color: #e63946;
}

.social-proof u {
  text-decoration: underline;
}

.cta {
  margin: 40px 0;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.cta a {
  font-size: 1.125rem;
  background-color: #e63946; /* Red accent */
  color: #ffffff;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta a:hover {
  background-color: #d42e3b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: #370031; /* Dark magenta footer */
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

footer p {
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.75rem;
  }
  
  header h2 {
    font-size: 1.5rem;
  }
  
  header p, .cta p {
    font-size: 1rem;
  }
  
  .cta a {
    font-size: 1rem;
    padding: 12px 30px;
  }
}
