/*
Theme Name: Erik@ Entrümpelung
Theme URI: https://www.erika-entruempelung.de/
Author: Erik@ Entrümpelung
Description: Individuelles, responsives WordPress-Theme nach dem gelieferten Erik@-Entrümpelung-Webdesign.
Version: 1.0.0
Text Domain: erik-entruempelung
*/

:root{
  --red:#f20b0b;
  --red2:#ff1b1b;
  --black:#111;
  --dark:#171717;
  --text:#171717;
  --muted:#666;
  --light:#f6f6f6;
  --line:#e8e8e8;
  --white:#fff;
  --shadow:0 12px 35px rgba(0,0,0,.10);
  --radius:8px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.55;
}

a{
  color:inherit;
  text-decoration:none;
}

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

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* =========================
   TOPBAR
========================= */

.topbar{
  background:#111;
  color:#fff;
  font-size:14px;
}

.topbar .container{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.topbar .items{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  box-shadow:0 3px 16px rgba(0,0,0,.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:90px;
}

/* WordPress Website-Logo */

.custom-logo-link{
  display:block;
  line-height:0;
}

.custom-logo{
  width:185px;
  height:auto;
  display:block;
}

/* Fallback logo */

.logo-text{
  font-size:28px;
  font-weight:900;
  color:var(--black);
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.menu{
  display:flex;
  align-items:center;
  gap:30px;
  font-weight:700;
  margin:0;
  padding:0;
  list-style:none;
}

.menu li{
  list-style:none;
}

.menu a{
  position:relative;
  padding:33px 0;
  display:block;
}

.menu a:hover,
.menu .current-menu-item>a{
  color:var(--red);
}

.menu a:hover:after,
.menu .current-menu-item>a:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:23px;
  height:3px;
  background:var(--red);
}

.cta{
  background:var(--red);
  color:#fff!important;
  padding:15px 22px!important;
  border-radius:6px;
  font-weight:800;
  display:inline-block;
}

.cta:hover{
  background:#c90000;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
  display:none;
  border:0;
  background:none;
  color:var(--black);
  font-size:30px;
  line-height:1;
  cursor:pointer;
  padding:8px;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:590px;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.78) 42%,
      rgba(0,0,0,.25) 72%,
      rgba(0,0,0,.55) 100%
    ),
    linear-gradient(
      135deg,
      #242424 0%,
      #777 45%,
      #222 100%
    );
  color:#fff;
  display:flex;
  align-items:center;
}

.hero .container{
  padding:78px 0;
}

.kicker{
  color:var(--red2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:18px;
}

.hero h1{
  font-size:clamp(48px,7vw,88px);
  line-height:.96;
  margin:15px 0 20px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-2px;
}

.hero h1 span{
  color:var(--red2);
}

.hero p{
  font-size:21px;
  max-width:650px;
  margin:0 0 28px;
}

/* =========================
   BUTTONS
========================= */

.actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 26px;
  border-radius:7px;
  border:2px solid var(--red);
  background:var(--red);
  color:#fff;
  font-weight:800;
}

.btn:hover{
  background:#c90000;
  border-color:#c90000;
}

.btn.alt{
  background:transparent;
  border-color:#fff;
}

.btn.alt:hover{
  background:#fff;
  color:#111;
}

/* =========================
   CHECKS
========================= */

.checks{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  margin-top:26px;
  font-weight:700;
}

.checks span:before{
  content:"✓";
  background:var(--red);
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  width:22px;
  height:22px;
  margin-right:8px;
}

/* =========================
   QUICK SERVICES
========================= */

.quick{
  background:#fff;
  box-shadow:var(--shadow);
  position:relative;
  margin-top:-1px;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
}

.quick-card{
  text-align:center;
  padding:28px 15px;
  border-right:1px solid var(--line);
}

.quick-card:last-child{
  border:0;
}

.icon{
  width:58px;
  height:58px;
  background:var(--red);
  color:#fff;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  font-size:27px;
  font-weight:900;
}

