/* =========================================
   1. VARIABILE & SETUP
   ========================================= */

body,
input,
textarea,
select,
button {
  font-family: var(--font-body);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

p,
span,
a,
li {
  font-family: inherit;
}

/* Forțăm elementele îngroșate să folosească corect fontul Quicksand */
strong,
b,
th,
.bold-text {
  font-family: var(--font-body);
  font-weight: 700;
}

/* Forțăm toate titlurile și elementele rotunjite să aibă grosimea corectă */
h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.badge,
.btn-trimite,
.about-header h1,
.about-quote {
  font-family: var(--font-rounded);
}

:root {
  --primary-bg: #fff9f0;
  --card-bg: #ffffff;
  --accent-pink: #ffd1dc;
  --accent-blue: #b2e2f2;
  --accent-green: #e2f0cb;
  --accent-purple: #d7c0f0;
  --text-main: #5d576b;
  --text-light: #8e899c;
  --font-rounded: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden; /* Elimină scroll-ul orizontal și spațiul gol din dreapta */
  width: 100%;
  position: relative;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0 !important; /* Spațiu generos sus-jos */
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
  display: inline-block; /* Permite decorului ::after să se raporteze la lățimea textului */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: var(--accent-purple);
  border-radius: 10px;
}

/* =========================================
   2. HEADER & LOGO
   ========================================= */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 3px solid var(--accent-purple);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* REPARARE LOGO: Fără sublinieri */
.logo a {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.logo-img {
  width: 60px; /* Dimensiune pe mobil */
  height: 60px;
  object-fit: contain;
  border-radius: 50%; /* Dacă vrei să fie rotund ca vechiul placeholder */
  background: var(--accent-purple);
  padding: 5px; /* Spațiu în interiorul cercului */
}

.logo-text {
  font-family: var(--font-rounded);
  font-size: 1.1rem; /* Text mai mic pe mobil să nu ocupe tot ecranul */
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.logo h1 {
  font-family: var(--font-rounded);
  font-size: 1.4rem;
  text-decoration: none;
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.logo-icon {
  width: 15px;
  height: 15px;
}

/* --- RESPONSIVE ADJUSTMENTS (DESKTOP) --- */

@media (min-width: 768px) {
  .logo-img {
    width: 80px; /* Logo mai mare pe tablete/desktop */
    height: 80px;
  }

  .logo-text {
    font-size: 1.4rem; /* Text mai vizibil pe desktop */
  }
}

@media (max-width: 350px) {
  /* Ajustare pentru telefoane foarte mici (ex: iPhone SE) */
  .logo-text {
    font-size: 0.9rem;
  }
  .logo-img {
    width: 35px;
    height: 35px;
  }
}

/* =========================================
   3. NAVIGAȚIE GENERALĂ
   ========================================= */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn {
  background: var(--accent-purple);
  padding: 8px 20px;
  border-radius: 50px;
}

/* HAMBURGER ICON (Ascuns pe desktop) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1100;
}

/* =========================================
   ACTUALIZARE BUTOANE 
   ========================================= */

/* Butonul general de citit */
.btn-citeste {
  margin-top: auto; /* Aceasta este "magia": împinge butonul la baza containerului flex */
  align-self: center; /* Menține butonul centrat orizontal */
  display: inline-block;
  background-color: var(--accent-purple);
  color: var(--text-main);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-citeste:hover {
  background-color: white;
  border-color: var(--accent-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(178, 226, 242, 0.4);
}

/* Butonul de Comandă WhatsApp */
.btn-order {
  display: block;
  background-color: #25d366; /* Verde WhatsApp */
  color: white;
  text-decoration: none;
  padding: 15px;
  border-radius: 15px;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}

.btn-order:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Butonul de Trimite Formular */
.btn-trimite {
  background-color: var(--accent-purple);
  color: var(--text-main);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-rounded);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-trimite:hover {
  background-color: #ffb6c1;
  transform: translateY(-2px);
}

/* =========================================
   4. RESPONSIVE: MOBIL (Sub 991px)
   ========================================= */
@media (max-width: 991px) {
  .menu-toggle {
    display: block !important; /* Forțăm afișarea iconiței pe mobil */
    position: relative;
    z-index: 1100;
    color: var(--text-main);
  }
  .header-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%; /* Schimbat de la 80% la 100% pentru a nu mai lăsa gol în dreapta */
    height: 100vh;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
    z-index: 1050;
    visibility: hidden;
  }

  .main-nav.active {
    right: 0;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding: 0; /* Eliminăm padding-ul care ar putea împinge textul în stânga */
    text-align: center;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    font-size: 1.8rem; /* Puțin mai mare pentru vizibilitate */
    display: block;
    width: 100%;
    padding: 15px 0;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* =========================================
   5. GRILE & CONȚINUT (Mobile First & Full Width)
   ========================================= */

/* Containerul principal - îl facem să ocupe tot spațiul pe ecrane mari */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center; /* Centrează pe mobil */
  padding: 40px 0;
  width: 100%;
}

/* Cardul de poveste */

#povesti {
  background-color: #ffffff; /* Alb curat pentru a scoate cardurile în evidență */
  border-radius: 0 0 50px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
  text-align: center; /* Centrarea orizontală a elementelor inline-block */
}

.card-poveste {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 380px;
  transition: transform 0.3s ease;
  height: auto;
}

/* Imaginea - acum se va vedea integral (Contain) */
.card-poveste img {
  width: 100%;
  height: 350px;
  object-fit: cover; /* Taie fin din margini ca să umple spațiul fără să deformeze imaginea */
  object-fit: contain; /* Garantează că nu se taie din ilustrație */
  background: #fdfdfd;
  border-bottom: 1px solid #eee;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 20px; /* Spațiu sub titlu */
  font-family: var(--font-rounded);
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- RESPONSIVE STEPS --- */

/* TABLETĂ: 2 carduri pe rând */
@media (min-width: 600px) {
  .card-poveste {
    width: calc(50% - 25px); /* Jumătate de ecran minus gap-ul */
  }
}

/* DESKTOP MEDIU: 3 sau 4 carduri pe rând */
@media (min-width: 992px) {
  .grid-container {
    justify-content: flex-start; /* Aliniere la stânga pe desktop */
  }
  .card-poveste {
    width: calc(33.33% - 25px);
  }
}

/* DESKTOP MARE: 4 sau 5 carduri pe rând pentru a umple pagina */
@media (min-width: 1300px) {
  .container {
    max-width: 95%; /* Mărim containerul general ca să se ducă spre margini */
  }
  .card-poveste {
    width: calc(25% - 25px); /* 4 carduri pe rând */
    max-width: none; /* Scoatem limita ca să poată crește */
  }
}

/* ECRANE FOARTE MARI: 5-6 carduri */
@media (min-width: 1600px) {
  .card-poveste {
    width: calc(16.66% - 25px); /* 6 carduri pe rând */
  }
}

.story-preview {
  font-size: 0.95rem;
  color: var(--text-light); /* Culoarea gri definită de tine în proiect */
  margin: 10px 0 20px 0; /* Spațiere: sus, dreapta, jos, stânga */
  line-height: 1.6;
  font-style: italic; /* Oferă un aspect elegant de „fragment” */
}

/* =========================================
   AJUSTARE GRID CARDURI (Mai mari pe desktop)
   ========================================= */

/* Mobil: Rămâne cum ți-a plăcut (1 pe rând) */
@media (max-width: 599px) {
  .card-poveste {
    width: 100%;
    max-width: 100%;
  }
}

/* Tabletă: 2 pe rând */
@media (min-width: 600px) {
  .card-poveste {
    width: calc(50% - 25px);
  }
}

/* Desktop: În loc de 4-5 mici, facem 3 mari și frumoase */
@media (min-width: 992px) {
  .container {
    max-width: 1100px; /* Limităm lățimea ca să nu se lungească excesiv textul */
  }
  .card-poveste {
    width: calc(33.33% - 25px);
    max-width: 400px;
  }
  .card-poveste img {
    height: 300px; /* Imagine mai înaltă pe ecrane mari */
  }
}

/* Ecrane foarte mari: Menținem maximum 3 sau 4 pentru a păstra dimensiunea mare a cardului */
@media (min-width: 1400px) {
  .card-poveste {
    width: calc(25% - 25px); /* Maxim 4 pe rând, dar rămân late */
  }
}

/* Stil badge (categorie) */
.badge {
  background: var(--accent-green);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  align-self: center;
  margin-bottom: 10px;
  color: #6d8541;
}

/* =========================================
   SECȚIUNE PREMIUM SHOP SHOWCASE
   ========================================= */
.premium-shop-showcase {
  z-index: 1;
  padding: 80px 0;
  background: radial-gradient(circle at top right, #fff9f0, #f7e8ff);
  overflow: visible;
  margin: -20px 0;
}

.showcase-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 2px solid var(--accent-purple);
  border-radius: 50px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 40px 80px rgba(255, 209, 220, 0.2);
}

/* Decor & Blobs */
.blob-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--accent-purple);
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
}

/* Vizual Carte 3D */
.book-visual {
  position: relative;
  z-index: 2;
  perspective: 1000px;
  text-align: center;
}

.floating-book {
  width: 100%;
  max-width: 380px;
  border-radius: 10px 30px 30px 10px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
  transform: rotateY(-12deg) rotateX(5deg);
  animation: floatBook 6s ease-in-out infinite;
}

@keyframes floatBook {
  0%,
  100% {
    transform: translateY(0) rotateY(-12deg);
  }
  50% {
    transform: translateY(-20px) rotateY(-6deg);
  }
}

.discount-sticker {
  position: absolute;
  top: -20px;
  left: -10px;
  background: #ff4d6d;
  color: white;
  width: 85px;
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
  transform: rotate(-15deg);
  z-index: 5;
  box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

/* Info Produs */
.rating-mini {
  color: #ffb400;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.rating-mini span {
  color: var(--text-light);
  margin-left: 8px;
}

.display-title {
  font-family: var(--font-rounded);
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--text-main);
}

.display-title span {
  color: #ff85a1;
}

.tagline {
  font-size: 1.2rem;
  color: #ff4d6d;
  font-weight: 600;
  margin: 15px 0;
}

.book-features {
  list-style: none;
  margin: 25px 0;
}

.book-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.book-features i {
  color: #2ecc71;
  font-size: 1.1rem;
}

/* Preț & Buton */
.purchase-zone {
  margin-top: 30px;
}

.price-tag {
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.3rem;
  margin-right: 12px;
}

.main-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
}

.main-price span {
  font-size: 1.2rem;
  vertical-align: super;
}

.cta-glitter-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(45deg, #25d366, #a5f3bc, #25d366);
  background-size: 200% auto;
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 25px;
  transition: 0.5s;
  animation: shineEffect 3s linear infinite;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
}

.cta-glitter-whatsapp small {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 400;
  margin-top: 4px;
}

@keyframes shineEffect {
  to {
    background-position: 200% center;
  }
}

.cta-glitter-whatsapp:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

.shipping-info {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

.promo-badge-mobile {
  display: none;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .showcase-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    text-align: center;
    margin: 0 15px;
    gap: 40px;
  }
  .book-visual {
    order: -1;
  }
  .floating-book {
    max-width: 280px;
    transform: rotateY(0) rotateX(0);
    animation: floatSimple 4s ease-in-out infinite;
  }
  .display-title {
    font-size: 2.2rem;
  }
  .book-features li {
    justify-content: center;
  }
  .promo-badge-mobile {
    display: inline-block;
    margin-top: 20px;
    background: var(--accent-purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
  }
}

@keyframes floatSimple {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

#pareri {
  background-color: #f0faff; /* Un albastru foarte pal pentru contrast cu rozul de deasupra */
  padding: 120px 0;
  clip-path: ellipse(150% 100% at 50% 100%); /* Efect de curbură la bază */
}

/* =========================================
   6. CONTACT & FOOTER
   ========================================= */
.contact-section {
  padding: 60px 0;
  background-color: var(--primary-bg);
  border-top: 2px dashed var(--accent-purple);
}
.contact-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.input-group {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.input-group input,
.input-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 2px solid var(--accent-purple);
  border-radius: 12px;
  margin-top: 5px;
  box-sizing: border-box;
}

.main-footer {
  background: var(--accent-purple);
  padding: 50px 0 20px;
  border-radius: 50px 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.social-icons {
  display: flex;
  gap: 20px; /* Spațiu mai generos între ele */
  margin-top: 15px;
  margin-bottom: 25px; /* Spațiu până la textul de contact de mai jos */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Dimensiunea cercului */
  height: 50px;
  background: white; /* Fundal alb ca să iasă în evidență pe mov */
  color: var(--text-main); /* Culoarea iconiței */
  border-radius: 50%;
  font-size: 1.5rem; /* Iconițele devin mult mai mari și vizibile */
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Tranziție cu un pic de „bouncing” elastic */
}

/* Efect Hover pe Facebook și YouTube */
.social-icons a:hover {
  transform: scale(1.2) rotate(8deg); /* Se măresc frumos și se înclină ușor într-o parte */
  color: white;
}

/* Culori specifice la hover pentru fiecare rețea */
.social-icons a[title='Facebook']:hover {
  background-color: #1877f2; /* Albastru Facebook */
}

.social-icons a[title='YouTube']:hover {
  background-color: #ff0000; /* Roșu YouTube */
}

/* 2. Link-urile de Email și Telefon */
.direct-contact p {
  margin-bottom: 12px;
}

.direct-contact a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Spațiu între iconița de plic/telefon și text */
  transition: all 0.3s ease;
}

/* Efectul de Hover identic cu cel de la Explorează */
.direct-contact a:hover {
  color: #ff85a1; /* Aceluși roz drăguț */
  transform: translateX(5px); /* Se mișcă fin spre dreapta */
}

/* Opțional: Schimbăm culoarea micilor iconițe de lângă text la hover */
.direct-contact a:hover i {
  color: #ff85a1;
}

.footer-links ul {
  list-style: none; /* Elimină complet bulinele */
  padding: 0;
  margin: 15px 0 0 0;
}

.footer-links li {
  margin-bottom: 12px; /* Spațiu vertical între link-uri */
}

.footer-links a {
  text-decoration: none;
  color: var(--text-main); /* Culoarea textului tău principal */
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s ease; /* Face ca efectul de hover să fie fluid, nu brusc */
  position: relative;
}

/* Efectul de Hover (schimbare de culoare și o mică mișcare spre dreapta) */
.footer-links a:hover {
  color: #ff85a1;
  transform: translateX(
    5px
  ); /* Mută fin textul spre dreapta când pui mouse-ul pe el */
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* =========================================
   STIL PAGINĂ POVESTE (REVIZUIT)
   ========================================= */

.story-body {
  background-color: #fdfaf5; /* Crem foarte deschis */
}

/* Stil Buton Înapoi */
.btn-back-styled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-family: var(--font-rounded);
  box-shadow: var(--shadow);
  transition: 0.3s;
  margin: 20px 0;
  border: 2px solid var(--accent-purple);
}

.btn-back-styled:hover {
  background: var(--accent-purple);
  transform: translateX(-5px);
}

/* Imagine Miniatură */
.book-illustration-mini {
  text-align: center;
  padding: 30px 20px 0;
}

.book-illustration-mini img {
  width: 180px; /* Dimensiune mică, fixă */
  height: 180px;
  object-fit: cover;
  border-radius: 50%; /* Formă rotundă pentru un aspect prietenos */
  border: 5px solid var(--accent-purple);
  box-shadow: var(--shadow);
}

/* Container Carte */
.book-container {
  background: white;
  max-width: 750px;
  margin: 0 auto 50px;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.book-content {
  padding: 30px 12%;
}

.book-title {
  font-family: var(--font-rounded);
  font-size: 2.2rem;
  color: var(--text-main);
  text-align: center;
  margin: 20px 0 30px;
}

.book-text {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #4a4a4a;
  text-align: left; /* Citirea e mai ușoară aliniată la stânga pe mobil */
}

.book-separator {
  text-align: center;
  margin: 40px 0;
  color: var(--accent-purple);
  font-size: 1.2rem;
}

/* Butoane Acțiune Final */
.story-footer-actions {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.audio-player-wrapper h4 {
  margin-bottom: 15px;
  font-family: var(--font-rounded);
  color: var(--text-main);
}

.audio-player-wrapper audio {
  width: 100%;
}

.btn-action-yt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff0000;
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 15px;
  font-weight: 700;
  width: 100%;
  transition: 0.3s;
}

.btn-action-yt:hover {
  background: #cc0000;
  transform: translateY(-3px);
}

/* Adaptare Mobil */
@media (max-width: 600px) {
  .book-content {
    padding: 20px 6%;
  }
  .book-title {
    font-size: 1.6rem;
  }
  .book-illustration-mini img {
    width: 130px;
    height: 130px;
  }
}

/* =========================================
   STIL PAGINĂ DESPRE MINE
   ========================================= */
.about-page {
  text-align: center;
}

.about-header {
  padding: 40px 20px 20px;
  background: var(--accent-purple);
  border-radius: var(--radius) var(--radius) 0 0;
}

.about-header h1 {
  font-family: var(--font-rounded);
  color: var(--text-main);
}

.about-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 30px auto;
  border: 6px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-page p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main);
}

.about-quote {
  font-family: var(--font-rounded);
  font-size: 1.4rem;
  color: var(--text-main);
  background: var(--accent-purple);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
}

@media (max-width: 600px) {
  .about-image img {
    width: 150px;
    height: 150px;
  }
  .about-quote {
    font-size: 1.1rem;
    padding: 20px;
  }
}

.signature {
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-main);
  line-height: 1.6;
}

.signature span {
  font-family: var(
    --font-rounded
  ); /* Sau un font de tip "cursive" dacă adaugi unul din Google Fonts */
  font-size: 1.8rem;
  color: var(--accent-purple);
  font-weight: 700;
  display: block;
  margin-top: 5px;
}
