/* ====== GLOBAL ====== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070814;
  color: #f5f5f7;
  line-height: 1.6;
}

a {
  color: #ffb347;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====== LAYOUT ====== */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background: radial-gradient(circle at top, #1b1f3b 0, #050510 55%, #020208 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand span {
  color: #ffb347;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e5ea;
}

nav a.active {
  color: #ffb347;
}

/* ====== HERO ====== */
.hero {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #9d9db5;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #ffb347;
}

.hero-sub {
  font-size: 1.02rem;
  color: #d0d0e0;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb347, #ff6f61);
  color: #1b1020;
  font-weight: 600;
}

.btn-outline {
  border-color: #ffb347;
  color: #ffb347;
  background: transparent;
}

.hero-meta {
  font-size: 0.8rem;
  color: #9d9db5;
}

.hero-card {
  background: radial-gradient(circle at top left, #262b52 0, #111322 40%, #050510 100%);
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9d9db5;
  margin-bottom: 0.5rem;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-card-tagline {
  font-size: 0.9rem;
  color: #d0d0e0;
  margin-bottom: 0.8rem;
}

.hero-card-meta {
  font-size: 0.8rem;
  color: #9d9db5;
}

/* ====== SECTIONS ====== */
section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #9d9db5;
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 0.95rem;
  color: #c7c7d8;
  margin-bottom: 1.5rem;
}

/* ====== GRID CARDS ====== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #111322;
  border-radius: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: #d0d0e0;
  margin-bottom: 0.6rem;
}

.card-meta {
  font-size: 0.8rem;
  color: #9d9db5;
}

/* ====== EMAIL SIGNUP ====== */
.signup {
  background: radial-gradient(circle at top, #262b52 0, #111322 50%, #050510 100%);
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
}

.signup h3 {
  margin-bottom: 0.4rem;
}

.signup p {
  font-size: 0.9rem;
  color: #d0d0e0;
  margin-bottom: 0.9rem;
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.signup-form input[type="email"] {
  flex: 1 1 180px;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 15, 0.9);
  color: #f5f5f7;
  font-size: 0.9rem;
}

/* ====== BLOG LIST ====== */
.blog-list {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
}

.blog-post {
  margin-bottom: 1.5rem;
}

.blog-post h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.blog-post-meta {
  font-size: 0.8rem;
  color: #9d9db5;
  margin-bottom: 0.4rem;
}

.blog-sidebar h4 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* ====== CONTACT FORM ====== */
form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 15, 0.9);
  color: #f5f5f7;
  font-size: 0.9rem;
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ====== FOOTER ====== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0 2rem;
  font-size: 0.8rem;
  color: #9d9db5;
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}
.book-overview{
  display:flex;
  gap:30px;
  align-items:flex-start;
}

.book-image img{
  width:220px;
  height:auto;
  border-radius:6px;
}

.book-text{
  flex:1;
}
.book-overview{
  display:flex;
  gap:30px;
  align-items:flex-start;
}

.book-image img{
  width:220px;
  height:auto;
  border-radius:6px;
}

.book-text{
  flex:1;
}