/* Reset */
body, h1, h2, h3, p, img, div, section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #f7f7f7;
    line-height: 1.5;
}


.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(60%);
}

.hero {
    position: relative;
   height: 700px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-text {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 650px;
    width: 90%;
    text-align: center;
}




.hero-text h1 {
    font-size: 3rem;      /* Bigger, bold, commercial */
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.3rem;    /* Larger subtitle */
    margin-bottom: 20px;
}

.coming-soon {
    display: inline-block;
    margin: 0 0 22px;
    padding: 10px 18px;
    border: 3px solid #ff0000;
    color: #ff0000;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #fff7b3;
    letter-spacing: 0.03em;
}

.hero-text .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 14px 26px;
    background: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #005fa3;
}

/* SERVICES */
.services {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    background: white;
}

.service {
    text-align: center;
    max-width: 160px;
}

.service img {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
}

.service img[src="images/carpet.png"] {
    width: 168px;
    height: 90px;
    object-fit: fill;
    clip-path: inset(0 20% 0 20%);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}
