* {
    box-sizing: border-box;
}

/* ================= PAGE BACKGROUND ================= */
body {
    margin: 0;
    font-family: "Segoe UI", system-ui, sans-serif;
    color: #3b2a17;
    line-height: 1.8;

    background-image: url("/assets/c1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Soft overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(250, 247, 242, 0.88);
    z-index: -1;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

.hero .tagline {
    font-size: 1.4rem;
    margin-top: 15px;
}

/* ================= SECTIONS ================= */
.section {
    max-width: 900px;
    margin: 30px auto;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

/* ================= SPLIT LAYOUT ================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.split.reverse {
    direction: rtl;
}

.split.reverse > * {
    direction: ltr;
}

.split-image img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ================= TEXT ================= */
.emphasis {
    font-weight: 600;
    margin-top: 18px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .split,
    .split.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section h2 {
        font-size: 22px;
    }
}
