/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
/* Global Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Work Sans', sans-serif; color: #1a1a1a; background: #e0f7fa; line-height: 1.6; } .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.1); 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: #00bcd4; text-decoration: none; } .wp-nav { display: flex; gap: 30px; } .wp-nav a { color: #333; text-decoration: none; font-weight: 500; transition: color 0.3s; } .wp-nav a:hover { color: #00bcd4; } .wp-hero { background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); padding: 60px 0; margin-bottom: 40px; } .wp-hero-img { width: 100%; max-width: 800px; height: auto; border-radius: 12px; display: block; margin: 0 auto 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); } .wp-breadcrumbs { padding: 15px 0; font-size: 14px; color: #666; } .wp-breadcrumbs a { color: #00bcd4; text-decoration: none; } .wp-main { display: grid; grid-template-columns: 1fr 350px; gap: 40px; margin-bottom: 60px; } .wp-article { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); } .wp-category { display: inline-block; background: #00bcd4; color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 15px; text-transform: uppercase; } .wp-title { font-size: 36px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; line-height: 1.3; } .wp-meta { display: flex; gap: 20px; color: #666; font-size: 14px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 2px solid #e0f7fa; } .wp-lead { font-size: 18px; color: #444; margin-bottom: 30px; font-weight: 500; line-height: 1.7; } .wp-content h2 { font-size: 26px; margin: 35px 0 20px; color: #1a1a1a; font-weight: 700; } .wp-content h3 { font-size: 22px; margin: 30px 0 15px; color: #333; font-weight: 600; } .wp-content p { margin-bottom: 20px; font-size: 16px; color: #444; line-height: 1.8; } .wp-blockquote { background: #e0f7fa; border-left: 4px solid #00bcd4; padding: 20px 25px; margin: 30px 0; font-style: italic; font-size: 17px; color: #333; } .wp-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; padding-top: 30px; border-top: 1px solid #e0e0e0; } .wp-tag { background: #f5f5f5; padding: 8px 16px; border-radius: 20px; font-size: 13px; color: #666; text-decoration: none; transition: all 0.3s; } .wp-tag:hover { background: #00bcd4; color: #fff; } .wp-sidebar { position: sticky; top: 100px; } .wp-sidebar-block { background: #fff; padding: 25px; border-radius: 8px; margin-bottom: 25px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); } .wp-sidebar-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: #1a1a1a; border-bottom: 3px solid #00bcd4; padding-bottom: 10px; } .wp-sidebar-item { padding: 15px 0; border-bottom: 1px solid #f0f0f0; transition: transform 0.2s; } .wp-sidebar-item:hover { transform: translateX(5px); } .wp-sidebar-item:last-child { border-bottom: none; } .wp-sidebar-item a { text-decoration: none; color: #333; font-weight: 600; font-size: 15px; display: block; margin-bottom: 5px; } .wp-sidebar-item a:hover { color: #00bcd4; } .wp-sidebar-item p { font-size: 13px; color: #666; margin: 0; } .wp-related { margin-top: 50px; padding-top: 40px; border-top: 2px solid #e0f7fa; } .wp-related-title { font-size: 24px; font-weight: 700; margin-bottom: 25px; color: #1a1a1a; } .wp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; } .wp-related-card { background: #fff; border-radius: 8px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block; } .wp-related-card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.15); } .wp-related-card h3 { font-size: 18px; color: #1a1a1a; margin-bottom: 10px; font-weight: 600; } .wp-related-card p { font-size: 14px; color: #666; margin: 0; } .wp-form { background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%); padding: 35px; border-radius: 12px; margin: 40px 0; box-shadow: 0 5px 20px rgba(0,188,212,0.3); } .wp-form h3 { color: #fff; font-size: 22px; margin-bottom: 20px; font-weight: 700; } .wp-form-group { margin-bottom: 15px; } .wp-form input { width: 100%; padding: 14px 18px; border: none; border-radius: 6px; font-size: 15px; font-family: 'Work Sans', sans-serif; margin-bottom: 12px; background: #fff; color: #333; outline: none; transition: all 0.25s ease; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); } .wp-form input:focus { box-shadow: inset 0 0 0 2px #00bcd4, 0 0 8px rgba(0,188,212,0.25); transform: translateY(-1px); } .wp-form input::placeholder { color: #999; font-size: 14px; } .wp-form-submit { background: #fff; color: #00bcd4; padding: 14px 35px; border: none; border-radius: 6px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; } .wp-form-submit:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .wp-footer { background: #1a1a1a; color: #fff; padding: 50px 0 30px; margin-top: 60px; } .wp-footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; } .wp-footer-col h4 { font-size: 18px; margin-bottom: 20px; color: #00bcd4; } .wp-footer-col ul { list-style: none; } .wp-footer-col ul li { margin-bottom: 10px; } .wp-footer-col ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; } .wp-footer-col ul li a:hover { color: #00bcd4; } .wp-footer-bottom { border-top: 1px solid #333; padding-top: 25px; text-align: center; color: #999; font-size: 14px; } .wp-disclaimer { background: #2a2a2a; padding: 20px; border-radius: 6px; margin-top: 25px; font-size: 13px; color: #aaa; line-height: 1.6; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1a1a; color: #fff; padding: 25px; box-shadow: 0 -5px 20px rgba(0,0,0,0.3); 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; } .wp-cookie-btn { background: #00bcd4; color: #fff; padding: 12px 30px; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 0.3s; } .wp-cookie-btn:hover { background: #00acc1; } .wp-progress-bar { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: #00bcd4; z-index: 1001; transition: width 0.2s; } .wp-success-page { text-align: center; padding: 80px 20px; } .wp-success-icon { font-size: 80px; color: #00bcd4; margin-bottom: 30px; } .wp-success-title { font-size: 36px; color: #1a1a1a; margin-bottom: 20px; font-weight: 700; } .wp-success-text { font-size: 18px; color: #666; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; } .wp-policy-page { background: #fff; padding: 50px; border-radius: 8px; margin: 40px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.08); } .wp-policy-page h1 { font-size: 32px; margin-bottom: 30px; color: #1a1a1a; } .wp-policy-page h2 { font-size: 24px; margin: 35px 0 20px; color: #333; } .wp-policy-page p { margin-bottom: 20px; line-height: 1.8; color: #444; } .wp-policy-page ul { margin: 20px 0 20px 30px; } .wp-policy-page ul li { margin-bottom: 10px; color: #444; } @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 { display: none; } .wp-cookie-content { flex-direction: column; } }