/*
Theme Name: YNavigator Theme
Theme URI: http://example.com/
Author: Aleksandr Sidorenkov
Author URI: http://example.com/
Description: Custom minimalist WordPress theme for YNavigator agency. Colors: orange/white/black.
Version: 1.0
License: GNU General Public License v2 or later
Tags: custom, e-commerce, responsive, minimalist
Text Domain: ynavigator
*/
body {
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #111;
  background: #ffffff;
}
.header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 30px;
  background:#ffffff;
  border-bottom:1px solid #eee;
}
.header .logo img { height:56px; }
.menu a {
  margin-left:18px;
  text-decoration:none;
  color:#111;
  font-weight:600;
}
.hero {
  padding:80px 20px;
  background: linear-gradient(135deg, #ff7a00 0%, #ffb366 100%);
  color:#fff;
  text-align:center;
}
.hero h1 {
  font-size:34px;
  margin:0 0 12px 0;
}
.hero p {
  margin:0 0 20px 0;
  font-size:18px;
  opacity:0.95;
}
.cta {
  display:inline-block;
  padding:12px 22px;
  background:#111;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:700;
}
.container { max-width:1100px; margin:40px auto; padding:0 18px; }
.services .section { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:28px; }
.card { background:#fff; border:1px solid #eee; padding:18px; border-radius:8px; box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
.footer { text-align:center; padding:28px; color:#666; border-top:1px solid #f0f0f0; }
@media (max-width:800px) {
  .services .section { grid-template-columns:1fr; }
  .hero h1 { font-size:28px; }
}
