/*
  File: websites/10-event-planning/css/style.css
  Agent: @uidesigner
  Website: 盛会活动策划
*/
@import 'variables.css';
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--color-white); color: var(--text-primary); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header { background: var(--color-white); box-shadow: 0 2px 8px rgba(0,0,0,0.08); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 700; }
.nav { display: flex; gap: 32px; }
.nav-link { font-weight: 500; color: #666; }
.nav-link:hover, .nav-link.active { color: var(--color-primary); }

.hero { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); padding: 120px 0; color: white; text-align: center; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; }
.hero-subtitle { font-size: 1.25rem; opacity: 0.9; margin-bottom: 40px; }

.btn { display: inline-block; padding: 14px 36px; border-radius: 50px; font-weight: 600; transition: all 0.3s; margin: 8px; }
.btn-primary { background: var(--color-accent); color: var(--text-primary); }
.btn-primary:hover { background: #ffc400; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--color-primary); }

.section { padding: 80px 0; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; text-align: center; margin-bottom: 60px; }

.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.service-card { padding: 32px 16px; text-align: center; background: var(--color-bg); border-radius: 12px; transition: all 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(155,89,182,0.2); }
.service-icon { font-size: 3rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: #666; }

.process-section { background: var(--color-bg); }
.timeline { display: flex; justify-content: space-between; position: relative; }
.timeline::before { content: ''; position: absolute; top: 30px; left: 0; right: 0; height: 2px; background: var(--color-primary); }
.timeline-step { text-align: center; position: relative; flex: 1; }
.step-number { width: 60px; height: 60px; background: var(--color-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 16px; position: relative; z-index: 1; }
.timeline-step h4 { font-weight: 600; margin-bottom: 8px; }
.timeline-step p { font-size: 0.85rem; color: #666; padding: 0 16px; }

.gallery-section { background: var(--text-primary); color: white; }
.gallery-section .section-title { color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.gallery-item { aspect-ratio: 1; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); border-radius: 8px; }

.footer { background: var(--color-primary); color: white; padding: 40px 0; text-align: center; }
.footer-bottom { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom a { color: rgba(255,255,255,0.9); font-size: 0.85rem; transition: opacity 0.3s; }
.footer-bottom a:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 768px) {
  .nav { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { flex-direction: column; gap: 32px; }
  .timeline::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

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