/* Şiirler (Poems) Page Styles */

.siirler-section {
  padding: 100px 0;
  background: #fff;
  min-height: 100vh;
}

.siirler-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Poem Category Card */
.poem-category {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.poem-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #fe805d, #ff6b47);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.poem-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(254, 128, 93, 0.3);
}

.poem-category:hover::before {
  transform: scaleX(1);
}

/* Category Title */
.category-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 2rem;
  color: #fe805d;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fe805d, #ff6b47);
  border-radius: 2px;
}

/* Poem List */
.poem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.poem-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.poem-list li::before {
  content: "📖";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.poem-list li:hover::before {
  transform: scale(1.2);
}

.poem-list a {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.poem-list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fe805d;
  transition: width 0.3s ease;
}

.poem-list a:hover {
  color: #fe805d;
  transform: translateX(5px);
}

.poem-list a:hover::after {
  width: 100%;
}

/* Color variations for different categories */
.poem-category:nth-child(1) .category-title {
  color: #fe805d;
}
.poem-category:nth-child(2) .category-title {
  color: #fe805d;
}
.poem-category:nth-child(3) .category-title {
  color: #fe805d;
}
.poem-category:nth-child(4) .category-title {
  color: #fe805d;
}
.poem-category:nth-child(5) .category-title {
  color: #fe805d;
}
.poem-category:nth-child(6) .category-title {
  color: #fe805d;
}

/* Responsive Styles */

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .siirler-container {
    gap: 30px;
  }

  .poem-category {
    padding: 35px 25px;
  }

  .category-title {
    font-size: 1.8rem;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .siirler-section {
    padding: 80px 0;
  }

  .siirler-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
    gap: 25px;
  }

  .poem-category {
    padding: 30px 20px;
  }

  .category-title {
    font-size: 1.7rem;
  }

  .poem-list a {
    font-size: 0.95rem;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .siirler-section {
    padding: 60px 0;
  }

  .siirler-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }

  .poem-category {
    padding: 25px 20px;
  }

  .category-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .poem-list li {
    margin-bottom: 12px;
  }

  .poem-list a {
    font-size: 0.9rem;
  }
}

/* Small Phones (below 480px) */
@media (max-width: 480px) {
  .siirler-section {
    padding: 50px 0;
  }

  .siirler-container {
    padding: 0 15px;
    gap: 15px;
  }

  .poem-category {
    padding: 20px 15px;
  }

  .category-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .poem-list li {
    margin-bottom: 10px;
    padding-left: 18px;
  }

  .poem-list li::before {
    font-size: 12px;
  }

  .poem-list a {
    font-size: 0.85rem;
  }
}

/* Very Small Phones (below 375px) */
@media (max-width: 375px) {
  .poem-category {
    padding: 18px 12px;
  }

  .category-title {
    font-size: 1.3rem;
  }

  .poem-list a {
    font-size: 0.8rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.poem-category {
  animation: fadeInUp 0.6s ease-out backwards;
}

.poem-category:nth-child(1) {
  animation-delay: 0.1s;
}
.poem-category:nth-child(2) {
  animation-delay: 0.2s;
}
.poem-category:nth-child(3) {
  animation-delay: 0.3s;
}
.poem-category:nth-child(4) {
  animation-delay: 0.4s;
}
.poem-category:nth-child(5) {
  animation-delay: 0.5s;
}
.poem-category:nth-child(6) {
  animation-delay: 0.6s;
}
