/* Event Trends Page Specific Styles */

.trends-main {
    background: white;
}

/* Hero Section */
.trends-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.trends-hero .year-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.trends-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.trends-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
}

.trending-preview {
    margin-top: 40px;
}

.trend-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Major Trends Section */
.major-trends {
    padding: 80px 0;
    background: #f8f9fa;
}

.major-trends h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.trend-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.trend-feature.reverse {
    grid-template-columns: 1fr 1fr;
}

.trend-feature.reverse .trend-visual {
    order: -1;
}

.trend-content {
    padding: 40px;
    position: relative;
}

.trend-number {
    position: absolute;
    top: -10px;
    left: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.trend-text {
    margin-top: 30px;
}

.trend-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.trend-subtitle {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
}

.trend-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.trend-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
}

.trend-details h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.trend-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trend-details li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.trend-details li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.trend-visual {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.trend-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trend-feature:hover .trend-visual img {
    transform: scale(1.05);
}

/* Emerging Trends Section */
.emerging-trends {
    padding: 80px 0;
    background: white;
}

.emerging-trends h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.emerging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.emerging-item,
.emerging-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.emerging-item:hover,
.emerging-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #667eea;
    background: white;
}

.emerging-item h3,
.emerging-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.emerging-item p,
.emerging-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.emerging-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.trend-status {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    display: inline-block;
}

/* Massachusetts Scene Analysis */
.ma-analysis,
.trend-analysis {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.ma-analysis h2,
.trend-analysis h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.analysis-text {
    padding-right: 20px;
}

.analysis-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.analysis-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analysis-text li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.analysis-text li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.professional-insight {
    background: rgba(102, 126, 234, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid #667eea;
}

.professional-insight h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.professional-insight p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.analysis-stats {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.analysis-stats h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

/* Implementation Section */
.trend-implementation {
    padding: 80px 0;
    background: white;
}

.trend-implementation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.implementation-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.guide-section h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.guide-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.budget-tips {
    display: grid;
    gap: 25px;
}

.tip-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tip-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.vendor-questions {
    margin-top: 30px;
}

.vendor-questions h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.vendor-questions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vendor-questions li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.vendor-questions li::before {
    content: '?';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    background: rgba(102, 126, 234, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Forecast Section */
.trend-forecast {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.trend-forecast h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.forecast-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.forecast-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.forecast-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.forecast-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trends-hero h1 {
        font-size: 2.5rem;
    }
    
    .trends-hero .lead {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .trend-highlights {
        gap: 10px;
    }
    
    .highlight-item {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .trend-feature {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 40px;
    }
    
    .trend-feature.reverse .trend-visual {
        order: 0;
    }
    
    .trend-visual {
        height: 250px;
    }
    
    .trend-content {
        padding: 30px 20px;
    }
    
    .trend-number {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .trend-text h3 {
        font-size: 1.5rem;
    }
    
    .emerging-grid,
    .implementation-grid,
    .forecast-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .trends-hero {
        padding: 60px 0;
    }
    
    .trends-hero h1 {
        font-size: 2rem;
    }
    
    .major-trends h2,
    .emerging-trends h2,
    .ma-analysis h2,
    .trend-analysis h2,
    .implementation h2,
    .trend-forecast h2 {
        font-size: 2rem;
    }
    
    .trend-content {
        padding: 20px 15px;
    }
    
    .trend-details {
        padding: 20px;
    }
}
