* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

body {
  background: linear-gradient(135deg, #f8f5f0 0%, #e8e0d5 100%);
  color: #3a3226;
  line-height: 1.7;
}

header {
  background: linear-gradient(135deg, #5d4037, #795548, #8d6e63);
  color: #f5f5dc;
  padding: 3rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  font-weight: 300;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-top: 0.8rem;
  font-style: italic;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.intro {
  background: #fff8f0;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(93, 64, 55, 0.1);
  margin-bottom: 2.5rem;
  border: 1px solid #e8e0d5;
}

.intro p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.quote {
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f5f5dc;
  border-left: 4px solid #795548;
  border-radius: 8px;
  font-size: 1.2rem;
  position: relative;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 3rem;
  color: #8d6e63;
  opacity: 0.3;
  position: absolute;
}

.quote::before {
  top: -10px;
  left: 10px;
}

.quote::after {
  bottom: -20px;
  right: 10px;
}

.quote-author {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #5d4037;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  background: #fff8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(93, 64, 55, 0.15);
  transition: all 0.4s ease;
  border: 1px solid #e8e0d5;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(93, 64, 55, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 1.2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #5d4037;
  background: white;
  border-top: 2px solid #f5f5dc;
}

.map-section {
  background: #fff8f0;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(93, 64, 55, 0.1);
  margin-bottom: 2.5rem;
  border: 1px solid #e8e0d5;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.2);
  border: 3px solid #f5f5dc;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.writers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.writer-card {
  background: #fff8f0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(93, 64, 55, 0.12);
  transition: all 0.4s ease;
  border: 1px solid #e8e0d5;
  position: relative;
  overflow: hidden;
}

.writer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #795548, #8d6e63);
}

.writer-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 22px rgba(93, 64, 55, 0.2);
}

.writer-card h3 {
  color: #5d4037;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.writer-years {
  display: block;
  font-size: 0.95rem;
  color: #795548;
  margin-bottom: 1rem;
  font-style: italic;
}

.writer-address {
  display: block;
  font-weight: bold;
  color: #8d6e63;
  margin: 0.8rem 0;
  font-size: 1.05rem;
}

.writer-quote {
  font-style: italic;
  margin: 1rem 0;
  color: #5d4037;
  padding-left: 15px;
  border-left: 3px solid #f5f5dc;
}

.timeline {
  background: #fff8f0;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(93, 64, 55, 0.1);
  margin-bottom: 2.5rem;
  border: 1px solid #e8e0d5;
}

.timeline h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #5d4037;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-left: 2px dashed #795548;
}

.timeline-item:last-child {
  border-left: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -25px;
  top: 0;
  width: 50px;
  height: 30px;
  background: #795548;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.timeline-content h4 {
  color: #5d4037;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-content p {
  font-size: 0.95rem;
}

.books-section {
  background: linear-gradient(135deg, #795548, #5d4037);
  color: #f5f5dc;
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.books-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.book-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
}

.book-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.book-author {
  font-style: italic;
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 2.5rem;
  background: #5d4037;
  color: #f5f5dc;
  border-radius: 12px;
  font-size: 0.95rem;
}

.btn-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #795548, #5d4037);
  color: #f5f5dc;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #8d6e63;
}

.btn-more:hover {
  background: linear-gradient(135deg, #8d6e63, #795548);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.3);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .gallery,
  .writers,
  .books-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 380px;
  }
  
  .timeline-item {
    padding-left: 30px;
  }
  
  .timeline-year {
    left: -20px;
    width: 40px;
    height: 25px;
    font-size: 0.8rem;
  }
}

 .countdown {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  margin-top: 70px;       
  gap: 20px;
  font-family: Arial, sans-serif;
}