/* static/css/style.css */

body {
    padding-top: 70px; /* 为固定的导航栏留出空间 */
    scroll-padding-top: 70px; /* 为平滑滚动留出偏移 */
}

.logo-img {
    height: 30px;
    margin-right: 10px;
}

.hero-section {
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    padding: 100px 0;
}

.tech-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    transition: all .3s ease-in-out;
}
.tech-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
.tech-card .card-header {
    background-color: rgba(13, 110, 253, 0.03);
}

.highlight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    border-left: 4px solid #0d6efd; /* Added a left accent border */
    display: flex;
    flex-direction: column;
}
.highlight-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.highlight-card .card-body p {
    flex-grow: 1; /* Makes sure the text takes up available space */
}
.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.highlight-card-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem; /* Added margin for spacing */
}

.resource-list .list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
}
.resource-list .bi {
    margin-right: 8px;
    color: #6c757d;
}