@font-face {
  /* 给字体起一个自定义名称，后续使用时会用到 */
  font-family: "gvsFont";
  /* 关键：配置字体文件路径，../ 表示上级目录（这里fonts和style.css同级，所以直接写 fonts/ 即可） */
  src: url("fonts/Copperplate.ttf") format("truetype");
  /* 可选：设置字体属性，增强兼容性 */
  font-weight: normal;
  font-style: normal;
  /* 可选：允许跨域使用（如果部署到服务器有跨域问题时添加） */
  font-display: swap;
}

/* 轮播图容器样式 */
.exhibition-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* 保持原图片容器的尺寸（可根据实际需求调整） */
    height: 470px; 
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 轮播图列表 */
.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* 单张轮播图 */
.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

/* 轮播图图片样式 */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例，覆盖容器 */
}

/* 保留原覆盖层样式 */
.exhibition-overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px 20px 40px 20px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .exhibition-overlay {
    transform: translateY(0); /* 如需悬浮上移效果可改为 translateY(-10px) */
}

.exhibition-overlay p {
    font-size: 1.2rem;
}

.exhibition-overlay span {
    font-size: 1rem;
    opacity: 0.9;
}

/* 左右切换按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* 轮播指示器（小圆点） */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #fff; /* 激活状态的圆点颜色 */
}

/* ===== CSS Variables ===== */
:root {
    --gold: #c9a86c;
    --gold-dark: #8b7355;
    --gold-light: #d4b87a;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --text-gray: #a0a0a0;
    --white: #ffffff;
    
    --font-gvs: 'gvsFont', Georgia, serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 80px;
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 120px;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 80px;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-gvs);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1;
}

.logo-v {
    color: var(--gold);
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.lang {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 80px;
    }
}

.hero-text {
    display: none;
    max-width: 600px;
}

.hero-text.active {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-gvs);
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 100px;
    }
}

.title-g, .title-s {
    color: var(--white);
}

.title-v {
    color: var(--gold);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 6px;
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--gold);
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 22px;
    }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 12px;
    transition: var(--transition);
}

.hero-arrow:hover {
    color: var(--gold);
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

@media (min-width: 768px) {
    .hero-prev {
        left: 32px;
    }
    .hero-next {
        right: 32px;
    }
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .scroll-indicator {
        display: flex;
    }
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 8px;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ===== Section Common ===== */
.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 120px 0;
    }
}

.section-header {
    margin-bottom: 48px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-family: var(--font-gvs);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }
}

.section-slash {
    color: var(--gold);
    font-size: 24px;
    margin-left: 12px;
}

.section-desc {
    color: var(--text-gray);
    max-width: 600px;
    margin-top: 16px;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Section ===== */
.about {
    background: var(--black);
}

.about-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-text .lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-list {
    margin-top: 24px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 16px;
}

.stat-number, .stat-suffix {
    display: inline;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

@media (min-width: 768px) {
    .stat-number, .stat-suffix {
        font-size: 40px;
    }
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.stat-highlight {
    grid-column: 1 / -1;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 8px;
    padding: 24px;
}

.highlight-text {
    font-size: 18px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.highlight-sub {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== Services Section ===== */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.service-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.service-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
}

.service-content {
    padding: 24px;
}

.service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
    font-size: 11px;
    padding: 6px 12px;
    background: rgba(201, 168, 108, 0.1);
    color: var(--gold);
    border-radius: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gold);
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===== Team Section ===== */
.team {
    background: #0a0a0a;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.team-stat svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.stat-value {
    font-weight: 600;
    color: var(--white);
}

.stat-name {
    font-size: 14px;
    color: var(--text-gray);
}

.team-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.team-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.team-card:hover .team-name {
    color: var(--gold);
}

.team-en {
    font-size: 13px;
    color: var(--gold);
}

.team-role {
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(201, 168, 108, 0.1);
    color: var(--gold);
    border-radius: 20px;
}

.team-edu {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.team-creds {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.team-creds span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cred-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.team-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ===== Recognition Section ===== */
.recognition {
    background: var(--black);
}

.recognition-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .recognition-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.recognition-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rec-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
}

.rec-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rec-header svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.rec-header h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.honor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.honor-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.honor-year {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.honor-title {
    color: rgba(255, 255, 255, 0.8);
}

.edu-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.7;
}

.edu-content ul {
    margin-bottom: 20px;
}

.edu-content li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.edu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
}

.edu-link:hover {
    gap: 12px;
}

.exhibition-image {
    position: relative;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.exhibition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.exhibition-overlay p {
    color: var(--white);
    font-weight: 500;
}

.exhibition-overlay span {
    font-size: 13px;
    color: var(--gold);
}

.exhibition-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0;
}

.exhibition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.exhibition-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Contact Section ===== */
.contact {
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.contact-header {
    margin-bottom: 16px;
}

.contact-header h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-en {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
}

.contact-badge {
    display: inline-block;
    font-size: 12px;
    padding: 6px 14px;
    background: rgba(201, 168, 108, 0.1);
    color: var(--gold);
    border-radius: 20px;
    margin-bottom: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item div p,
.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.contact-hours svg {
    width: 16px;
    height: 16px;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    gap: 40px;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 300px;
}

.footer-slogan {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
}

.footer-slogan svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Mobile Menu ===== */
.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu.mobile-open .nav-link {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Scroll Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}