.quick-card h3{
  margin:0 0 3px;
  font-size:18px;
}

.quick-card p{
  margin:0;
  color:#555;
  font-size:14px;
}

/* =========================
   SECTIONS
========================= */

.section{
  padding:82px 0;
}

.section.gray{
  background:#f6f6f6;
}

.section.dark{
  background:#111;
  color:#fff;
}

.section-title{
  margin-bottom:38px;
}

.section-title .kicker{
  font-size:14px;
}

.section-title h2{
  font-size:clamp(34px,4vw,52px);
  line-height:1.05;
  margin:10px 0;
}

.section-title h2 span{
  color:var(--red);
}

.section-title p{
  font-size:18px;
  max-width:760px;
}

/* =========================
   GRIDS
========================= */

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* =========================
   IMAGE / PHOTO
========================= */

.photo{
  min-height:360px;
  border-radius:4px;
  background:
    linear-gradient(
      135deg,
      #d6d6d6,
      #f8f8f8 45%,
      #b8b8b8
    );
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.photo:after{
  content:"Erik@ Entrümpelung";
  position:absolute;
  inset:auto 20px 20px 20px;
  color:#fff;
  font-size:22px;
  font-weight:900;
  text-shadow:0 2px 5px #000;
}

/* =========================
   CARDS
========================= */

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.card h3{
  margin:12px 0 8px;
  font-size:23px;
}

.card p{
  color:#555;
  margin:0;
}

.service-card .icon{
  margin:0;
}

/* =========================
   STATS
========================= */

.stats{
  background:linear-gradient(90deg,#111,#242424);
  color:#fff;
}

.stat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.stat{
  text-align:center;
  padding:38px 10px;
  border-right:1px solid #444;
}

.stat:last-child{
  border:0;
}

.stat strong{
  display:block;
  font-size:42px;
  color:#fff;
}

.stat span{
  font-size:16px;
}

/* =========================
   STEPS
========================= */

.steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
}

.step{
  text-align:center;
  position:relative;
  padding:20px;
}

.step:not(:last-child):after{
  content:"→";
  position:absolute;
  right:-14px;
  top:42px;
  font-size:32px;
  color:#555;
}

.step .number{
  width:58px;
  height:58px;
  background:var(--red);
  border-radius:50%;
  color:#fff;
  font-weight:900;
  font-size:22px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
}

.step h3{
  margin:0 0 8px;
}

.step p{
  color:#555;
}

/* =========================
   FEATURES
========================= */

.feature-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:#ddd;
}

.feature{
  background:#fff;
  padding:28px;
  text-align:center;
}

.feature .icon{
  font-size:24px;
}

/* =========================
   BANNER
========================= */

.banner{
  background:#111;
  color:#fff;
  padding:28px 0;
}

.banner .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.banner h3{
  font-size:28px;
  margin:0;
}

.banner p{
  margin:3px 0 0;
  color:#ccc;
}

/* =========================
   FAQ
========================= */

.faq details{
  background:#f3f3f3;
  border-radius:6px;
  margin:10px 0;
  overflow:hidden;
}

