/* ==============================================
   全站全局公共样式 - 燕藜坊(广东)食品有限公司官网
   统一头部、底部、基础布局、通用组件样式
   所有页面通用，无需重复编写
============================================== */

/* 全局基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局基础字体与布局 */
body {
    font-family: "微软雅黑", Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    padding-top: 70px;
}

/* 公共导航栏样式 */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #28a745 !important;
}

.nav-link {
    color: #333 !important;
    font-size: 16px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #28a745 !important;
}

/* 公共页脚样式 */
footer {
    background: #222;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 30px;
}

footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
}

/* 通用区块样式 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #28a745;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

/* Banner通用样式 */
.banner {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), #28a745 center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* 移动端自适应统一样式 */
@media (max-width: 768px) {
    .banner {
        height: 350px;
        text-align: center;
    }

    .banner h1 {
        font-size: 32px;
    }

    .section {
        padding: 50px 0;
    }

    .navbar-brand {
        font-size: 20px;
    }
}