/* Baguio Tourist Places Styles */

/* Hero Baguio */
.hero-baguio {
    min-height: 80vh;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 50%, #6b8e5a 100%);
    position: relative;
}

.hero-baguio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pine" patternUnits="userSpaceOnUse" width="20" height="20"><polygon points="10,2 6,18 14,18" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pine)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Attractions Section */
.attractions-section {
    padding: 80px 0;
    background: #f8fafc;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.attraction-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.attraction-card.featured {
    grid-column: span 2;
}

.attraction-image {
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
}

.attraction-card.featured .attraction-image {
    height: 250px;
}

.image-placeholder {
    color: white;
    font-size: 48px;
}

.attraction-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.attraction-content {
    padding: 25px;
}

.attraction-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.attraction-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    color: #475569;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.feature-tag i {
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
}

.cta-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .attraction-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .attraction-card {
        margin: 0 10px;
    }
    
    .attraction-content {
        padding: 20px;
    }
    
    .cta-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .attraction-features {
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
}
