/* styles.css - Tigerclub 专属样式 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fbfbfc;
    color: #1e1e2a;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 导航 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    flex-wrap: wrap;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    background: linear-gradient(130deg, #2b2b3a, #5b4b5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo span {
    background: none;
    -webkit-text-fill-color: #b59f7b;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    color: #3e3e4e;
}
.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #b59f7b;
}

/* HERO 纯大图 */
.hero-banner {
    width: 100%;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1887&q=80');
    background-size: cover;
    background-position: center 30%;
    margin: 0 0 3rem 0;
    border-radius: 0 0 3rem 3rem;
    box-shadow: 0 20px 30px -8px rgba(0,0,0,0.2);
}

/* 通用 */
section {
    margin: 5rem 0;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70%;
    height: 4px;
    background: #b59f7b;
    border-radius: 4px;
}

/* 国家分类 —— 竖图卡片 */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.country-card {
    background: white;
    border-radius: 1.8rem;
    overflow: hidden;
    box-shadow: 0 15px 25px -8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
}
.country-card:hover {
    transform: translateY(-8px);
}
.country-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.country-info {
    padding: 1.2rem 0.8rem 1.5rem;
}
.country-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.country-desc {
    color: #6f6f80;
    font-size: 0.9rem;
}

/* 伴游资讯 (含缩略图) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.news-card {
    background: white;
    border-radius: 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    border: 1px solid #f0eae4;
    overflow: hidden;
    transition: 0.2s;
}
.news-card:hover {
    border-color: #dacfc4;
}
.news-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.news-body {
    padding: 1.5rem 1.2rem 1.8rem;
}
.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.news-date {
    color: #9898a8;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.news-summary {
    color: #4a4a5a;
    font-size: 0.95rem;
}

/* 招聘信息 —— 统一板块 */
.jobs-panel {
    background: linear-gradient(145deg, #f5f2f7, #ffffff);
    border-radius: 2.5rem;
    padding: 2.5rem 2.8rem;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.05);
    border: 1px solid #ede6e0;
}
.jobs-panel h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.jobs-panel .lead {
    font-size: 1.1rem;
    color: #4b4b5a;
    margin-bottom: 2rem;
    max-width: 700px;
}
.job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    margin-top: 1.5rem;
}
.job-item {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.job-icon {
    width: 46px;
    height: 46px;
    background: #1e1e2a;
    color: #b59f7b;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.job-info strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.2rem;
}
.job-info span {
    color: #6a6a7c;
    font-size: 0.9rem;
}
.job-tags {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    border-top: 1px solid #ddd6cf;
    padding-top: 2rem;
}
.job-tag {
    background: white;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    border: 1px solid #e5dbd2;
}

/* 真实评价 —— 竖图左侧 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: white;
    border-radius: 2rem;
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 1.5rem 1.8rem 1.5rem;
    box-shadow: 0 15px 25px rgba(0,0,0,0.02);
    border: 1px solid #f0eae4;
    align-items: flex-start;
}
.testimonial-img {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 14px rgba(0,0,0,0.1);
}
.testimonial-content {
    flex: 1;
}
.testimonial-stars {
    color: #f5b342;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}
.testimonial-text {
    font-style: italic;
    color: #2f2f3a;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.testimonial-author {
    font-weight: 600;
}
.testimonial-title {
    font-size: 0.8rem;
    color: #8d8d9c;
}

footer {
    background: #1b1b26;
    color: #d6d6de;
    padding: 3rem 0;
    border-radius: 4rem 4rem 0 0;
    margin-top: 6rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-banner {
        height: 300px;
    }
    .testimonial-card {
        flex-direction: column;
    }
    .testimonial-img {
        width: 100%;
        height: 200px;
    }
}