/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
/* CSS pentru Zolvino - Site informativ despre sănătatea articulațiilor */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --wp-primary: #DC143C;
  --wp-bg: #FFF0F5;
  --wp-text: #2C3E50;
  --wp-text-light: #7F8C8D;
  --wp-white: #FFFFFF;
  --wp-gray-light: #ECF0F1;
  --wp-gray: #BDC3C7;
  --wp-shadow: 0 2px 8px rgba(0,0,0,0.08);
  --wp-shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
}

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

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--wp-bg);
  color: var(--wp-text);
  line-height: 1.7;
  font-size: 16px;
}

.wp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wp-header {
  background: var(--wp-white);
  box-shadow: var(--wp-shadow);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.wp-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--wp-primary);
  text-decoration: none;
}

.wp-nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.wp-nav a {
  color: var(--wp-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.wp-nav a:hover {
  color: var(--wp-primary);
}

.wp-breadcrumbs {
  padding: 20px 0;
  font-size: 14px;
  color: var(--wp-text-light);
}

.wp-breadcrumbs a {
  color: var(--wp-text-light);
  text-decoration: none;
}

.wp-breadcrumbs a:hover {
  color: var(--wp-primary);
}

.wp-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--wp-primary);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s;
}

.wp-hero {
  background: var(--wp-white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--wp-shadow);
}

.wp-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.wp-main {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-bottom: 60px;
}

.wp-content {
  background: var(--wp-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--wp-shadow);
}

.wp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--wp-gray-light);
  font-size: 14px;
  color: var(--wp-text-light);
}

.wp-category {
  background: var(--wp-primary);
  color: var(--wp-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.wp-article-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--wp-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.wp-lead {
  font-size: 20px;
  color: var(--wp-text-light);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}

.wp-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--wp-text);
}

.wp-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--wp-text);
}

.wp-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.wp-blockquote {
  border-left: 4px solid var(--wp-primary);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--wp-gray-light);
  font-style: italic;
  font-size: 18px;
  color: var(--wp-text);
}

.wp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--wp-gray-light);
}

.wp-tag {
  background: var(--wp-gray-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--wp-text);
  text-decoration: none;
  transition: all 0.3s;
}

.wp-tag:hover {
  background: var(--wp-primary);
  color: var(--wp-white);
}

.wp-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.wp-sidebar-section {
  background: var(--wp-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--wp-shadow);
  margin-bottom: 30px;
}

.wp-sidebar-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--wp-text);
}

.wp-sidebar-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--wp-gray-light);
  transition: all 0.3s;
}

.wp-sidebar-item:last-child {
  border-bottom: none;
}

.wp-sidebar-item:hover {
  transform: translateX(5px);
}

.wp-sidebar-item a {
  text-decoration: none;
  color: var(--wp-text);
}

.wp-sidebar-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--wp-text);
}

.wp-sidebar-item p {
  font-size: 14px;
  color: var(--wp-text-light);
  margin: 0;
}

.wp-form {
  background: var(--wp-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--wp-shadow);
}

.wp-form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--wp-text);
}

.wp-form-group {
  margin-bottom: 20px;
}

.wp-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--wp-text);
}

.wp-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--wp-gray-light);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  transition: all 0.3s;
}

.wp-form-input:focus {
  outline: none;
  border-color: var(--wp-primary);
}

.wp-btn {
  background: var(--wp-primary);
  color: var(--wp-white);
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  transition: all 0.3s;
}

.wp-btn:hover {
  background: #B8112E;
  box-shadow: var(--wp-shadow-hover);
  transform: translateY(-2px);
}

.wp-related {
  background: var(--wp-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--wp-shadow);
  margin-top: 40px;
}

.wp-related-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--wp-text);
}

.wp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wp-related-card {
  background: var(--wp-gray-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--wp-text);
}

.wp-related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wp-shadow-hover);
}

.wp-related-card-content {
  padding: 20px;
}

.wp-related-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.wp-related-card p {
  font-size: 14px;
  color: var(--wp-text-light);
  margin: 0;
}

.wp-footer {
  background: var(--wp-white);
  padding: 60px 0 30px;
  margin-top: 80px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.wp-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.wp-footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--wp-text);
}

.wp-footer-links {
  list-style: none;
}

.wp-footer-links li {
  margin-bottom: 12px;
}

.wp-footer-links a {
  color: var(--wp-text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.wp-footer-links a:hover {
  color: var(--wp-primary);
}

.wp-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid var(--wp-gray-light);
  color: var(--wp-text-light);
  font-size: 14px;
}

.wp-disclaimer {
  background: var(--wp-gray-light);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--wp-text-light);
  text-align: center;
}

.wp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wp-white);
  padding: 20px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
}

.wp-cookie-banner.active {
  display: block;
}

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

.wp-cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--wp-text);
}

.wp-cookie-btn {
  background: var(--wp-primary);
  color: var(--wp-white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.wp-policy-content {
  background: var(--wp-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--wp-shadow);
}

.wp-policy-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--wp-text);
}

.wp-policy-content h2 {
  font-size: 26px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--wp-text);
}

.wp-policy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.wp-policy-content ul {
  margin: 15px 0 15px 30px;
}

.wp-policy-content li {
  margin-bottom: 10px;
}

.wp-success-content {
  background: var(--wp-white);
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: var(--wp-shadow);
  text-align: center;
  max-width: 600px;
  margin: 60px auto;
}

.wp-success-icon {
  width: 80px;
  height: 80px;
  background: var(--wp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--wp-white);
  font-size: 40px;
}

.wp-success-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--wp-text);
}

.wp-success-text {
  font-size: 18px;
  color: var(--wp-text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .wp-main {
    grid-template-columns: 1fr;
  }
  
  .wp-sidebar {
    position: static;
  }
  
  .wp-related-grid {
    grid-template-columns: 1fr;
  }
  
  .wp-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .wp-nav {
    gap: 15px;
  }
  
  .wp-article-title {
    font-size: 32px;
  }
  
  .wp-cookie-content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .wp-container {
    padding: 0 15px;
  }
  
  .wp-content {
    padding: 25px;
  }
  
  .wp-article-title {
    font-size: 26px;
  }
  
  .wp-content h2 {
    font-size: 24px;
  }
  
  .wp-nav {
    flex-direction: column;
    gap: 10px;
  }
}