/* 
 * Teen Culture Page Styles
 * FitTeen Australia Theme
 */

/* Culture Sections */
.culture-sections {
    margin: 2rem 0;
}

.culture-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.culture-section:hover {
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.section-header h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Food Culture Grid */
.food-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culture-food-card {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.culture-food-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.culture-food-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.culture-food-card:hover::before {
    left: 100%;
}

.culture-food-card.expanded {
    background: rgba(76, 175, 80, 0.05);
    border-color: var(--primary-green);
}

.food-image {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.culture-food-card h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.culture-food-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.culture-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.health-score {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.popularity,
.origin {
    background: rgba(255, 152, 0, 0.1);
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.detailed-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.nutrition-breakdown h5 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.learn-more-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #45a049, #66bb69);
    transform: translateY(-1px);
}

/* Trends Container */
.trends-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trend-item {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.trend-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.trend-rank {
    background: linear-gradient(135deg, var(--accent-orange), #ffb74d);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.trend-content {
    flex: 1;
}

.trend-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trend-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.trend-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trend-growth {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.teen-rating {
    background: rgba(255, 152, 0, 0.1);
    color: var(--accent-orange);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Social Scenarios */
.social-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.scenario-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.3);
}

.scenario-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.scenario-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.scenario-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.scenario-tips p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.scenario-tips ul {
    list-style: none;
    padding: 0;
}

.scenario-tips li {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 2rem;
}

.scenario-tips li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}


/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.fact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.fact-card:hover::before {
    left: 100%;
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    filter: drop-shadow(0 4px 8px rgba(255, 152, 0, 0.2));
}

.fact-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fact-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .culture-section {
        padding: 1.5rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .food-culture-grid,
    .social-scenarios,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .trend-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .trend-content {
        text-align: center;
    }
    
    .trend-stats {
        justify-content: center;
    }
    
    .scenario-card {
        padding: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.culture-section {
    animation: fadeInUp 0.6s ease-out;
}

.culture-section:nth-child(2) { animation-delay: 0.1s; }
.culture-section:nth-child(3) { animation-delay: 0.2s; }
.culture-section:nth-child(4) { animation-delay: 0.3s; }
.culture-section:nth-child(5) { animation-delay: 0.4s; }
.culture-section:nth-child(6) { animation-delay: 0.5s; }