/* ---------- BASE ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #000;
    color: #cfcfcf;
    font-family: "Times New Roman", serif;
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    height: 60vh;
    background-image: url("hero-devartoi.png");
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #8b0000;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-size: 4rem;
    letter-spacing: 0.4rem;
    color: #b00000;
}

.hero p {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 0.2rem;
}

/* ---------- CONTENT ---------- */

.content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;

    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* ---------- SIDE IMAGES ---------- */

.side-image {
    flex: 1;
    border: 2px solid #8b0000;
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- TEXT BOX ---------- */

.text-box {
    flex: 2;
    border: 2px solid #8b0000;
    padding: 2rem;
    background-color: #050505;
}

.text-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .content {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}
