@import "../root.css";

/* Recruitment Banner Styles */
.recruitment-banner {
    width: 100%;
    margin-top: 150px;
    overflow: hidden;
}

.banner-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-left {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.banner-right {
    flex: 1;
    background-color: #8B0000;
    /* background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>'); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.banner-content {
    color: white;
    text-align: center;
    padding: 10px;
}

.banner-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;

}

.banner-text {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recruitment-banner {
        margin-top: 90px;
    }

    .banner-container {
        flex-direction: column;
        height: auto;
    }

    .banner-left {
        display: none;
    }

    .banner-right {
        height: 200px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-text {
        font-size: 0.9rem;
    }
}

main {
    width: 100%;

    .service-area {
        margin-top: 80px;

        .service-text-area {
            width: 60%;
            margin: 0 auto;
            color: #666666;
            line-height: 2;
            font-size: 18px;
            font-weight: 500;

        }
    }

    .service-detail {
        width: 70%;
        margin: 0 auto;
        margin-top: 80px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;

        .service-detail-area {
            width: 50%;
            margin: 0 auto;
            margin-top: 80px;

            .service-detail-img {
                width: 100%;
                margin: 0 auto;

                img {
                    width: 90%;
                    margin: 0 auto;
                    display: block;
                    object-fit: cover;
                    height: 300px;

                }
            }

            .service-detail-title-area {
                text-align: center;
                font-weight: bold;

                .service-detail-title {
                    font-size: var(--font-small);

                    h2 {
                        margin-top: 40px;
                    }

                    .solo-title {
                        margin-top: 50px;
                    }
                }

                .service-detail-sub-title {
                    font-size: 16px;
                    margin-top: 10px;

                    p {
                        margin: 0;
                    }
                }
            }

            .service-detail-text-area {
                margin-top: 20px;
                text-align: center;

                .service-detail-text {
                    width: 80%;
                    margin: 0 auto;
                    font-size: var(--font-xs);
                    line-height: 2;
                    text-align: left;
                    color: #666666;
                    font-weight: 500;

                }
            }
        }
    }
}