/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #2C3E50; background: #ffffff; line-height: 1.7; } a { color: inherit; text-decoration: none; transition: color 0.3s ease; } img { max-width: 100%; height: auto; display: block; } :root { --coral: #FF6B6B; --lime: #CDDC39; --dark-grey: #2C3E50; --light-grey: #ECF0F1; --white: #ffffff; } .nexulo-header { background: var(--white); border-bottom: 3px solid var(--coral); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.08); } .nexulo-header-inner { max-width: 1400px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; } .nexulo-logo { font-size: 2.5rem; font-weight: 900; color: var(--coral); letter-spacing: -0.03em; text-transform: uppercase; background: linear-gradient(135deg, var(--coral), var(--lime)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .nexulo-nav { display: flex; gap: 32px; align-items: center; } .nexulo-nav a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dark-grey); position: relative; padding: 8px 0; } .nexulo-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--coral); transition: width 0.3s ease; } .nexulo-nav a:hover::after { width: 100%; } .nexulo-nav a:hover { color: var(--coral); } .nexulo-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; } .nexulo-burger span { width: 28px; height: 3px; background: var(--coral); border-radius: 2px; transition: all 0.3s; } .nexulo-hero { position: relative; height: 85vh; min-height: 600px; background: linear-gradient(135deg, rgba(255,107,107,0.9), rgba(205,220,57,0.8)), url('http://38.180.227.128/wp-content/uploads/2026/04/01.jpeg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; overnexulow: hidden; } .nexulo-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(205,220,57,0.3), transparent 60%); } .nexulo-hero-content { position: relative; z-index: 10; max-width: 900px; padding: 40px; text-align: center; color: var(--white); animation: fadeInUp 1s ease; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } .nexulo-hero-tag { display: inline-block; background: var(--white); color: var(--coral); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 8px 20px; border-radius: 30px; margin-bottom: 24px; } .nexulo-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); } .nexulo-hero-lead { font-size: 1.25rem; line-height: 1.6; margin-bottom: 32px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); } .nexulo-hero-btn { display: inline-block; background: var(--white); color: var(--coral); font-size: 1rem; font-weight: 700; padding: 16px 40px; border-radius: 50px; box-shadow: 0 8px 30px rgba(0,0,0,0.2); transition: all 0.3s ease; } .nexulo-hero-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); } .nexulo-main { max-width: 1400px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; } .nexulo-article-header { margin-bottom: 40px; } .nexulo-article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: #7f8c8d; margin-bottom: 20px; } .nexulo-article-meta span { display: flex; align-items: center; gap: 6px; } .nexulo-article-title { font-size: 2.5rem; font-weight: 900; color: var(--dark-grey); line-height: 1.2; margin-bottom: 20px; } .nexulo-intro-box { background: linear-gradient(135deg, var(--light-grey), #fff); border-left: 5px solid var(--coral); padding: 40px; border-radius: 12px; margin-bottom: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); } .nexulo-intro-box h2 { font-size: 1.8rem; color: var(--dark-grey); margin-bottom: 16px; } .nexulo-intro-box p { font-size: 1.05rem; line-height: 1.8; color: #34495e; margin-bottom: 14px; } .nexulo-section-title { font-size: 2rem; font-weight: 800; color: var(--dark-grey); margin: 50px 0 24px; position: relative; padding-left: 20px; } .nexulo-section-title::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, var(--coral), var(--lime)); border-radius: 3px; } .nexulo-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; color: #2c3e50; } .nexulo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 40px 0; } .nexulo-card { background: var(--white); border: 2px solid var(--light-grey); border-radius: 16px; padding: 32px; transition: all 0.3s ease; position: relative; overnexulow: hidden; } .nexulo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--coral), var(--lime)); } .nexulo-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(255,107,107,0.15); border-color: var(--coral); } .nexulo-card-num { font-size: 3rem; font-weight: 900; color: var(--coral); opacity: 0.2; line-height: 1; margin-bottom: 8px; } .nexulo-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark-grey); margin-bottom: 12px; } .nexulo-card p { font-size: 0.95rem; line-height: 1.6; color: #546e7a; } .nexulo-highlight { background: linear-gradient(135deg, var(--coral), #e74c3c); color: var(--white); padding: 40px; border-radius: 16px; margin: 40px 0; position: relative; overnexulow: hidden; } .nexulo-highlight::after { content: '⚡'; position: absolute; right: 30px; top: 20px; font-size: 8rem; opacity: 0.1; } .nexulo-highlight h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; } .nexulo-highlight p { font-size: 1.05rem; line-height: 1.7; opacity: 0.95; } .nexulo-checklist { background: #f8f9fa; border-left: 5px solid var(--lime); padding: 32px; border-radius: 12px; margin: 40px 0; } .nexulo-checklist h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark-grey); margin-bottom: 20px; } .nexulo-checklist ul { list-style: none; } .nexulo-checklist li { font-size: 1rem; padding: 12px 0; border-bottom: 1px solid #e0e0e0; position: relative; padding-left: 35px; color: #2c3e50; } .nexulo-checklist li:last-child { border-bottom: none; } .nexulo-checklist li::before { content: '✓'; position: absolute; left: 0; top: 12px; width: 24px; height: 24px; background: var(--lime); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; } .nexulo-img-block { margin: 50px 0; border-radius: 16px; overnexulow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); } .nexulo-img-block img { width: 100%; height: 400px; object-fit: cover; } .nexulo-img-caption { background: var(--light-grey); padding: 16px 24px; font-size: 0.85rem; color: #546e7a; font-style: italic; } .nexulo-quote { background: linear-gradient(135deg, #e8f5e9, #f1f8e9); border-left: 5px solid var(--lime); padding: 32px; border-radius: 12px; margin: 40px 0; } .nexulo-quote blockquote { font-size: 1.2rem; font-style: italic; color: var(--dark-grey); line-height: 1.7; margin-bottom: 12px; } .nexulo-quote cite { font-size: 0.9rem; color: #546e7a; font-style: normal; font-weight: 600; } .nexulo-sidebar { position: sticky; top: 100px; } .nexulo-sidebar-block { background: var(--white); border: 2px solid var(--light-grey); border-radius: 16px; padding: 28px; margin-bottom: 28px; } .nexulo-sidebar-block h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark-grey); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--coral); } .nexulo-sidebar-item { padding: 16px 0; border-bottom: 1px solid var(--light-grey); } .nexulo-sidebar-item:last-child { border-bottom: none; } .nexulo-sidebar-item a { font-size: 0.95rem; font-weight: 600; color: var(--dark-grey); line-height: 1.5; display: block; transition: color 0.3s; } .nexulo-sidebar-item a:hover { color: var(--coral); } .nexulo-sidebar-tag { font-size: 0.7rem; color: var(--coral); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; display: block; margin-bottom: 6px; } .nexulo-newsletter { background: linear-gradient(135deg, var(--coral), var(--lime)); color: var(--white); padding: 32px; border-radius: 16px; text-align: center; } .nexulo-newsletter h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; } .nexulo-newsletter p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 20px; } .nexulo-nl-input { width: 100%; padding: 14px 20px; border-radius: 50px; border: none; font-size: 0.9rem; margin-bottom: 12px; outline: none; } .nexulo-nl-btn { width: 100%; padding: 14px; background: var(--white); color: var(--coral); font-weight: 700; font-size: 0.95rem; border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s; } .nexulo-nl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); } .nexulo-footer { background: var(--dark-grey); color: #bdc3c7; padding: 60px 24px 30px; } .nexulo-footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .nexulo-footer-brand { padding-right: 20px; } .nexulo-footer-brand .nexulo-logo { color: var(--white); font-size: 2rem; margin-bottom: 16px; } .nexulo-footer-brand p { font-size: 0.9rem; line-height: 1.7; } .nexulo-footer h4 { color: var(--white); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; } .nexulo-footer a { color: #95a5a6; font-size: 0.9rem; display: block; margin-bottom: 10px; transition: color 0.3s; } .nexulo-footer a:hover { color: var(--coral); } .nexulo-footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 30px; border-top: 1px solid #34495e; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; } .nexulo-footer-copy { font-size: 0.85rem; } .nexulo-footer-links { display: flex; gap: 20px; } .nexulo-footer-links a { font-size: 0.85rem; } .nexulo-disclaimer { max-width: 1400px; margin: 20px auto 0; font-size: 0.8rem; line-height: 1.6; color: #7f8c8d; } .nexulo-cookies { position: fixed; bottom: 20px; right: 20px; background: var(--white); border: 2px solid var(--coral); border-radius: 16px; padding: 24px; max-width: 380px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); z-index: 2000; display: none; } .nexulo-cookies:target { display: block; } .nexulo-cookies h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark-grey); margin-bottom: 12px; } .nexulo-cookies p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; color: #546e7a; } .nexulo-cookies-btns { display: flex; gap: 10px; } .nexulo-cookies-btn { flex: 1; padding: 10px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.3s; text-align: center; } .nexulo-cookies-accept { background: var(--coral); color: var(--white); border: none; } .nexulo-cookies-accept:hover { background: #e74c3c; } .nexulo-cookies-decline { background: var(--light-grey); color: var(--dark-grey); border: none; } .nexulo-cookies-decline:hover { background: #d5dbdb; } .nexulo-cookies a { color: var(--coral); text-decoration: underline; } @media (max-width: 1024px) { .nexulo-main { grid-template-columns: 1fr; gap: 40px; } .nexulo-sidebar { position: static; } .nexulo-cards { grid-template-columns: 1fr; } .nexulo-footer-inner { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .nexulo-nav { display: none; } .nexulo-nav.nexulo-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px; border-bottom: 3px solid var(--coral); box-shadow: 0 8px 30px rgba(0,0,0,0.1); } .nexulo-burger { display: flex; } .nexulo-hero { height: 70vh; min-height: 500px; } .nexulo-hero h1 { font-size: 2rem; } .nexulo-hero-lead { font-size: 1rem; } .nexulo-main { padding: 40px 20px; } .nexulo-footer-inner { grid-template-columns: 1fr; gap: 30px; } .nexulo-footer-bottom { flex-direction: column; align-items: flex-start; } .nexulo-cookies { max-width: calc(100% - 40px); } }