/*
Theme Name:   Boris Mönnich Child
Theme URI:    https://borismoennich.de
Description:  Child-Theme für Boris Mönnich – basiert auf Hello Elementor
Author:       Markus Palmer
Author URI:   https://markus-palmer.de
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  boris-moennich-child
*/

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --bm-accent:       #B85C38;
  --bm-accent-dark:  #8B3A1E;
  --bm-text:         #1a1a18;
  --bm-muted:        #888780;
  --bm-border:       #e0ddd6;
  --bm-bg:           #ffffff;
  --bm-bg-soft:      #f5f4f0;
  --bm-radius:       10px;
  --bm-radius-lg:    14px;
  --bm-font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =============================================
   BASE RESET & TYPOGRAPHY
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bm-font);
  color: var(--bm-text);
  background: var(--bm-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bm-font);
  font-weight: 600;
  line-height: 1.15;
  color: var(--bm-text);
  margin: 0 0 0.5em;
}

p {
  line-height: 1.75;
  color: var(--bm-muted);
  margin: 0 0 1em;
}

a {
  color: var(--bm-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   ELEMENTOR GLOBAL OVERRIDES
   ============================================= */

/* Sections */
.elementor-section,
.e-con {
  position: relative;
}

/* Headings in Elementor */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--bm-font) !important;
}

/* =============================================
   NAVIGATION (Hello Elementor Header)
   ============================================= */
.site-header {
  border-bottom: 1px solid var(--bm-border);
  background: var(--bm-bg);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.site-header .site-branding .site-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bm-text);
}

.site-header .site-branding .site-title span {
  color: var(--bm-accent);
}

/* Nav menu */
.main-navigation a {
  font-size: 13px;
  color: var(--bm-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--bm-text);
}

/* =============================================
   BUTTONS
   ============================================= */
.bm-btn,
.elementor-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bm-font);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--bm-radius);
  padding: 11px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

.bm-btn-primary,
.elementor-button.bm-btn-primary {
  background: var(--bm-accent);
  color: #fff !important;
}

.bm-btn-primary:hover {
  background: var(--bm-accent-dark);
  opacity: 1;
}

.bm-btn-ghost,
.elementor-button.bm-btn-ghost {
  background: transparent;
  color: var(--bm-muted) !important;
  border: 1px solid var(--bm-border);
}

.bm-btn-ghost:hover {
  border-color: var(--bm-muted);
  color: var(--bm-text) !important;
  opacity: 1;
}

/* =============================================
   HERO SECTION
   ============================================= */
.bm-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid var(--bm-border);
}

.bm-hero-left {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border-right: 1px solid var(--bm-border);
}

.bm-hero-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bm-accent);
  font-weight: 600;
}

.bm-hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--bm-text);
}

.bm-hero-sub {
  font-size: 15px;
  color: var(--bm-muted);
  line-height: 1.75;
  max-width: 400px;
}

.bm-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bm-hero-right {
  background: var(--bm-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 48px;
}

/* Avatar */
.bm-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bm-accent);
}

.bm-avatar-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bm-accent), var(--bm-accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.bm-hero-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--bm-text);
}

.bm-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.bm-pill {
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--bm-border);
  color: var(--bm-muted);
  background: var(--bm-bg);
}

/* =============================================
   STATS STRIP
   ============================================= */
.bm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--bm-border);
}

.bm-stat-cell {
  padding: 32px 56px;
  border-right: 1px solid var(--bm-border);
}

.bm-stat-cell:last-child {
  border-right: none;
}

.bm-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--bm-accent);
  margin-bottom: 4px;
}

.bm-stat-label {
  font-size: 13px;
  color: var(--bm-muted);
}

/* =============================================
   SECTIONS (allgemein)
   ============================================= */
.bm-section {
  padding: 72px 56px;
  border-bottom: 1px solid var(--bm-border);
}

.bm-section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bm-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.bm-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--bm-text);
  margin-bottom: 8px;
}

