/* =======================
   HERO
======================= */

.hero {
    position: relative;
    background-image:
    linear-gradient(rgba(64,64,64,0.80), rgba(64,64,64,0.80)),
    url("../pictures/desktop1.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero {
    overflow: hidden;
}

.topbar {
    width: 100%;
    background-color: #009036;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    min-height: 50px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.2;
}

.topbar-icon {
    display: inline-block;
    flex: 0 0 auto;

    background-image: url("../images/icons1.png");
    background-repeat: no-repeat;
}

.icon-mail {
    width: 30px;
    height: 30px;
    background-position: 0px 3px;
}

.icon-phone {
    width: 30px;
    height: 30px;
    background-position: 0px -52px;
}

.icon-location {
    width: 30px;
    height: 30px;
    background-position: 5px -108px;
}

.mobile-topbar {
    display: none;
}

.hero-content-wrap {
    padding-top: 40px;
    padding-bottom: 300px;
}

.hero-logo-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.hero-logo-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -47%);

    width: 100vw;
    height: 68px;

    background-color: rgba(220,220,220,0.75);
}

.hero-logo {
    position: relative;
    width: 650px;
    height: 205px;
    margin: 0px auto;
    background-image: url("../images/logo_gross.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    z-index: 2;
}

.hero-headline {
    max-width: 1180px;
    margin: 0px auto;

    color: #FFFFFF;
    font-size: 31px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

.hero-restwert {
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 31px;
    gap: 8px;

    width: fit-content;

    margin: 58px auto 0px auto;
    padding: 18px 24px;
    background-color: #009036;
    border-radius: 12px;
}

.restwert-black {
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.restwert-white {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-boxes-section {
    position: relative;
    z-index: 5;
    padding-bottom: 60px;
    background-color: #DCDCDC;
}

.hero-boxes-grid {
    position: relative;
    top: -200px;
    display: flex;
    gap: 28px;
    align-items: stretch;
    margin-bottom: -200px;
}

.hero-box {
    flex: 1 1 0;
    background-color: #FFFFFF;
    padding: 30px 30px 30px 30px;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.18);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-box h2 {
    margin: 0px 0px 25px 0px;
    color: #000000;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.08;
	text-transform: uppercase;
}

.hero-box h2 span {
    display: block;
    color: #009036;
    font-size: 28px;
    margin-bottom: 6px;
	text-transform: lowercase;
}

.hero-box-icon {
    display: block;
    background-image: url("../images/icons2.png");
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.icon-abholung {
    width: 160px;
    height: 90px;
    background-position: 0px -12px;
}

.icon-verguetung {
    width: 160px;
    height: 90px;
    background-position: 0px -151px;
}

.icon-verschrottung {
    width: 160px;
    height: 90px;
    background-position: 0px -291px;
}

.hero-box p {
    margin: 0px 0px 25px 0px;
    color: #000000;
    font-size: 16px;
    line-height: 1.3;
}

.hero-box p strong {
    font-weight: bold;
}

.hero-box-button {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    min-width: 156px;
    padding: 14px 20px 14px 10px;
    background-color: #E2001A;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
	
	transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.hero-box-button:hover {
	transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.hero-box-button:active {
    transform: scale(0.97);
}

.hero-box-button-icon {
    display: inline-block;
    width: 30px;
    height: 20px;
    background-image: url("../images/icons3.png");
    background-repeat: no-repeat;
    background-position: -5px -8px;
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .topbar-inner {
        gap: 40px;
    }

    .topbar-link {
        font-size: 15px;
    }

	.hero-logo-bar {
		height: 55px;
	}
	
    .hero-logo {
        width: 520px;
		height: 164px;
    }

    .hero-logo-wrap {
        margin-bottom: 50px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-restwert {
		font-size: 28px;
        padding: 16px 24px;
    }

    .restwert-black,
    .restwert-white {
        font-size: 24px;
    }

    .hero-box h2 {
        font-size: 30px;
    }

    .hero-box h2 span {
        font-size: 24px;
    }

}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

    .hero {
        background-image:
        linear-gradient(rgba(64,64,64,0.80), rgba(64,64,64,0.80)),
        url("../pictures/mobil1.webp");

        background-position: center top;
    }

    .topbar {
        display: none;
    }

    .mobile-topbar {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;

		z-index: 1000;
		
        display: flex;
        align-items: center;
        justify-content: space-between;

        background-color: #009036;

        min-height: 50px;
    }

    .mobile-topbar-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        flex: 1 1 33.333%;

        color: #FFFFFF;
        font-size: 16px;
    }

    .hero-content-wrap {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .hero-logo-wrap {
        margin-bottom: 60px;
    }

    .hero-logo-bar {
		transform: translate(-50%, -45%);
		
        height: 52px;
    }

    .hero-logo {
        width: 500px;
		height: 161px;
		background-image: url("../images/logo.png");
    }
	
	.hero-headline {
		font-size: 28px;
		max-width: 320px;
	}
	
	.hero-headline span {
		display: none;
	}

    .hero-restwert {
        margin-top: 42px;
        padding: 16px 24px;
    }

    .restwert-black,
    .restwert-white {
        font-size: 22px;
    }
	
	.hero-box h2 {
        font-size: 30px;
    }

    .hero-box h2 span {
        font-size: 24px;
    }

    .hero-boxes-section {
        margin-top: 0px;
		padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-boxes-grid {
        display: block;
		
		top: 0px;
		margin-bottom: 0px;
    }

    .hero-box {
        margin-bottom: 30px;
    }

    .hero-box:last-child {
        margin-bottom: 0px;
    }

}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

    .hero {
        background-image:
        linear-gradient(rgba(64,64,64,0.80), rgba(64,64,64,0.80)),
        url("../pictures/mobil1-klein.webp");

        background-position: center top;
    }

    .mobile-topbar-item {
        font-size: 13px;
        gap: 8px;
    }

    .hero-content-wrap {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .hero-logo-wrap {
        margin-bottom: 40px;
    }

    .hero-logo-bar {
        height: 42px;
    }

    .hero-logo {
        width: 400px;
		height: 129px;
		background-image: url("../images/logo.png");
    }
	
	.hero-headline {
		font-size: 28px;
	}
	
	.hero-headline span {
		display: none;
	}

	.hero-restwert {
        margin-top: 42px;
        padding: 16px 24px;
    }

    .restwert-black,
    .restwert-white {
        font-size: 20px;
    }

    .hero-boxes-section {
        margin-top: 0px;
		padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-box {
        padding: 30px 20px;
    }

    .hero-box h2 {
        font-size: 28px;
    }

    .hero-box h2 span {
        font-size: 24px;
    }

    .hero-box p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 400px) {
	
	.hero-logo-bar {
        height: 32px;
    }

    .hero-logo {
        width: 300px;
		height: 97px;
		background-image: url("../images/logo.png");
    }
	
	.hero-restwert {
        margin-top: 42px;
        padding: 16px 20px;
    }
	
}


/* =======================
   IMPRESSUM / DATENSCHUTZ
======================= */

.impressum,
.datenschutz {
    padding: 80px 0px;
    background-color: #FFFFFF;
}

.rechtliches-intro,
.rechtliches-block {
    margin-bottom: 80px;
}

.rechtliches-block:last-child {
    margin-bottom: 0px;
}

.rechtliches-title {
    margin: 0px 0px 10px 0px;
    color: #000000;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.15;
    text-transform: uppercase;
}

.rechtliches-subtitle {
    margin-bottom: 45px;
    color: #009036;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.rechtliches-intro p,
.rechtliches-text p,
.rechtliches-card p,
.rechtliches-list li {
    color: #000000;
    font-size: 16px;
    line-height: 1.35;
}

.rechtliches-intro p,
.rechtliches-text p,
.rechtliches-card p {
    margin: 0px 0px 25px 0px;
}

.rechtliches-intro p:last-child,
.rechtliches-text p:last-child,
.rechtliches-card p:last-child {
    margin-bottom: 0px;
}

.rechtliches-headline {
    margin: 0px 0px 30px 0px;
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.rechtliches-miniheadline {
    margin: 34px 0px 18px 0px;
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.rechtliches-microheadline {
    margin: 28px 0px 16px 0px;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
}

.rechtliches-card-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.rechtliches-card {
    background-color: #DCDCDC;
    border-radius: 0px;
    padding: 30px;
}

.rechtliches-card strong {
    font-weight: bold;
}

.rechtliches-text a,
.rechtliches-card a {
    color: #000000;
    text-decoration: underline;
}

.rechtliches-text a:hover,
.rechtliches-card a:hover {
    text-decoration: none;
}

/* Listen */

.rechtliches-list {
    margin: 0px 0px 25px 0px;
    padding-left: 0px;
	
	list-style: none;
}

.rechtliches-list li {
    
	
	position: relative;
    margin: 0px 0px 14px 0px;
    padding-left: 26px;
}

.rechtliches-list li:last-child {
    margin-bottom: 0px;
}

.rechtliches-list li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0px;
    width: 15px;
    height: 15px;
    background: url("../images/pfeil2.png") no-repeat left top;
    background-size: 15px 15px;
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width:1024px) and (max-width:1199px) {

    .hero-logo-bar {
        height: 55px;
    }

    .hero-logo {
        width: 520px;
        height: 164px;
    }

    .hero-title {
        font-size: 34px;
    }

    .impressum,
    .datenschutz {
        padding: 60px 0px;
    }

    .rechtliches-title {
        font-size: 30px;
    }

    .rechtliches-subtitle {
        font-size: 24px;
    }

    .rechtliches-card-grid {
        gap: 24px;
    }
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width:1023px) {

    .hero {
        background-image:
        linear-gradient(rgba(64,64,64,0.80), rgba(64,64,64,0.80)),
        url("../pictures/mobil1.webp");
    }

    .topbar {
        display:none;
    }

    .mobile-topbar {
        position: fixed;
        top:0;
        left:0;
        width:100%;
        z-index:1000;
        display:flex;
        justify-content:space-between;
        background-color:#009036;
        min-height:50px;
    }

    .hero-content-wrap {
        padding-top:90px;
        padding-bottom:100px;
    }

    .hero-logo {
        width:500px;
        height:161px;
        background-image:url("../images/logo.png");
    }

    .hero-title {
        font-size:28px;
        max-width:320px;
    }

    .impressum,
    .datenschutz {
        padding:50px 0px;
    }

    .rechtliches-intro,
    .rechtliches-block {
        margin-bottom:60px;
    }

    .rechtliches-title {
        font-size:30px;
    }

    .rechtliches-subtitle {
        font-size:24px;
        margin-bottom:35px;
    }

    .rechtliches-card-grid {
        grid-template-columns:1fr;
        gap:24px;
    }

    .rechtliches-card {
        padding:28px;
    }
}

/* =======================
   Kleine Smartphones <=560
======================= */

@media only screen and (max-width:560px) {

    .hero {
        background-image:
        linear-gradient(rgba(64,64,64,0.80), rgba(64,64,64,0.80)),
        url("../pictures/mobil1-klein.webp");
    }

    .hero-logo-bar {
        height:42px;
    }

    .hero-logo {
        width:400px;
        height:129px;
    }

    .hero-title {
        font-size:28px;
    }

    .impressum,
    .datenschutz {
        padding:50px 0px;
    }

    .rechtliches-title {
        font-size:28px;
    }

    .rechtliches-subtitle {
        font-size:24px;
    }

    .rechtliches-intro p,
    .rechtliches-text p,
    .rechtliches-card p,
    .rechtliches-list li {
        font-size:15px;
    }

    .rechtliches-card {
        padding:24px 20px;
    }

    .rechtliches-headline {
        font-size:24px;
    }

    .rechtliches-miniheadline {
        font-size:20px;
    }
}



