.board a {
    text-decoration: none;
    color: black;
}

.board a:link {
    text-decoration: none;
    color: black;
}

.board a:visited {
    text-decoration: none;
    color: black;
}

.board a:active {
    text-decoration: none;
    color: black;
}

.board a:hover {
    text-decoration: none;
    color: black;
}

.div-image img {
    width: 100%;
    height: 200px;
    vertical-align: middle;
    filter: brightness(0.5)
}

.div-text {
    font-size: 27px;
    color: white;
    font-weight: 500;
    padding: 5px 10px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 웹 */
@media (min-width: 768px) {
    .background-size {
        height: 750px !important;
    }
}

/* 패드 */
@media (max-width: 1500px) {
    .background-size {
        height: 670px !important;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .background-size {
        height: 250px !important;
    }

    .mobile_background_title {
        color: white;
        text-align: left;
        font-weight: 900;
        font-size: 14px !important;
        margin-bottom: 0;
    }

    .mobile_background_title span {
        font-size: 10px !important;
    }

    .mobile_background_content {
        color: white;
        text-align: left;
    }

    .mobile_background_content span {
        font-size: 15px !important;
    }

    .carousel-caption {
        padding-top: 0 !important;
    }
}

.menu-card-section {
    padding: 5em 0 !important;
    background-color: #f8f9fa;
}

.menu-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: transparent;
    display: block;
    text-decoration: none !important;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.img-wrapper {
    width: 125px;
    height: 125px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.menu-item:hover .img-wrapper {
    box-shadow: 0 15px 30px rgba(106, 31, 50, 0.2); /* 기업 브랜드 컬러 활용 */
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin-top: 15px;
    letter-spacing: -0.5px;
}

.menu-item:hover .menu-title {
    color: #6a1f32; /* 강조 색상 */
}