/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap'); :root { --primary: #14b8a6; --primary-dark: #0d9488; --bg-dark: #115e59; --bg-light: #f0fdfa; --text-dark: #0f172a; --text-light: #64748b; --border: #e2e8f0; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Work Sans', sans-serif; color: var(--text-dark); line-height: 1.6; background: #fff; } .wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .wp-header { background: var(--bg-dark); 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-content { 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 { padding: 15px 0; font-size: 14px; color: var(--text-light); } .wp-breadcrumbs a { color: var(--primary); text-decoration: none; } .wp-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--primary); width: 0%; z-index: 101; transition: width 0.1s; } .wp-hero { position: relative; margin-bottom: 40px; } .wp-hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; } .wp-main-layout { display: grid; grid-template-columns: 1fr 350px; gap: 40px; margin: 40px 0; } .wp-article { background: white; } .wp-article-header { margin-bottom: 30px; } .wp-category { display: inline-block; background: var(--primary); color: white; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; } .wp-title { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--text-dark); } .wp-meta { display: flex; gap: 20px; color: var(--text-light); font-size: 14px; margin-bottom: 20px; } .wp-lead { font-size: 20px; line-height: 1.8; color: var(--text-dark); margin-bottom: 30px; font-weight: 400; } .wp-content p { margin-bottom: 20px; font-size: 17px; line-height: 1.8; } .wp-content h2 { font-size: 32px; font-weight: 700; margin: 40px 0 20px; color: var(--text-dark); } .wp-content h3 { font-size: 24px; font-weight: 600; margin: 30px 0 15px; color: var(--text-dark); } .wp-content blockquote { border-left: 4px solid var(--primary); padding: 20px 30px; margin: 30px 0; background: var(--bg-light); font-style: italic; font-size: 18px; color: var(--text-dark); } .wp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0; } .wp-tag { background: var(--bg-light); color: var(--primary); padding: 8px 16px; border-radius: 20px; font-size: 14px; text-decoration: none; transition: all 0.3s; } .wp-tag:hover { background: var(--primary); color: white; } .wp-sidebar { position: sticky; top: 100px; } .wp-sidebar-block { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 25px; margin-bottom: 25px; } .wp-sidebar-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); } .wp-sidebar-item { padding: 15px 0; border-bottom: 1px solid var(--border); transition: all 0.3s; } .wp-sidebar-item:last-child { border-bottom: none; } .wp-sidebar-item:hover { padding-left: 10px; } .wp-sidebar-item a { text-decoration: none; color: var(--text-dark); display: block; } .wp-sidebar-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 5px; color: var(--text-dark); } .wp-sidebar-item p { font-size: 14px; color: var(--text-light); } .wp-form { background: var(--bg-light); padding: 30px; border-radius: 12px; border: 2px solid var(--primary); } .wp-form h3 { font-size: 24px; margin-bottom: 20px; color: var(--text-dark); } .wp-form-group { margin-bottom: 15px; } .wp-form-group input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 16px; font-family: 'Work Sans', sans-serif; } .wp-form-btn { background: var(--primary); color: white; border: none; padding: 14px 30px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; width: 100%; transition: background 0.3s; } .wp-form-btn:hover { background: var(--primary-dark); } .wp-related { margin: 50px 0; } .wp-related h3 { font-size: 28px; font-weight: 700; margin-bottom: 25px; } .wp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; } .wp-related-card { border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-decoration: none; color: var(--text-dark); transition: all 0.3s; } .wp-related-card:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.1); transform: translateY(-3px); } .wp-related-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; } .wp-related-card p { font-size: 14px; color: var(--text-light); } .wp-footer { background: var(--bg-dark); color: white; padding: 50px 0 30px; margin-top: 80px; } .wp-footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; } .wp-footer h4 { font-size: 18px; font-weight: 600; margin-bottom: 15px; } .wp-footer a { color: rgba(255,255,255,0.8); text-decoration: none; display: block; margin-bottom: 10px; transition: color 0.3s; } .wp-footer a:hover { color: white; } .wp-footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; text-align: center; font-size: 14px; color: rgba(255,255,255,0.7); } .wp-disclaimer { margin-top: 15px; font-size: 13px; color: rgba(255,255,255,0.6); max-width: 800px; margin-left: auto; margin-right: auto; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-dark); 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-btn { background: var(--primary); color: white; border: none; padding: 10px 30px; border-radius: 8px; font-weight: 600; cursor: pointer; } .wp-policy-content { max-width: 900px; margin: 40px auto; } .wp-policy-content h1 { font-size: 36px; margin-bottom: 30px; } .wp-policy-content h2 { font-size: 26px; margin: 30px 0 15px; } .wp-policy-content p { margin-bottom: 15px; line-height: 1.8; } .wp-success { text-align: center; padding: 80px 20px; } .wp-success h1 { font-size: 42px; color: var(--primary); margin-bottom: 20px; } .wp-success p { font-size: 20px; color: var(--text-light); margin-bottom: 30px; } @media (max-width: 768px) { .wp-main-layout { grid-template-columns: 1fr; } .wp-related-grid { grid-template-columns: 1fr; } .wp-footer-grid { grid-template-columns: 1fr; } .wp-title { font-size: 32px; } .wp-hero-img { height: 250px; } .wp-cookie-content { flex-direction: column; text-align: center; } }