/* GENERAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

.section {
    padding: 70px 10%;
}

.alt-bg {
    background: #f4f4f4;
}

.center-text {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* NAVIGATION */
header {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('images/Store.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
}

.service-area {
    font-style: italic;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn-primary {
    background: #f39c12;
    color: white;
}

.btn-secondary {
    background: #333;
    color: white;
}

/* LAYOUTS */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.quote-box {
    background: #f39c12;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.placeholder-text {
    color: #888;
    font-style: italic;
}

/* IMAGE PLACEHOLDERS */
.image-placeholder {
    background: #ddd;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder.small {
    height: 160px;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

    .two-column,
    .contact-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* HERO IMAGE */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    filter: brightness(45%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* IMAGE PLACEHOLDER IMAGES */
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}