/* ============================= */
/* DEVELOPMENT SCREEN & HERO */
/* ============================= */
.development-screen {
    position: relative;
    font-family: 'Playfair Display', serif;
}

/* Background image wrapper */
.development-bg-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/Background.png');
    background-size: cover;
}

/* Actual image */
.development-bg-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay on top of image */
.development-bg-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hero content */
.hero-bg {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 37, 37, 0.4);
    padding: 60px 20px;
    text-align: center;
    z-index: 2;
}

/* Hero text */
.development-screen h1 {
    font-size: 60px;
    z-index: 3;
    padding: 10px;
    color: white;
    line-height: 1.2;
}

.development-screen p {
    font-size: 18px;
    color: white;
    padding: 10px;
    border-radius: 20px;
    line-height: 1.5;
    z-index: 3;
}

/* Hero button */
.development-screen .button {
    font-size: 20px;
    color: black;
    background: linear-gradient(135deg, #a67c3f, #c49b63);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 20px;
    text-decoration: none;
    z-index: 3;
}

.development-screen .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 155, 99, 0.5);
}

/* Description wrapper */
.description-wrapper {
    display: flex;
    gap: 200px;
    justify-content: center;
    align-items: center;
    padding: 0 200px;
}

.left {
    flex: 1;
    text-align: end;
}

.right {
    flex: 1;
}

/* ============================= */
/* EXAMPLES SECTION */
/* ============================= */
.examples {
    position: relative;
    height: auto;
    padding: 25px;
}

.examples-header {
    text-align: center;
    padding: 40px 10px;
}

.examples-header h2 {
    display: inline-block;
    font-size: 32px;
    letter-spacing: 2px;
    padding-bottom: 15px;
    position: relative;
}

.examples-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 2px;
    background-color: #a67c3f;
    transform: translateX(-50%);
}

.examples-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 50px;
    gap: 50px;
}

.examples-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.examples-left {
    flex: 0 0 40%;
    padding: 50px;
}

.examples-right {
    flex: 0 0 60%;
    position: relative;
}

/* Image hover effect */
.image-hover img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease-in-out;
}

.img-hover {
    position: absolute;
    top: 0;
    opacity: 0;
}

.image-hover:hover .img-hover {
    opacity: 1;
}

/* Examples text */
.examples-item h3 {
    font-size: 28px;
    padding-bottom: 20px;
    color: #a67c3f;
}

.examples-item p {
    font-size: 16px;
    line-height: 1.5;
}

.examples-item:nth-child(2) {
    flex-direction: row-reverse;
}

/* ============================= */
/* RESPONSIVE MOBILE STYLES */
/* ============================= */
@media (max-width: 768px) {
    .examples-header {
        padding: 0;
        padding-top: 40px;
    }

    /* Hero section */
    .hero-bg {
        padding: 40px 20px;
    }

    .development-screen h1 {
        font-size: 34px;
    }

    .development-screen p {
        font-size: 16px;
        padding: 8px;
    }

    /* Description wrapper stack */
    .description-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .left,
    .right {
        text-align: center;
    }

    /* Examples section */
    .examples-content {
        flex-direction: column;
        margin: 20px;
        gap: 40px;
    }

    .examples-item {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }

    .examples-left,
    .examples-right {
        flex: 1 1 100%;
        padding: 10px 0;
        /* text-align: center; */
    }

    .examples-right {
        margin-top: 15px;
    }

    .examples-item h3 {
        font-size: 22px;
    }

    .examples-item p {
        /* font-size: 14px; */
    }

    .image-hover img {
        width: 100%;
        height: auto;
    }

    .examples-header h2 {
        font-size: 26px;
        /* padding-bottom: 0; */
    }
}

@media (max-width: 480px) {
    .development-screen h1 {
        font-size: 28px;
    }

    .development-screen p,
    .examples-item p {
        /* font-size: 13px; */
        line-height: 1.6;
    }

    .hero-bg {
        padding: 30px 15px;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .development-screen h1 {
        font-size: 32px;
    }

    .description-wrapper {
        flex-direction: row;
        gap: 20px;
        padding: 0 20px;
    }

    .description-wrapper p {
        font-size: 14px;
    }

    .hero-bg {
        padding: 30px 20px;
    }
}