/*
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: #F5F1E8; color: #2C2C2C; line-height: 1.7; } .wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .wp-header { background: #fff; padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; } .wp-header-inner { display: flex; justify-content: space-between; align-items: center; } .wp-logo { font-size: 28px; font-weight: 700; color: #008B8B; text-decoration: none; } .wp-nav { display: flex; gap: 30px; list-style: none; } .wp-nav a { color: #2C2C2C; text-decoration: none; font-weight: 500; transition: color 0.3s; } .wp-nav a:hover { color: #008B8B; } .wp-hero { background: linear-gradient(135deg, #008B8B 0%, #006666 100%); color: #fff; padding: 80px 0; position: relative; overflow: hidden; } .wp-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .wp-hero-text h1 { font-size: 48px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; } .wp-hero-text .wp-lead { font-size: 18px; margin-bottom: 30px; opacity: 0.95; } .wp-hero-img { width: 100%; max-width: 500px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); } .wp-breadcrumbs { padding: 15px 0; font-size: 14px; color: #666; } .wp-breadcrumbs a { color: #008B8B; text-decoration: none; } .wp-content-wrapper { display: grid; grid-template-columns: 1fr 350px; gap: 40px; padding: 60px 0; } .wp-main-content { background: #fff; padding: 50px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); } .wp-article-meta { display: flex; gap: 20px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #F5F1E8; font-size: 14px; color: #666; } .wp-category { background: #008B8B; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; } .wp-reading-time { display: flex; align-items: center; gap: 5px; } .wp-progress-bar { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: #008B8B; z-index: 9999; transition: width 0.1s; } .wp-article h2 { font-size: 32px; margin: 40px 0 20px; color: #008B8B; } .wp-article h3 { font-size: 24px; margin: 30px 0 15px; color: #2C2C2C; } .wp-article p { margin-bottom: 20px; font-size: 17px; } .wp-blockquote { background: #F5F1E8; border-left: 5px solid #008B8B; padding: 25px 30px; margin: 30px 0; font-style: italic; font-size: 18px; } .wp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0; } .wp-tag { background: #F5F1E8; color: #2C2C2C; padding: 8px 16px; border-radius: 20px; font-size: 14px; text-decoration: none; transition: all 0.3s; } .wp-tag:hover { background: #008B8B; color: #fff; } .wp-sidebar { position: sticky; top: 100px; } .wp-sidebar-block { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 30px; } .wp-sidebar-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: #008B8B; border-bottom: 2px solid #F5F1E8; padding-bottom: 10px; } .wp-sidebar-item { padding: 15px 0; border-bottom: 1px solid #F5F1E8; transition: transform 0.3s; } .wp-sidebar-item:hover { transform: translateX(5px); } .wp-sidebar-item:last-child { border-bottom: none; } .wp-sidebar-item a { color: #2C2C2C; text-decoration: none; font-weight: 600; display: block; margin-bottom: 5px; } .wp-sidebar-item p { font-size: 14px; color: #666; margin: 0; } .wp-form { background: linear-gradient(135deg, #008B8B 0%, #006666 100%); padding: 40px; border-radius: 12px; margin: 40px 0; color: #fff; } .wp-form h3 { margin-bottom: 20px; font-size: 24px; } .wp-form-group { margin-bottom: 20px; } .wp-form-group input { width: 100%; padding: 15px; border: none; border-radius: 8px; font-size: 16px; } .wp-form-button { background: #fff; color: #008B8B; padding: 15px 40px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%; transition: all 0.3s; } .wp-form-button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); } .wp-related { margin: 60px 0; } .wp-related-title { font-size: 28px; margin-bottom: 30px; color: #008B8B; } .wp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .wp-related-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.3s; text-decoration: none; color: #2C2C2C; } .wp-related-card:hover { transform: translateY(-5px); } .wp-related-card-content { padding: 25px; } .wp-related-card h3 { font-size: 20px; margin-bottom: 10px; color: #008B8B; } .wp-related-card p { font-size: 14px; color: #666; } .wp-footer { background: #2C2C2C; color: #fff; padding: 60px 0 30px; margin-top: 80px; } .wp-footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; } .wp-footer-section h4 { margin-bottom: 20px; color: #008B8B; } .wp-footer-links { list-style: none; } .wp-footer-links a { color: #fff; text-decoration: none; display: block; padding: 8px 0; opacity: 0.8; transition: opacity 0.3s; } .wp-footer-links a:hover { opacity: 1; } .wp-footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #444; font-size: 14px; opacity: 0.7; } .wp-disclaimer { background: #F5F1E8; padding: 20px; border-radius: 8px; margin-top: 30px; font-size: 14px; color: #666; text-align: center; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #2C2C2C; color: #fff; padding: 25px; z-index: 9999; display: none; } .wp-cookie-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; } .wp-cookie-accept { background: #008B8B; color: #fff; padding: 12px 30px; border: none; border-radius: 8px; cursor: pointer; font-weight: 700; } .wp-policy-content { background: #fff; padding: 50px; border-radius: 12px; margin: 40px 0; } .wp-policy-content h1 { color: #008B8B; margin-bottom: 30px; } .wp-policy-content h2 { color: #008B8B; margin: 30px 0 15px; } .wp-policy-content p { margin-bottom: 15px; } .wp-success { text-align: center; padding: 80px 20px; } .wp-success-icon { font-size: 80px; color: #008B8B; margin-bottom: 30px; } .wp-success h1 { color: #008B8B; margin-bottom: 20px; } @media (max-width: 768px) { .wp-hero-content { grid-template-columns: 1fr; text-align: center; } .wp-hero-text h1 { font-size: 32px; } .wp-content-wrapper { grid-template-columns: 1fr; } .wp-sidebar { position: static; } .wp-related-grid { grid-template-columns: 1fr; } .wp-footer-grid { grid-template-columns: 1fr; } .wp-nav { flex-direction: column; gap: 15px; } .wp-cookie-content { flex-direction: column; gap: 20px; text-align: center; } }