/* Buddhadasa Books - Custom Styles */
/* Unique aesthetic: Zen Modernism - Combining Buddhist serenity with contemporary elegance */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700&family=Philosopher:wght@400;700&family=Lora:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #8B4513;
  --secondary-color: #D4AF37;
  --accent-color: #C19A6B;
  --dark-color: #2C1810;
  --light-color: #F5E6D3;
  --text-color: #3E2723;
  --bg-color: #FFF8E7;
  --white: #FFFFFF;
  --shadow: rgba(139, 69, 19, 0.15);
  --gradient-1: linear-gradient(135deg, #8B4513 0%, #C19A6B 100%);
  --gradient-2: linear-gradient(45deg, #D4AF37 0%, #F5E6D3 100%);
  --gradient-3: radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent);
}

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

body {
  font-family: 'Lora', serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-color);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.display-font {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 4rem;
  letter-spacing: 2px;
}

.philosopher-font {
  font-family: 'Philosopher', sans-serif;
}

/* Navigation */
.navbar {
  background: linear-gradient(to bottom, rgba(44, 24, 16, 0.98), rgba(44, 24, 16, 0.95));
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--secondary-color) !important;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--accent-color) !important;
  transform: scale(1.05);
}

.nav-link {
  font-family: 'Philosopher', sans-serif;
  color: var(--light-color) !important;
  font-size: 1.05rem;
  margin: 0 0.8rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.85), rgba(139, 69, 19, 0.75)),
              url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-3);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--white);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-family: 'Philosopher', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-btn {
  background: var(--gradient-1);
  color: var(--white);
  padding: 1rem 3rem;
  font-size: 1.2rem;
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.6s backwards;
  display: inline-block;
  text-decoration: none;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: var(--secondary-color);
  color: var(--dark-color);
  border-color: var(--white);
}

/* Decorative Elements */
.lotus-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.1;
  pointer-events: none;
}

.lotus-decoration.top-left {
  top: 50px;
  left: 50px;
  animation: float 6s ease-in-out infinite;
}

.lotus-decoration.bottom-right {
  bottom: 50px;
  right: 50px;
  animation: float 6s ease-in-out infinite 3s;
}

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--gradient-1);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--accent-color);
  font-family: 'Philosopher', sans-serif;
  margin-bottom: 3rem;
}

/* Featured Books Section */
.featured-books {
  background: linear-gradient(to bottom, var(--bg-color), var(--light-color));
  position: relative;
}

.featured-books::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10L55 35 80 35 60 50 70 75 50 60 30 75 40 50 20 35 45 35z" fill="%23D4AF37" opacity="0.03"/></svg>');
  background-size: 200px 200px;
  animation: patternMove 20s linear infinite;
}

.book-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow);
  height: 100%;
  position: relative;
}

.book-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.book-card:hover::before {
  left: 100%;
}

.book-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 69, 19, 0.25);
}

.book-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.book-card:hover .book-image {
  transform: scale(1.1);
}

.book-content {
  padding: 2rem;
}

.book-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.book-description {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.book-link {
  display: inline-block;
  color: var(--secondary-color);
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.book-link::after {
  content: ' →';
  transition: all 0.3s ease;
}

.book-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Articles Section */
.articles-section {
  background: var(--white);
  position: relative;
}

.articles-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(245, 230, 211, 0.5), transparent);
  pointer-events: none;
}

.article-card {
  background: var(--bg-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px var(--shadow);
  border: 2px solid transparent;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
  border-color: var(--secondary-color);
}

.article-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: sepia(15%);
}

.article-card:hover .article-image {
  filter: sepia(0%);
  transform: scale(1.05);
}

.article-content {
  padding: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-family: 'Philosopher', sans-serif;
}

.article-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.article-summary {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  background: var(--gradient-2);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%238B4513" opacity="0.1"/></svg>');
  background-size: 60px 60px;
}

.service-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: all 0.6s ease;
}

.service-card:hover::before {
  opacity: 1;
  top: -100%;
  right: -100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 69, 19, 0.25);
}

.service-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--secondary-color);
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin: 1.5rem 0;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--dark-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/testi.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0, 30px 30px;
  opacity: 0.5;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 10rem;
  color: rgba(212, 175, 55, 0.15);
  font-family: 'Cinzel', serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img{
  object-fit: cover;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
}

.testimonial-info h4 {
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.testimonial-info p {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-1);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.2), transparent),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1), transparent);
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  background: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--primary-color);
  border: none;
  border-radius: 50px;
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  background: var(--secondary-color);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: var(--white);
  padding: 2rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn:hover {
  transform: scale(1.05);
}

/* Contact Page */
.contact-section {
  padding: 5rem 0;
}

.contact-info {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  font-family: 'Lora', serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(139, 69, 19, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--gradient-1);
  color: var(--white);
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  height: 400px;
  margin-top: 3rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* About Page */
.about-hero {
  background: var(--gradient-1);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.about-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  margin: 3rem 0;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.team-section {
  padding: 5rem 0;
  background: var(--light-color);
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px var(--shadow);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--secondary-color);
  object-fit: cover;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent-color);
  font-family: 'Philosopher', sans-serif;
  margin-bottom: 1rem;
}

/* Policy Pages */
.policy-page {
  padding: 5rem 0;
}

.policy-content {
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--accent-color);
}

.policy-content p, .policy-content li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Book Detail Page */
.book-detail-hero {
  padding: 5rem 0;
  background: var(--light-color);
}

.book-detail-image {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 15px 50px var(--shadow);
}

.book-detail-content h1 {
  margin-bottom: 1.5rem;
}

.book-author {
  font-size: 1.3rem;
  color: var(--accent-color);
  font-family: 'Philosopher', sans-serif;
  margin-bottom: 1rem;
}

.book-price {
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin: 1.5rem 0;
}

.book-description-section {
  padding: 4rem 0;
}

.book-description-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.buy-btn {
  background: var(--gradient-1);
  color: var(--white);
  padding: 1.2rem 3.5rem;
  border: none;
  border-radius: 50px;
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  text-decoration: none;
  margin-top: 1rem;
}

.buy-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
  color: var(--white);
}

/* Article Detail Page */
.article-detail-hero {
  padding: 5rem 0;
  background: var(--gradient-2);
}

.article-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px var(--shadow);
  margin-bottom: 2rem;
}

.article-detail-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: var(--accent-color);
  font-family: 'Philosopher', sans-serif;
}

.article-detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0;
}

.article-detail-content p {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 1.8rem;
}

.article-detail-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 200px;
  }
}

/* Error Messages */
.error-message {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message.show {
  display: block;
}

.form-control.error {
  border-color: #c0392b;
}

/* Success Messages */
.success-message {
  background: #27ae60;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: none;
}

.success-message.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .book-card, .article-card {
    margin-bottom: 2rem;
  }
  
  .policy-content {
    padding: 2rem;
  }
}




.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.article-detail-meta{
  color: #fff;
}