.bm-section-sub {
  font-size: 15px;
  color: var(--bm-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}

/* =============================================
   PODCAST CARD
   ============================================= */
.bm-podcast-card {
  background: var(--bm-bg-soft);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.bm-pod-art {
  width: 88px;
  height: 88px;
  border-radius: var(--bm-radius);
  background: var(--bm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.3;
}

.bm-pod-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--bm-text);
  margin-bottom: 6px;
}

.bm-pod-desc {
  font-size: 13px;
  color: var(--bm-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.bm-pod-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bm-platform-badge {
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--bm-border);
  color: var(--bm-muted);
  background: var(--bm-bg);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: border-color 0.2s, color 0.2s;
}

.bm-platform-badge:hover {
  border-color: var(--bm-accent);
  color: var(--bm-accent);
  opacity: 1;
}

.bm-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bm-accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: #fff;
  font-size: 22px;
  transition: background 0.2s;
  text-decoration: none;
}

.bm-play-btn:hover {
  background: var(--bm-accent-dark);
  opacity: 1;
  color: #fff;
}

/* =============================================
   BLOG GRID
   ============================================= */
.bm-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bm-blog-card {
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius-lg);
  overflow: hidden;
  background: var(--bm-bg);
  transition: border-color 0.2s;
}

.bm-blog-card:hover {
  border-color: var(--bm-accent);
}

.bm-blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.bm-blog-img-placeholder {
  height: 180px;
  background: var(--bm-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--bm-border);
  border-bottom: 1px solid var(--bm-border);
}

.bm-blog-body {
  padding: 20px 24px;
}

.bm-blog-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bm-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.bm-blog-headline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bm-text);
  margin-bottom: 6px;
}

.bm-blog-meta {
  font-size: 12px;
  color: var(--bm-muted);
}

/* =============================================
   ÜBER MICH SECTION
   ============================================= */
.bm-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bm-about-img {
  width: 100%;
  border-radius: var(--bm-radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.bm-about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--bm-radius-lg);
  background: var(--bm-bg-soft);
  border: 1px solid var(--bm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--bm-border);
}

/* =============================================
   SOCIAL ICONS
   ============================================= */
.bm-social-row {
  display: flex;
  gap: 12px;
}

.bm-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bm-muted);
  transition: all 0.2s;
  font-size: 16px;
}

.bm-social-link:hover {
  border-color: var(--bm-accent);
  color: var(--bm-accent);
  opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  padding: 28px 56px;
  border-top: 1px solid var(--bm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bm-bg);
}

.site-footer .site-info {
  font-size: 12px;
  color: var(--bm-muted);
}

.site-footer .site-info a {
  color: var(--bm-accent);
}

.bm-footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--bm-muted);
}

.bm-footer-links a {
  color: var(--bm-muted);
}

.bm-footer-links a:hover {
  color: var(--bm-text);
  opacity: 1;
}

/* =============================================
   ELEMENTOR WIDGET OVERRIDES
   ============================================= */

/* Divider */
.elementor-divider-separator {
  border-color: var(--bm-border) !important;
}

/* Icon Box */
.elementor-icon-box-icon .elementor-icon {
  color: var(--bm-accent) !important;
}

/* Image */
.elementor-widget-image img {
  border-radius: var(--bm-radius-lg);
}

/* Heading Accent */
.bm-heading-accent {
  color: var(--bm-accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .bm-hero {
    grid-template-columns: 1fr;
  }

  .bm-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--bm-border);
    padding: 48px 32px;
  }

  .bm-hero-right {
    padding: 40px 32px;
  }

  .bm-hero-title {
    font-size: 36px;
  }

  .bm-stats {
    grid-template-columns: 1fr;
  }

  .bm-stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--bm-border);
    padding: 24px 32px;
  }

  .bm-stat-cell:last-child {
    border-bottom: none;
  }

  .bm-section {
    padding: 48px 32px;
  }

  .bm-podcast-card {
    flex-direction: column;
    text-align: center;
  }

  .bm-blog-grid {
    grid-template-columns: 1fr;
  }

  .bm-about {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 28px 32px;
  }
}

@media (max-width: 600px) {
  .bm-hero-left {
    padding: 40px 24px;
  }

  .bm-hero-title {
    font-size: 30px;
  }

  .bm-section {
    padding: 40px 24px;
  }

  .bm-hero-actions {
    flex-direction: column;
  }

  .bm-btn,
  .elementor-button {
    width: 100%;
    justify-content: center;
  }
}
