/**
 * Trends Page Styles
 */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/trends/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.event-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-detail .icon {
    font-size: 1.5rem;
}

/* Trends Overview */
.trends-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.trend-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-5px);
}

.trend-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trend-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.trend-card p {
    color: #666;
    line-height: 1.6;
}

/* Detailed Trends */
.detailed-trends {
    padding: 80px 0;
}

.trend-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.trend-detail.reverse {
    direction: rtl;
}

.trend-detail.reverse .trend-content {
    direction: ltr;
}

.trend-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.trend-highlights {
    display: grid;
    gap: 20px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #444;
}

.highlight-item p {
    color: #666;
    line-height: 1.6;
}

.trend-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Market Statistics */
.market-stats {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 15px;
}

.stat-card p {
    color: #666;
}

/* Future Outlook */
.future-outlook {
    padding: 80px 0;
}

.lead-text {
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #444;
    line-height: 1.6;
}

.outlook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.outlook-item h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.outlook-item ul {
    list-style: none;
    padding: 0;
}

.outlook-item li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.outlook-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/trends/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.subscribe-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
    padding: 0 20px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-primary {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .trend-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trend-detail.reverse {
        direction: ltr;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .btn-primary {
        width: 100%;
    }
} 