/*
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; color: #2c3e50; line-height: 1.7; background: #e0f7fa; } .wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .wp-header { background: #fff; padding: 20px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); 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: #00bcd4; text-decoration: none; } .wp-nav { display: flex; gap: 30px; list-style: none; } .wp-nav a { color: #2c3e50; text-decoration: none; font-weight: 500; transition: color 0.3s; } .wp-nav a:hover { color: #00bcd4; } .wp-hero { position: relative; padding: 80px 0; background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); } .wp-hero-img { width: 100%; max-width: 800px; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); display: block; margin: 0 auto 40px; } .wp-breadcrumbs { padding: 20px 0; font-size: 14px; color: #7f8c8d; } .wp-breadcrumbs a { color: #00bcd4; text-decoration: none; } .wp-main { display: grid; grid-template-columns: 1fr 350px; gap: 40px; padding: 60px 0; } .wp-content { background: #fff; padding: 50px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); } .wp-article-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #e0f7fa; font-size: 14px; color: #7f8c8d; } .wp-article-meta span { display: flex; align-items: center; gap: 8px; } .wp-category { display: inline-block; background: #00bcd4; color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; } .wp-title { font-size: 42px; font-weight: 700; color: #2c3e50; margin-bottom: 25px; line-height: 1.3; } .wp-lead { font-size: 20px; color: #546e7a; margin-bottom: 35px; font-weight: 400; line-height: 1.6; } .wp-content h2 { font-size: 32px; color: #2c3e50; margin: 45px 0 25px; font-weight: 700; } .wp-content h3 { font-size: 24px; color: #37474f; margin: 35px 0 20px; font-weight: 600; } .wp-content p { margin-bottom: 25px; font-size: 17px; color: #455a64; } .wp-blockquote { background: #e0f7fa; border-left: 5px solid #00bcd4; padding: 25px 30px; margin: 35px 0; font-style: italic; font-size: 18px; color: #37474f; border-radius: 8px; } .wp-tags { display: flex; flex-wrap: wrap; gap: 12px; margin: 40px 0; } .wp-tag { background: #b2ebf2; color: #006064; padding: 8px 18px; border-radius: 25px; font-size: 14px; text-decoration: none; transition: all 0.3s; } .wp-tag:hover { background: #00bcd4; color: #fff; } .wp-sidebar { position: sticky; top: 100px; } .wp-sidebar-box { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 30px; } .wp-sidebar-title { font-size: 22px; font-weight: 700; color: #2c3e50; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 3px solid #00bcd4; } .wp-sidebar-item { padding: 20px 0; border-bottom: 1px solid #eceff1; transition: transform 0.3s; } .wp-sidebar-item:hover { transform: translateX(5px); } .wp-sidebar-item:last-child { border-bottom: none; } .wp-sidebar-item a { color: #2c3e50; text-decoration: none; font-weight: 600; font-size: 16px; display: block; margin-bottom: 8px; } .wp-sidebar-item p { font-size: 14px; color: #7f8c8d; margin: 0; } .wp-form { background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%); padding: 35px; border-radius: 12px; margin: 50px 0; } .wp-form h3 { color: #fff; font-size: 24px; margin-bottom: 20px; text-align: center; } .wp-form-group { margin-bottom: 18px; } .wp-form input { width: 100%; padding: 15px; border: none; border-radius: 8px; font-size: 16px; font-family: 'Work Sans', sans-serif; } .wp-form-btn { width: 100%; background: #fff; color: #00bcd4; border: none; padding: 16px; font-size: 17px; font-weight: 700; border-radius: 8px; cursor: pointer; transition: all 0.3s; font-family: 'Work Sans', sans-serif; } .wp-form-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); } .wp-related { margin: 60px 0; } .wp-related h2 { font-size: 32px; margin-bottom: 30px; color: #2c3e50; } .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 15px rgba(0,0,0,0.08); transition: transform 0.3s; } .wp-related-card:hover { transform: translateY(-8px); } .wp-related-card a { text-decoration: none; color: #2c3e50; display: block; padding: 25px; } .wp-related-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; } .wp-related-card p { font-size: 15px; color: #7f8c8d; } .wp-footer { background: #263238; color: #eceff1; padding: 50px 0 30px; margin-top: 80px; } .wp-footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; } .wp-footer h4 { color: #00bcd4; margin-bottom: 20px; font-size: 20px; } .wp-footer-links { list-style: none; } .wp-footer-links li { margin-bottom: 12px; } .wp-footer-links a { color: #b0bec5; text-decoration: none; transition: color 0.3s; } .wp-footer-links a:hover { color: #00bcd4; } .wp-footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #37474f; color: #90a4ae; font-size: 14px; } .wp-disclaimer { background: #fff3cd; border-left: 4px solid #ffc107; padding: 20px; margin: 40px 0; border-radius: 8px; font-size: 15px; color: #856404; } .wp-policy-content { background: #fff; padding: 60px; border-radius: 12px; max-width: 900px; margin: 40px auto; box-shadow: 0 4px 20px rgba(0,0,0,0.08); } .wp-policy-content h1 { font-size: 38px; margin-bottom: 30px; color: #2c3e50; } .wp-policy-content h2 { font-size: 28px; margin: 40px 0 20px; color: #37474f; } .wp-policy-content p { margin-bottom: 20px; font-size: 16px; color: #546e7a; } .wp-policy-content ul { margin: 20px 0 20px 40px; color: #546e7a; } .wp-policy-content li { margin-bottom: 10px; } .wp-success-box { background: #fff; max-width: 700px; margin: 80px auto; padding: 60px; text-align: center; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); } .wp-success-icon { width: 80px; height: 80px; background: #00bcd4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; } .wp-success-icon svg { width: 50px; height: 50px; color: #fff; } .wp-success-box h1 { font-size: 36px; color: #2c3e50; margin-bottom: 20px; } .wp-success-box p { font-size: 18px; color: #7f8c8d; margin-bottom: 15px; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #263238; color: #fff; padding: 25px; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); z-index: 9999; display: none; } .wp-cookie-banner.wp-show { display: block; } .wp-cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 30px; } .wp-cookie-text { flex: 1; font-size: 15px; line-height: 1.6; } .wp-cookie-btn { background: #00bcd4; color: #fff; border: none; padding: 12px 35px; border-radius: 8px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.3s; } .wp-cookie-btn:hover { background: #0097a7; } .wp-progress-bar { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: #00bcd4; z-index: 9999; transition: width 0.1s; } @media (max-width: 968px) { .wp-main { grid-template-columns: 1fr; } .wp-sidebar { position: static; } .wp-content { padding: 30px 25px; } .wp-related-grid { grid-template-columns: 1fr; } .wp-footer-content { grid-template-columns: 1fr; } .wp-cookie-content { flex-direction: column; text-align: center; } .wp-nav { flex-direction: column; gap: 15px; } .wp-title { font-size: 32px; } }