/*
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: #2a2a2a; background: #ffffff; line-height: 1.7; } a { color: inherit; text-decoration: none; transition: color 0.3s; } img { max-width: 100%; height: auto; display: block; } :root { --primary-yellow: #FFB84D; --accent-orange: #FF6B35; --text-dark: #2a2a2a; --text-medium: #555555; --text-light: #888888; --bg-cream: #FFF8F0; --bg-light: #FAFAFA; } .bosmeri-header { background: #ffffff; border-bottom: 3px solid var(--primary-yellow); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.05); } .bosmeri-header-inner { max-width: 1400px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; } .bosmeri-logo { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; } .bosmeri-logo span { color: var(--accent-orange); } .bosmeri-nav { display: flex; gap: 32px; align-items: center; } .bosmeri-nav a { font-size: 0.9rem; font-weight: 600; color: var(--text-medium); text-transform: uppercase; letter-spacing: 0.05em; position: relative; padding: 4px 0; } .bosmeri-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-orange); transition: width 0.3s; } .bosmeri-nav a:hover::after, .bosmeri-nav a.active::after { width: 100%; } .bosmeri-nav a:hover { color: var(--accent-orange); } .bosmeri-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; } .bosmeri-burger span { width: 26px; height: 2.5px; background: var(--text-dark); transition: all 0.3s; border-radius: 2px; } .bosmeri-mobile-menu { display: none; background: #ffffff; border-top: 1px solid #e0e0e0; padding: 20px 24px; } .bosmeri-mobile-menu.open { display: block; } .bosmeri-mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-weight: 600; color: var(--text-medium); } .bosmeri-split-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0; max-width: 1400px; margin: 0 auto; position: relative; } .bosmeri-hero-content { padding: 60px 40px 60px 60px; background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%); } .bosmeri-hero-tag { display: inline-block; background: var(--accent-orange); color: #ffffff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 14px; margin-bottom: 20px; border-radius: 20px; } .bosmeri-hero-title { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; color: var(--text-dark); line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em; } .bosmeri-hero-lead { font-size: 1.15rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 28px; max-width: 600px; } .bosmeri-author { display: flex; align-items: center; gap: 14px; margin-top: 32px; } .bosmeri-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-yellow); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: var(--text-dark); flex-shrink: 0; } .bosmeri-author-info { } .bosmeri-author-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); } .bosmeri-author-role { font-size: 0.8rem; color: var(--text-light); } .bosmeri-hero-image { position: relative; overflow: hidden; min-height: 500px; } .bosmeri-hero-image img { width: 100%; height: 100%; object-fit: cover; } .bosmeri-layout { max-width: 1400px; margin: 0 auto; padding: 0 60px 80px; display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; } .bosmeri-content { } .bosmeri-section { margin-bottom: 48px; } .bosmeri-section-intro { background: var(--bg-light); border-radius: 12px; padding: 40px 45px; margin-bottom: 40px; border-left: 4px solid var(--primary-yellow); } .bosmeri-section-intro h2 { font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; } .bosmeri-section-intro p { color: var(--text-medium); font-size: 1.05rem; margin-bottom: 14px; } .bosmeri-img-block { border-radius: 12px; overflow: hidden; margin: 40px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08); } .bosmeri-img-block img { width: 100%; height: 400px; object-fit: cover; } .bosmeri-img-caption { background: var(--bg-cream); padding: 14px 20px; font-size: 0.85rem; color: var(--text-light); font-style: italic; } .bosmeri-heading { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin: 44px 0 20px; padding-left: 18px; border-left: 5px solid var(--accent-orange); } .bosmeri-text { font-size: 1.05rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 18px; } .bosmeri-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 36px 0; } .bosmeri-card { background: #ffffff; border: 2px solid var(--bg-cream); border-radius: 12px; padding: 32px 28px; transition: all 0.3s; position: relative; overflow: hidden; } .bosmeri-card::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--primary-yellow); } .bosmeri-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255, 184, 77, 0.15); border-color: var(--primary-yellow); } .bosmeri-card-num { font-size: 3rem; font-weight: 800; color: rgba(255, 184, 77, 0.3); line-height: 1; margin-bottom: 8px; } .bosmeri-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; } .bosmeri-card p { font-size: 0.95rem; color: var(--text-medium); line-height: 1.6; } .bosmeri-card-tag { display: inline-block; background: var(--bg-cream); color: var(--accent-orange); font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-top: 14px; text-transform: uppercase; letter-spacing: 0.04em; } .bosmeri-highlight { background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8555 100%); border-radius: 12px; padding: 40px 45px; color: #ffffff; margin: 44px 0; position: relative; overflow: hidden; } .bosmeri-highlight::after { content: '✦'; position: absolute; right: 30px; top: 20px; font-size: 8rem; opacity: 0.08; line-height: 1; } .bosmeri-highlight h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; } .bosmeri-highlight p { font-size: 1.05rem; opacity: 0.95; line-height: 1.7; margin-bottom: 12px; } .bosmeri-highlight ul { margin: 18px 0 0 24px; } .bosmeri-highlight li { margin-bottom: 8px; font-size: 0.98rem; opacity: 0.92; } .bosmeri-quote { background: var(--bg-cream); border-radius: 12px; padding: 32px 36px; margin: 40px 0; border-left: 5px solid var(--primary-yellow); } .bosmeri-quote blockquote { font-size: 1.25rem; font-style: italic; color: var(--text-dark); line-height: 1.6; margin-bottom: 14px; font-weight: 500; } .bosmeri-quote cite { font-size: 0.85rem; color: var(--text-light); font-style: normal; font-weight: 600; } .bosmeri-info-box { background: linear-gradient(135deg, #FFF8F0 0%, #FFF 100%); border: 2px solid var(--primary-yellow); border-radius: 12px; padding: 28px 32px; margin: 36px 0; } .bosmeri-info-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-orange); margin-bottom: 10px; } .bosmeri-info-box p { font-size: 0.98rem; color: var(--text-medium); line-height: 1.65; } .bosmeri-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 32px; border-top: 2px solid var(--bg-cream); } .bosmeri-tag { background: var(--bg-light); color: var(--text-medium); font-size: 0.8rem; font-weight: 600; padding: 8px 16px; border-radius: 20px; transition: all 0.3s; } .bosmeri-tag:hover { background: var(--primary-yellow); color: var(--text-dark); } .bosmeri-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 28px; } .bosmeri-sidebar-card { background: #ffffff; border: 2px solid var(--bg-cream); border-radius: 12px; padding: 28px 24px; } .bosmeri-sidebar-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 3px solid var(--primary-yellow); } .bosmeri-sidebar-item { padding: 14px 0; border-bottom: 1px solid var(--bg-cream); transition: all 0.2s; } .bosmeri-sidebar-item:last-child { border-bottom: none; padding-bottom: 0; } .bosmeri-sidebar-item:hover { transform: translateX(4px); } .bosmeri-sidebar-item-cat { font-size: 0.7rem; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 6px; display: block; } .bosmeri-sidebar-item-title { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; display: block; } .bosmeri-sidebar-item:hover .bosmeri-sidebar-item-title { color: var(--accent-orange); } .bosmeri-sidebar-tip { background: linear-gradient(135deg, var(--bg-cream) 0%, #FFF 100%); border-radius: 10px; padding: 20px; margin-bottom: 14px; border-left: 4px solid var(--primary-yellow); } .bosmeri-sidebar-tip-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-orange); margin-bottom: 8px; } .bosmeri-sidebar-tip p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.6; } .bosmeri-newsletter { background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8555 100%); border-radius: 12px; padding: 32px 28px; color: #ffffff; text-align: center; } .bosmeri-newsletter h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; } .bosmeri-newsletter p { font-size: 0.88rem; opacity: 0.9; margin-bottom: 20px; } .bosmeri-newsletter input { width: 100%; padding: 12px 18px; border-radius: 30px; border: none; font-size: 0.9rem; margin-bottom: 12px; outline: none; } .bosmeri-newsletter button { width: 100%; padding: 12px; background: #ffffff; color: var(--accent-orange); font-weight: 700; font-size: 0.9rem; border: none; border-radius: 30px; cursor: pointer; transition: all 0.3s; } .bosmeri-newsletter button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); } .bosmeri-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 60px 24px 28px; } .bosmeri-footer-inner { max-width: 1400px; margin: 0 auto; } .bosmeri-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; } .bosmeri-footer-brand .bosmeri-logo { color: #ffffff; font-size: 2rem; } .bosmeri-footer-brand .bosmeri-logo span { color: var(--primary-yellow); } .bosmeri-footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 320px; } .bosmeri-footer-col h5 { color: #ffffff; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; } .bosmeri-footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; } .bosmeri-footer-col a:hover { color: var(--primary-yellow); } .bosmeri-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; } .bosmeri-footer-copy { font-size: 0.85rem; } .bosmeri-footer-legal { display: flex; gap: 24px; } .bosmeri-footer-legal a { color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: color 0.2s; } .bosmeri-footer-legal a:hover { color: #ffffff; } .bosmeri-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 20px; line-height: 1.6; max-width: 900px; } .bosmeri-cookies { position: fixed; bottom: 20px; right: 20px; background: #ffffff; border: 2px solid var(--primary-yellow); border-radius: 12px; padding: 24px; max-width: 380px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); z-index: 200; display: none; } .bosmeri-cookies.show { display: block; animation: slideUp 0.4s ease; } @keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .bosmeri-cookies h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; } .bosmeri-cookies p { font-size: 0.85rem; color: var(--text-medium); line-height: 1.5; margin-bottom: 16px; } .bosmeri-cookies-buttons { display: flex; gap: 10px; } .bosmeri-cookies-buttons button { flex: 1; padding: 10px; font-size: 0.85rem; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s; } .bosmeri-btn-accept { background: var(--accent-orange); color: #ffffff; } .bosmeri-btn-accept:hover { background: #FF5520; } .bosmeri-btn-decline { background: var(--bg-light); color: var(--text-medium); } .bosmeri-btn-decline:hover { background: var(--bg-cream); } .bosmeri-cookies a { color: var(--accent-orange); text-decoration: underline; font-size: 0.82rem; margin-top: 8px; display: inline-block; } .bosmeri-legal-page { max-width: 900px; margin: 0 auto; padding: 60px 24px; } .bosmeri-legal-page h1 { font-size: 2.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; } .bosmeri-legal-page h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin: 36px 0 16px; padding-left: 16px; border-left: 4px solid var(--primary-yellow); } .bosmeri-legal-page p { font-size: 1rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 16px; } .bosmeri-legal-page ul { margin: 16px 0 16px 24px; } .bosmeri-legal-page li { margin-bottom: 10px; color: var(--text-medium); } .bosmeri-success-page { max-width: 700px; margin: 0 auto; padding: 100px 24px; text-align: center; } .bosmeri-success-page h1 { font-size: 2.8rem; font-weight: 800; color: var(--accent-orange); margin-bottom: 20px; } .bosmeri-success-page p { font-size: 1.1rem; color: var(--text-medium); margin-bottom: 32px; line-height: 1.7; } .bosmeri-btn { display: inline-block; background: var(--accent-orange); color: #ffffff; font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: 30px; transition: all 0.3s; } .bosmeri-btn:hover { background: #FF5520; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3); } .bosmeri-404-page { max-width: 700px; margin: 0 auto; padding: 100px 24px; text-align: center; } .bosmeri-404-page h1 { font-size: 6rem; font-weight: 800; color: var(--primary-yellow); margin-bottom: 20px; } .bosmeri-404-page h2 { font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; } .bosmeri-404-page p { font-size: 1rem; color: var(--text-medium); margin-bottom: 32px; } .bosmeri-404-links { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; } .bosmeri-404-links a { background: var(--bg-cream); padding: 16px 24px; border-radius: 8px; font-weight: 600; color: var(--text-dark); transition: all 0.2s; } .bosmeri-404-links a:hover { background: var(--primary-yellow); } @media (max-width: 1024px) { .bosmeri-split-hero { grid-template-columns: 1fr; } .bosmeri-hero-image { min-height: 350px; } .bosmeri-layout { grid-template-columns: 1fr; padding: 0 32px 60px; } .bosmeri-sidebar { position: static; } .bosmeri-cards-grid { grid-template-columns: 1fr; } .bosmeri-footer-top { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .bosmeri-nav { display: none; } .bosmeri-burger { display: flex; } .bosmeri-hero-content { padding: 40px 24px; } .bosmeri-hero-title { font-size: 2rem; } .bosmeri-layout { padding: 0 20px 40px; } .bosmeri-section-intro { padding: 28px 24px; } .bosmeri-highlight { padding: 32px 24px; } .bosmeri-footer-top { grid-template-columns: 1fr; gap: 32px; } .bosmeri-footer-bottom { flex-direction: column; align-items: flex-start; } .bosmeri-cookies { max-width: 90%; left: 5%; right: 5%; } }