/* Spring Festival page specific styles */
.spring-content {
    padding-top: 60px;
}

/* Hero banner section */
.hero-banner {
    height: 500px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text p {
    font-size: 1.8rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Spring Festival introduction */
.spring-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text p {
    color: #666;
    line-height: 1.6;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Customs section */
.customs-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.customs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.custom-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.custom-item:hover {
    transform: translateY(-5px);
}

.custom-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.custom-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.custom-item p {
    color: #666;
    line-height: 1.6;
}

/* Dragon dance section */
.dragon-dance {
    padding: 60px 0;
    background-color: #fff;
}

.dragon-content {
    max-width: 800px;
    margin: 0 auto;
}

.dragon-text {
    text-align: center;
    margin-bottom: 40px;
}

.dragon-text p {
    color: #666;
    line-height: 1.6;
}

.dragon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature li {
    padding: 8px 0;
    color: #666;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.feature li:last-child {
    border-bottom: none;
}

/* Modern celebration section */
.modern-celebration {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.celebration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.celebration-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.celebration-item:hover {
    transform: translateY(-5px);
}

.celebration-image {
    height: 250px;
    overflow: hidden;
}

.celebration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.celebration-item:hover .celebration-image img {
    transform: scale(1.1);
}

.celebration-item h3 {
    color: var(--primary-color);
    margin: 20px;
    text-align: center;
}

.celebration-item p {
    color: #666;
    margin: 0 20px 20px;
    text-align: center;
    line-height: 1.6;
} 