/*
Theme Name: Local Boxed _s
Theme URI: https://example.com/
Author: Du
Author URI: https://example.com/
Description: Boxed Layout Business Theme basierend auf Underscores
Version: 1.0.0
Text Domain: localboxed
*/

/* ---------------------------
   Basic Reset / Defaults
--------------------------- */
* { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #f3f4f6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1rem; }
h1,h2,h3 { line-height: 1.2; margin: 0 0 0.75rem; }

/* ---------------------------
   Boxed Layout Container
--------------------------- */
.site-shell {
  max-width: 1120px;
  margin: 28px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.site-inner { padding: 22px; }
@media (min-width: 900px){
  .site-inner { padding: 28px; }
}

/* ---------------------------
   Header
--------------------------- */
.site-header {
  border-bottom: 1px solid #e5e7eb;
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
}
@media (min-width: 900px){
  .header-bar { padding: 18px 28px; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.brand .site-title {
  font-weight: 700;
  letter-spacing: .2px;
}
.brand .site-tagline {
  font-size: .9rem;
  color: #6b7280;
}

.site-nav {
  flex: 1;
}
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.main-navigation a {
  display: inline-block;
  padding: 10px 10px;
  border-radius: 10px;
}
.main-navigation a:hover {
  background: #f3f4f6;
  text-decoration: none;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
}
.header-contact .label {
  font-size: .8rem;
  color: #6b7280;
}
.header-contact .phone {
  font-weight: 700;
  font-size: 1.05rem;
}
.header-contact .phone a:hover { text-decoration: none; }

/* Mobile stacking */
@media (max-width: 720px){
  .header-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .header-contact {
    align-items: flex-start;
  }
}

/* ---------------------------
   Hero (Intro)
--------------------------- */
.hero {
  padding: 26px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}
@media (min-width: 900px){
  .hero { padding: 36px 28px; }
}
.hero-grid {
  display: grid;
  gap: 18px;
  align-items: center;
}
@media (min-width: 900px){
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 28px; }
}
.hero h1 { font-size: 2rem; }
@media (min-width: 900px){
  .hero h1 { font-size: 2.4rem; }
}
.hero .lead { font-size: 1.05rem; color: #374151; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid #e5e7eb;
  background: #111;
  color: #fff;
}
.btn:hover { text-decoration: none; opacity: .92; }
.btn.secondary {
  background: #fff;
  color: #111;
}
.hero-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}
.hero-card h3 { margin-bottom: 8px; }
.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: #374151;
}

/* ---------------------------
   Content / Footer
--------------------------- */
.content-area { padding: 18px 22px; }
@media (min-width: 900px){
  .content-area { padding: 22px 28px; }
}
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px 22px;
  color: #6b7280;
  font-size: .95rem;
}
@media (min-width: 900px){
  .site-footer { padding: 18px 28px; }
}
