/* ==== Global Styles ==== */
body {
  margin: 0;
  font-family: 'Heebo', sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

img {
  margin-top: 30px;
  max-width: 300px;
  border-radius: 12px;
}

/* ==== Navigation ==== */
/* RTL Top Navigation */
.main-nav {
  background-color: #1e3c72;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-start;  /* RTL alignment: start means right */
  direction: rtl;
  gap: 20px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 6px 10px;
}

.main-nav a:hover {
  text-decoration: underline;
}


/* ==== Hero Section (Homepage) ==== */
header {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: left;
}

.quote {
  max-width: 600px;
  flex: 1 1 300px;
}

.quote blockquote {
  font-family: 'Josefin Slab', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  quotes: "“" "”" "‘" "’";
  direction: ltr;
}

.quote blockquote::before {
  content: open-quote;
}

.quote blockquote::after {
  content: close-quote;
}

.portrait {
  flex: 0 0 auto;
}

.portrait img {
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ==== Memorial Page ==== */
section.memorial {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

section.memorial h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

section.memorial p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.link-box {
  background-color: #f0f0f0;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-decoration: none;
  color: #222;
}

.link-box:hover {
  transform: translateY(-4px);
  background-color: #e0e0e0;
}

/* Spotify Player */
iframe {
  width: 100%;
  max-width: 600px;
  height: 80px;
  border: none;
  margin: 0 auto;
  display: block;
}

/* ==== Book Page Specific ==== */
.book-page section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.book-page .download-links a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #2a5298;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.book-page .download-links a:hover {
  background-color: #1e3c72;
}

/* ==== Footer ==== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #888;
}
