/*
Theme Name: EcoMotor Vojt Pro
Version: 3.5
Description: Service images doubled in size (2x)
*/

body {
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#0b0d10;
    color:#fff;
}

.hero {
    min-height:100vh;
    background-size:cover;
    background-position:center;
    position:relative;
    padding:180px 40px 100px;
}
.hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}
.hero-inner {
    position:relative;
    max-width:1200px;
    margin:auto;
}

.section {
    padding:100px 40px;
}

.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:48px;
    margin-top:50px;
    text-align:center;
}

.service-item img {
    max-width:144px; /* 2x from 72px */
    margin-bottom:20px;
}

.glass {
    background:rgba(20,20,20,.6);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:36px 30px;
    box-shadow:0 20px 50px rgba(0,0,0,.6);
}


/* CONTACT EXTENSIONS */
.topbar {
    position:absolute;
    top:0; left:0; right:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    z-index:10;
}
.footer-contact {
    background:#060708;
    padding:60px 40px;
}
.footer-contact .inner {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
