/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Work Sans', sans-serif; background: #f9fafb; color: #1f2937; line-height: 1.6; } .wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .wp-header { background: #8B0000; color: white; padding: 20px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } .wp-header-inner { display: flex; justify-content: space-between; align-items: center; } .wp-logo { font-size: 28px; font-weight: 700; color: white; text-decoration: none; } .wp-nav { display: flex; gap: 30px; } .wp-nav a { color: white; text-decoration: none; font-weight: 500; transition: opacity 0.3s; } .wp-nav a:hover { opacity: 0.8; } .wp-breadcrumbs { background: white; padding: 15px 0; border-bottom: 1px solid #e5e7eb; } .wp-breadcrumbs a { color: #8B0000; text-decoration: none; } .wp-breadcrumbs span { color: #6b7280; margin: 0 8px; } .wp-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: #dc2626; width: 0%; z-index: 101; transition: width 0.1s; } .wp-hero { background: linear-gradient(135deg, #8B0000 0%, #dc2626 100%); color: white; padding: 60px 0; margin-bottom: 40px; } .wp-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .wp-hero-text h1 { font-size: 42px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; } .wp-hero-text .wp-category { display: inline-block; background: rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 20px; font-size: 14px; margin-bottom: 15px; } .wp-hero-text .wp-meta { display: flex; gap: 20px; margin-top: 20px; font-size: 14px; opacity: 0.9; } .wp-hero-img { width: 100%; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); } .wp-main { display: grid; grid-template-columns: 1fr 350px; gap: 40px; margin-bottom: 60px; } .wp-article { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); } .wp-article-lead { font-size: 20px; font-weight: 500; color: #374151; margin-bottom: 30px; line-height: 1.7; border-left: 4px solid #8B0000; padding-left: 20px; } .wp-article h2 { font-size: 28px; font-weight: 700; margin: 40px 0 20px; color: #111827; } .wp-article h3 { font-size: 22px; font-weight: 600; margin: 30px 0 15px; color: #1f2937; } .wp-article p { margin-bottom: 20px; color: #4b5563; font-size: 16px; } .wp-article blockquote { background: #fef2f2; border-left: 4px solid #dc2626; padding: 20px; margin: 30px 0; font-style: italic; color: #374151; border-radius: 4px; } .wp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 30px; border-top: 1px solid #e5e7eb; } .wp-tag { background: #fee2e2; color: #991b1b; padding: 8px 16px; border-radius: 20px; font-size: 14px; text-decoration: none; transition: background 0.3s; } .wp-tag:hover { background: #fecaca; } .wp-sidebar { position: sticky; top: 100px; } .wp-sidebar-block { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 25px; } .wp-sidebar-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #111827; border-bottom: 2px solid #8B0000; padding-bottom: 10px; } .wp-sidebar-item { padding: 15px 0; border-bottom: 1px solid #f3f4f6; transition: transform 0.2s; } .wp-sidebar-item:last-child { border-bottom: none; } .wp-sidebar-item:hover { transform: translateX(5px); } .wp-sidebar-item a { text-decoration: none; color: #1f2937; font-weight: 600; font-size: 15px; display: block; margin-bottom: 5px; } .wp-sidebar-item p { font-size: 13px; color: #6b7280; margin: 0; } .wp-form { background: #fff7ed; border: 2px solid #8B0000; padding: 25px; border-radius: 12px; } .wp-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #111827; } .wp-form input { width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 15px; margin-bottom: 15px; } .wp-form button { width: 100%; background: #dc2626; color: white; padding: 14px; border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s; } .wp-form button:hover { background: #b91c1c; } .wp-related { background: white; padding: 30px; border-radius: 12px; margin-top: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); } .wp-related h3 { font-size: 24px; font-weight: 700; margin-bottom: 25px; color: #111827; } .wp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .wp-related-item { text-decoration: none; color: #1f2937; padding: 20px; border: 1px solid #e5e7eb; border-radius: 8px; transition: all 0.3s; } .wp-related-item:hover { border-color: #8B0000; box-shadow: 0 4px 12px rgba(139,0,0,0.1); } .wp-related-item h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; } .wp-related-item p { font-size: 14px; color: #6b7280; } .wp-footer { background: #1f2937; color: white; padding: 40px 0 20px; margin-top: 60px; } .wp-footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 30px; } .wp-footer h4 { font-size: 18px; font-weight: 600; margin-bottom: 15px; } .wp-footer a { color: #d1d5db; text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.3s; } .wp-footer a:hover { color: white; } .wp-footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; font-size: 14px; color: #9ca3af; } .wp-disclaimer { background: #fef2f2; border: 1px solid #fecaca; padding: 15px; border-radius: 8px; margin-top: 20px; font-size: 13px; color: #991b1b; text-align: center; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #111827; color: white; padding: 20px; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); } .wp-cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; } .wp-cookie-banner button { background: #dc2626; color: white; border: none; padding: 12px 30px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.3s; } .wp-cookie-banner button:hover { background: #b91c1c; } .wp-success { text-align: center; padding: 60px 20px; } .wp-success-icon { font-size: 72px; color: #10b981; margin-bottom: 20px; } .wp-success h1 { font-size: 36px; font-weight: 700; margin-bottom: 15px; color: #111827; } .wp-success p { font-size: 18px; color: #6b7280; max-width: 600px; margin: 0 auto 30px; } .wp-policy { background: white; padding: 40px; border-radius: 12px; margin-bottom: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); } .wp-policy h1 { font-size: 36px; font-weight: 700; margin-bottom: 30px; color: #111827; } .wp-policy h2 { font-size: 24px; font-weight: 600; margin: 30px 0 15px; color: #1f2937; } .wp-policy p { margin-bottom: 15px; color: #4b5563; line-height: 1.8; } .wp-policy ul { margin: 15px 0 15px 30px; color: #4b5563; } .wp-policy ul li { margin-bottom: 8px; } @media (max-width: 768px) { .wp-hero-content { grid-template-columns: 1fr; } .wp-hero-text h1 { font-size: 32px; } .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-cookie-content { flex-direction: column; text-align: center; } .wp-nav { display: none; } }