﻿/* ====== GLOBAL ====== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

    .container.narrow {
        max-width: 900px;
    }

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 16px;
}

p {
    line-height: 1.7;
    opacity: 0.9;
}

/* ====== HERO ====== */
.hero {
    height: 420px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-about {
    background-image: url("/general/kitchen-countertop.jpg");
}

.hero-contact {
    background-image: url("/general/Out Factory.png");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero-overlay h1 {
        font-size: 42px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

/* ====== SECTIONS ====== */
.content-section {
    background: #0f0f0f;
}

    .content-section.dark {
        background: #050505;
    }

/* ====== SPLIT SECTION ====== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: 60px;
}

/* ====== FEATURES ====== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: #111;
    padding: 24px;
    border-radius: 6px;
}

/* ====== CHECK LIST ====== */
.check-list {
    list-style: none;
    padding: 0;
}

    .check-list li {
        padding-left: 24px;
        margin-bottom: 12px;
        position: relative;
    }

        .check-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #caa65c;
        }

/* ====== CONTACT ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
}

.btn-primary {
    background: #caa65c;
    border: none;
    color: #000;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 4px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .split-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 320px;
    }
}