.faq summary{
  cursor:pointer;
  padding:18px 22px;
  font-weight:800;
  font-size:18px;
  list-style:none;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary:after{
  content:"⌄";
  float:right;
  font-size:24px;
}

.faq details[open] summary{
  background:#ededed;
}

.faq .answer{
  padding:0 22px 20px;
  color:#555;
}

/* =========================
   CONTACT
========================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
}

.contact-box{
  background:#f6f6f6;
  padding:25px;
  border-radius:8px;
  margin-bottom:15px;
}

.contact-box strong{
  display:block;
  font-size:18px;
}

.form{
  display:grid;
  gap:14px;
}

.form input,
.form textarea,
.form select{
  width:100%;
  padding:16px;
  border:1px solid #ddd;
  border-radius:5px;
  font:inherit;
}

.form textarea{
  min-height:170px;
}

/* =========================
   LEGAL
========================= */

.legal{
  max-width:900px;
}

.legal h2{
  font-size:30px;
  margin-top:38px;
}

.legal h3{
  font-size:21px;
  margin-top:25px;
}

.notice{
  border-left:5px solid var(--red);
  background:#f5f5f5;
  padding:20px 22px;
}

/* =========================
   FOOTER
========================= */

.footer{
  background:#111;
  color:#fff;
  padding:55px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:45px;
}

.footer h3{
  margin-top:0;
}

.footer p,
.footer li{
  color:#ccc;
}

.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer li{
  margin:8px 0;
}

.footer-bottom{
  border-top:1px solid #333;
  margin-top:40px;
  padding:18px 0;
  color:#aaa;
  font-size:14px;
  display:flex;
  justify-content:space-between;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

  .menu{
    gap:14px;
  }

  .menu a{
    font-size:14px;
  }

  .custom-logo{
    width:155px;
  }

  .quick-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .grid-2,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .grid-3{
    grid-template-columns:1fr 1fr;
  }

  .grid-4,
  .feature-row{
    grid-template-columns:1fr 1fr;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .step:not(:last-child):after{
    content:"↓";
    right:auto;
    top:auto;
    bottom:-10px;
    left:50%;
  }

  .stat-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* =========================================================
   HANDY / MOBILE
========================================================= */

@media(max-width:680px){

  /* Topbar */

  .topbar .container{
    min-height:34px;
  }

  .topbar .items{
    gap:8px;
    font-size:12px;
  }

  .topbar .items span:nth-child(n+3){
    display:none;
  }

  .topbar .container > div:last-child{
    display:none;
  }

  /* Header */

  .header{
    position:sticky;
    top:0;
  }

  .nav{
    min-height:72px;
    position:relative;
  }

  .custom-logo{
    width:160px;
    height:auto;
  }

  /* Mobile menu */

  .menu{
    display:none;
    position:absolute;
    top:72px;
    left:0;
    right:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 20px 20px;
    margin:0;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    z-index:100;
  }

  .menu.active{
    display:flex;
  }

  .menu li{
    width:100%;
  }

  .menu a{
    display:block;
    width:100%;
    padding:15px 5px;
    font-size:16px;
    border-bottom:1px solid var(--line);
  }

  .menu a:hover,
  .menu .current-menu-item>a{
    color:var(--red);
  }

  .menu a:hover:after,
  .menu .current-menu-item>a:after{
    display:none;
  }

  .menu .cta{
    margin-top:12px;
    text-align:center;
    border:0;
    padding:15px 20px!important;
  }

  /* Hamburger */

  .menu-toggle{
    display:block;
    border:0;
    background:none;
    color:#111;
    font-size:30px;
    line-height:1;
    cursor:pointer;
    padding:8px;
    width:48px;
    height:48px;
  }

  /* Hero */

  .hero{
    min-height:520px;
  }

  .hero .container{
    padding:55px 0;
  }

  .hero h1{
    font-size:50px;
  }

  .hero p{
    font-size:17px;
  }

  /* Buttons */

  .actions{
    flex-direction:column;
    align-items:stretch;
  }

  .actions .btn{
    width:100%;
  }

  /* Checks */

  .checks{
    gap:12px;
    font-size:14px;
  }

  /* Quick cards */

  .quick-grid{
    grid-template-columns:1fr 1fr;
  }

  .quick-card{
    padding:20px 10px;
  }

  /* Grids */

  .grid-3,
  .grid-4,
  .feature-row,
  .footer-grid{
    grid-template-columns:1fr;
  }

  /* Sections */

  .section{
    padding:58px 0;
  }

  /* Banner */

  .banner .container{
    flex-direction:column;
    align-items:flex-start;
  }

  /* Footer */

  .footer-bottom{
    flex-direction:column;
    gap:10px;
  }

  /* Contact */

  .contact-grid{
    gap:30px;
  }

}