/* zarafshona.shop - Unique Modern Blog Design */
/* Custom styles complementing Tailwind - red/rose warm theme, magazine feel */

:root {
  --brand-50: #fff1f2;
  --brand-100: #ffe4e6;
  --brand-500: #f43f5e;
  --brand-600: #e11d48;
  --brand-700: #be123c;
  --brand-800: #9f1239;
  --brand-900: #881337;
}

/* Magazine-style enhancements */
.article-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1),
              border-color 0.2s ease;
  border-radius: 16px;
  overflow: hidden;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 
              0 8px 10px -6px rgb(0 0 0 / 0.05);
  border-color: #e11d48;
}

.article-card .read-btn {
  transition: all 0.2s ease;
}

.article-card:hover .read-btn {
  background-color: #9f1239;
  color: white;
  border-color: #9f1239;
}

/* Hero decorative elements */
.hero-bg {
  background: linear-gradient(135deg, #9f1239 0%, #be123c 50%, #e11d48 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Sidebar styling */
.sidebar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

/* Category tags */
.category-tag {
  font-size: 0.75rem;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  background-color: #fff1f2;
  color: #9f1239;
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* Modal polish */
#article-modal {
  animation: fadeInModal 0.2s ease forwards;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

#modal-content {
  animation: slideUpModal 0.25s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes slideUpModal {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Form styling */
input, textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
  outline: none;
}

/* Footer links */
.footer-link {
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #e11d48;
}

/* Responsive magazine grid tweaks */
@media (max-width: 768px) {
  .article-card {
    border-radius: 12px;
  }
  
  .hero-bg h1 {
    font-size: 2.25rem !important;
    line-height: 1.1 !important;
  }
}

/* Typography refinements for long Russian text */
.prose {
  font-feature-settings: "kern" "tnum" "ss01";
}

.prose p {
  margin-bottom: 1.25em;
}

/* Button variants */
.btn-primary {
  background-color: #9f1239;
  color: white;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #881337;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: white;
  color: #9f1239;
  border: 1px solid #e11d48;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #fff1f2;
}