:root {
    --header-height: 80px;
    --mobile-header-height: 60px;
}

/* 通用样式优化 */
#hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/6044798/pexels-photo-6044798.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding: 30px;
    position: absolute;
    bottom: 30px;
    right: 50px;
}

.hero-link {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-link:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-link:hover i {
    transform: translateX(5px);
} 