*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:        #2a1a2e;
  --surface:   rgba(255,255,255,0.07);
  --accent:    #c9a96e;
  --text:      #f0e6d3;
  --muted:     #9e8a7a;
  --card-bg:   rgba(255,255,255,0.10);
  --radius:    14px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(120,60,100,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(80,40,90,0.3) 0%, transparent 50%);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background: rgba(30,15,35,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 6%;
  gap: 40px;
}

.hero-left {
  max-width: 480px;
  animation: fadeUp 0.9s ease both;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.tagline {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
}

.cta-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* RECENTLY FEATURED */
.recently-featured {
  width: 300px;
  flex-shrink: 0;
  animation: fadeUp 0.9s 0.2s ease both;
}

.recently-featured h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.featured-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}


.featured-small {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.featured img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.featured-small span {
  font-size: 1rem;
  color:var(--text)
}
.booklink{
  font-size: 1rem;
  color:#f0e6d3

}
/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}