* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lora", Georgia, serif;
  line-height: 1.7;
  color: #2c3e50;
  background: #f8f9fa;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(44, 95, 124, 0.02) 2px,
    rgba(44, 95, 124, 0.02) 4px
  );
  pointer-events: none;
  z-index: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.quick-menu {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quick-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.quick-menu-btn {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(145deg, #2c5f7c, #1e4a61);
  border: 2px solid #5a8ca8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.quick-menu-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid rgba(168, 197, 214, 0.3);
  border-radius: 8px;
  pointer-events: none;
}
.quick-menu-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(44, 95, 124, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.quick-menu-btn svg {
  width: 24px;
  height: 24px;
  fill: #e8f1f5;
}
.quick-menu-label {
  position: absolute;
  right: 70px;
  background: linear-gradient(145deg, #34495e, #2c3e50);
  color: #ecf0f1;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #5a8ca8;
}
.quick-menu-label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #2c3e50;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.quick-menu-item:hover .quick-menu-label {
  opacity: 1;
  transform: translateX(0);
}
header {
  background: linear-gradient(135deg, #2c5f7c 0%, #1e4a61 100%);
  color: #ffffff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #5a8ca8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
header::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-top: 3px solid rgba(232, 241, 245, 0.3);
  border-right: 3px solid rgba(232, 241, 245, 0.3);
  border-radius: 0 8px 0 0;
}
.header-content {
  position: relative;
  z-index: 1;
}
.author-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 5px solid #a8c5d6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #e8f1f5;
}
.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header h1 {
  font-family: "Crimson Text", serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
header p {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.95;
  font-style: italic;
}
section {
  padding: 80px 0;
  position: relative;
}
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background: white;
  box-shadow: 0 0 30px rgba(44, 95, 124, 0.08),
    inset 0 0 100px rgba(168, 197, 214, 0.05);
  border-radius: 8px;
  z-index: -1;
}
.section-title {
  text-align: center;
  font-family: "Crimson Text", serif;
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #2c5f7c;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: "❦";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #5a8ca8;
}
.about {
  background: transparent;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-text p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #34495e;
  line-height: 1.9;
  text-align: justify;
  text-indent: 2em;
}
/*
.about-text p:first-of-type::first-letter {
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin: 10px 10px 0 0;
  color: #2c5f7c;
  font-family: "Crimson Text", serif;
}
*/
.highlight {
  background: linear-gradient(135deg, #e8f1f5 0%, #d4e4ed 100%);
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: #2c5f7c;
  box-shadow: inset 0 0 20px rgba(44, 95, 124, 0.1),
    0 4px 12px rgba(44, 95, 124, 0.1);
  border-left: 4px solid #5a8ca8;
  border-right: 4px solid #5a8ca8;
  position: relative;
}
.highlight::before,
.highlight::after {
  content: '"';
  font-size: 3rem;
  color: #5a8ca8;
  opacity: 0.3;
  font-family: "Crimson Text", serif;
}
.books {
  background: transparent;
}
.amazon-notice {
  text-align: center;
  font-size: 1.1rem;
  color: #2c5f7c;
  margin-bottom: 40px;
  font-weight: 500;
}
.amazon-notice a {
  color: #1e4a61;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #a8c5d6;
  transition: all 0.3s;
}
.amazon-notice a:hover {
  color: #2c5f7c;
  border-bottom-color: #5a8ca8;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(44, 95, 124, 0.03) 100%
  );
  border-bottom: 4px solid #5a8ca8;
  position: relative;
}
.books-grid::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #2c5f7c 50%,
    transparent 100%
  );
}
.book-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(44, 95, 124, 0.15),
    inset 0 0 20px rgba(168, 197, 214, 0.05);
  border: 1px solid #d4e4ed;
  position: relative;
}
.book-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(168, 197, 214, 0.2);
  border-radius: 4px;
  pointer-events: none;
}
.book-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 24px rgba(44, 95, 124, 0.2),
    inset 0 0 20px rgba(168, 197, 214, 0.1);
}
.book-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid #d4e4ed;
}
.book-card h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2c5f7c;
  font-weight: 700;
}
.book-card p {
  font-size: 0.95rem;
  color: #546e7a;
  font-style: italic;
  line-height: 1.6;
}
.testimonials {
  background: transparent;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: linear-gradient(135deg, #e8f1f5 0%, #d4e4ed 100%);
  padding: 35px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.15),
    inset 0 0 30px rgba(255, 255, 255, 0.5);
  border: 2px solid #a8c5d6;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(44, 95, 124, 0.15);
  border-radius: 4px;
  pointer-events: none;
}
.testimonial-card::after {
  content: "❝";
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 4rem;
  color: #5a8ca8;
  opacity: 0.2;
  font-family: "Crimson Text", serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.05rem;
  color: #34495e;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(44, 95, 124, 0.2);
}
.testimonial-stars {
  color: #f39c12;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.testimonial-name {
  font-weight: 600;
  color: #2c5f7c;
  font-size: 1.1rem;
  font-family: "Crimson Text", serif;
}
.testimonial-source {
  font-size: 0.9rem;
  color: #546e7a;
  font-style: normal;
}
.story {
  background: transparent;
}
.story-content {
  max-width: 900px;
  margin: 0 auto;
}
.story-content p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: #34495e;
  line-height: 1.9;
  text-align: justify;
  text-indent: 2em;
}
.inspiration {
  background: linear-gradient(135deg, #2c5f7c 0%, #1e4a61 100%);
  color: #ffffff;
  border-top: 4px solid #5a8ca8;
  border-bottom: 4px solid #5a8ca8;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.15);
}
.inspiration::before {
  display: none;
}
.inspiration .section-title {
  color: #ffffff;
}
.inspiration .section-title::after {
  color: #a8c5d6;
}
.inspiration-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.inspiration-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.quote {
  font-family: "Crimson Text", serif;
  font-size: 1.6rem;
  font-style: italic;
  margin: 40px 0;
  padding: 30px;
  background: rgba(232, 241, 245, 0.1);
  border-radius: 8px;
  border-left: 4px solid #a8c5d6;
  border-right: 4px solid #a8c5d6;
  position: relative;
}
.quote::before {
  content: "❝";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #a8c5d6;
  opacity: 0.5;
}
footer {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: #ecf0f1;
  text-align: center;
  padding: 40px 0;
  border-top: 4px solid #5a8ca8;
  position: relative;
}
footer p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 5px 0;
}
@media (max-width: 768px) {
  .quick-menu {
    right: 15px;
    gap: 15px;
  }
  .quick-menu-btn {
    width: 48px;
    height: 48px;
  }
  .quick-menu-btn svg {
    width: 20px;
    height: 20px;
  }
  .quick-menu-label {
    right: 60px;
    font-size: 12px;
    padding: 8px 15px;
  }
  header h1 {
    font-size: 2.5rem;
  }
  header p {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .books-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  section {
    padding: 60px 0;
  }
  .about-text p:first-of-type::first-letter {
    font-size: 3rem;
  }
}
html {
  scroll-behavior: smooth;
}
