/*
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: var(--text-dark); background: var(--bg-main); line-height: 1.7; min-height: 100vh; } :root { --bg-main: #f4f5f7; --coral: #ff7675; --text-dark: #2d3436; --lime: #00b894; --white: #ffffff; --text-soft: #636e72; --light-gray: #e8eaed; --radius: 16px; --shadow: 0 4px 20px rgba(45,52,54,0.08); --shadow-hover: 0 8px 30px rgba(45,52,54,0.15); } a { color: inherit; text-decoration: none; transition: color 0.3s; } a:hover { color: var(--coral); } img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background: var(--white); border-bottom: 3px solid var(--coral); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); } .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; } .logo { font-size: 2rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.03em; } .logo span { color: var(--coral); } nav { display: flex; gap: 32px; align-items: center; } nav a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; position: relative; color: var(--text-dark); } nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 3px; background: var(--lime); transition: width 0.3s; } nav a:hover::after { width: 100%; } .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; } .burger span { width: 26px; height: 3px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; } .hero { display: grid; grid-template-columns: 360px 1fr; gap: 48px; padding: 60px 0; align-items: start; } .hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); } .hero-img img { width: 100%; height: 420px; object-fit: cover; } .hero-content { padding-top: 20px; } .hero-tag { display: inline-block; background: var(--lime); color: var(--white); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; } .hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; color: var(--text-dark); margin-bottom: 20px; } .hero-subtitle { font-size: 1.15rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 24px; max-width: 600px; } .hero-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--text-soft); flex-wrap: wrap; } .hero-meta span { display: flex; align-items: center; gap: 6px; } .news-strip { background: var(--white); padding: 24px 0; margin-bottom: 48px; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; } .news-strip-inner { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 20px; } .news-card { min-width: 280px; scroll-snap-align: start; background: var(--bg-main); padding: 20px; border-radius: 12px; border-left: 4px solid var(--coral); transition: transform 0.3s, box-shadow 0.3s; } .news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); } .news-card-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lime); margin-bottom: 8px; } .news-card-title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 8px; } .news-card-excerpt { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; } .main-content { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; } .article-section { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 32px; } .section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime); margin-bottom: 12px; } .section-title { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 16px; } .section-text { font-size: 1.05rem; color: var(--text-dark); line-height: 1.8; margin-bottom: 16px; } .editorial-card { background: linear-gradient(135deg, var(--coral) 0%, #fd7979 100%); color: var(--white); padding: 36px; border-radius: var(--radius); margin: 32px 0; position: relative; overflow: hidden; box-shadow: var(--shadow-hover); } .editorial-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.1); border-radius: 50%; } .editorial-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; } .editorial-card p { font-size: 1rem; line-height: 1.7; margin-bottom: 12px; opacity: 0.95; } .editorial-card ul { margin-left: 20px; margin-top: 16px; } .editorial-card li { margin-bottom: 10px; font-size: 0.95rem; } .checklist-box { background: var(--bg-main); border: 3px solid var(--lime); padding: 32px; border-radius: var(--radius); margin: 32px 0; } .checklist-box h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; } .checklist-item { display: flex; align-items: start; gap: 12px; margin-bottom: 14px; padding: 12px; background: var(--white); border-radius: 8px; } .checklist-item::before { content: '✓'; font-size: 1.2rem; font-weight: 700; color: var(--lime); flex-shrink: 0; } .highlight-box { background: linear-gradient(135deg, var(--lime) 0%, #00a383 100%); color: var(--white); padding: 40px; border-radius: var(--radius); margin: 32px 0; box-shadow: var(--shadow-hover); } .highlight-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; } .highlight-box p { font-size: 1.05rem; line-height: 1.7; opacity: 0.95; } .img-block { margin: 32px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); } .img-block img { width: 100%; height: auto; max-height: 400px; object-fit: cover; } .img-caption { background: var(--white); padding: 12px 20px; font-size: 0.85rem; color: var(--text-soft); font-style: italic; } footer { background: var(--text-dark); color: rgba(255,255,255,0.8); padding: 48px 0 24px; margin-top: 60px; } .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; } .footer-brand { max-width: 400px; } .footer-brand .logo { color: var(--white); margin-bottom: 16px; } .footer-brand p { font-size: 0.9rem; line-height: 1.7; } .footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; } .footer-col a { display: block; font-size: 0.85rem; margin-bottom: 10px; color: rgba(255,255,255,0.7); } .footer-col a:hover { color: var(--coral); } .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; } .footer-legal { display: flex; gap: 20px; } .disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.6; } .cookie-banner { position: fixed; bottom: 20px; right: 20px; background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-hover); max-width: 400px; z-index: 1000; border: 2px solid var(--coral); } .cookie-banner h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; } .cookie-banner p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; } .cookie-buttons { display: flex; gap: 10px; } .cookie-buttons button { padding: 10px 20px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 0.85rem; transition: all 0.3s; } .cookie-accept { background: var(--lime); color: var(--white); } .cookie-decline { background: var(--light-gray); color: var(--text-dark); } .cookie-buttons button:hover { transform: translateY(-2px); box-shadow: var(--shadow); } #cookie-consent:checked ~ .cookie-banner { display: none; } #cookie-consent { display: none; } .form-group { margin-bottom: 16px; } .form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); } .form-group input { width: 100%; padding: 12px 16px; border: 2px solid var(--light-gray); border-radius: 8px; font-size: 0.95rem; transition: border-color 0.3s; } .form-group input:focus { outline: none; border-color: var(--lime); } .btn-submit { background: var(--coral); color: var(--white); padding: 14px 32px; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; } .btn-submit:hover { background: var(--lime); transform: translateY(-2px); box-shadow: var(--shadow-hover); } .success-box { background: var(--white); padding: 60px 40px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; margin: 60px 0; } .success-box h1 { font-size: 2.5rem; color: var(--lime); margin-bottom: 20px; } .success-box p { font-size: 1.1rem; color: var(--text-soft); margin-bottom: 32px; } .btn-primary { display: inline-block; background: var(--coral); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 700; transition: all 0.3s; } .btn-primary:hover { background: var(--lime); transform: translateY(-2px); } .legal-content { background: var(--white); padding: 48px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 40px; } .legal-content h1 { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; } .legal-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-top: 32px; margin-bottom: 16px; } .legal-content p { font-size: 1rem; color: var(--text-dark); line-height: 1.8; margin-bottom: 16px; } .legal-content ul { margin-left: 24px; margin-bottom: 16px; } .legal-content li { margin-bottom: 8px; line-height: 1.7; } .error-box { background: var(--white); padding: 80px 40px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; margin: 60px 0; } .error-box h1 { font-size: 6rem; font-weight: 900; color: var(--coral); line-height: 1; margin-bottom: 20px; } .error-box h2 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 16px; } .error-box p { font-size: 1.1rem; color: var(--text-soft); margin-bottom: 32px; } @media (max-width: 900px) { .hero { grid-template-columns: 1fr; } .hero-img { order: -1; } .footer-inner { grid-template-columns: 1fr; } nav { display: none; } nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow-hover); } .burger { display: flex; } .news-strip-inner { padding: 0 10px; } } @media (max-width: 600px) { .hero-title { font-size: 1.8rem; } .article-section { padding: 24px 20px; } .editorial-card { padding: 24px; } .checklist-box { padding: 20px; } .highlight-box { padding: 24px; } .footer-bottom { flex-direction: column; align-items: flex-start; } .cookie-banner { left: 10px; right: 10px; max-width: none; } }